/*
Theme Name: Muses
Theme URI: https://muses.co.za
Author: Cindy
Description: Creative agency landing page - We Build Cool Things
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muses
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lexend", sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow-x: hidden;
}

/* Left Side - Black */
.left-side {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

/* Right Side - Hot Pink */
.right-side {
    background: #E6007E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
}

/* Animated circles */
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #E6007E;
    bottom: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #4A2362;
    top: 26px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: rgba(198, 255, 0, 0.8);
    top: 10%;
    right: -80px;
    animation-delay: 2s;
}

.circle-4 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    bottom: 15%;
    right: 10%;
    animation-delay: 7s;
}

a.button { 
    padding: 1rem 1.5rem; 
    border-radius: 6px; 
    width: fit-content; 
    text-decoration: none; 
    color: #fff; 
    cursor: pointer; 
    z-index: 999;  
    animation: fadeIn 1s ease-out 0.9s both; 
    font-weight: bold; 
    background: rgba(0, 0, 0, 0.3); 
    position: relative; 
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

a.button:hover { 
    background: rgba(74, 35, 98, 0.8); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 35, 98, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out;
}

.tagline {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 300;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

.tagline strong {
    font-weight: 800;
    color: #E6007E;
}

.why {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-align: left;
    line-height: 1.6;
    max-width: 550px;
    animation: fadeIn 1s ease-out 0.6s both;
    opacity: 0.95;
    font-weight: 300;
}

/* Improved Right Side Styling */
.content-box {
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out 0.9s both;
    position: relative;
    backdrop-filter: blur(10px);
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 60px;
    height: 4px;
    background: #C6FF00;
    border-radius: 2px;
}

.content-box h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: left;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.content-box p { 
    line-height: 1.7; 
    margin-bottom: 1.2rem;
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    opacity: 0.95;
    font-weight: 400;
}

.content-box p:last-child { 
    margin-bottom: 0; 
}

.build-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.build-item {
    background: rgba(198, 255, 0, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 700;
    border: 2px solid rgba(198, 255, 0, 0.4);
    transition: all 0.3s ease;
}

.build-item:hover {
    background: rgba(198, 255, 0, 0.4);
    transform: scale(1.05);
}

.cool-callout {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 800;
    margin-top: 1.5rem;
    font-style: italic;
    color: #C6FF00;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accent color highlight */
.highlight {
    color: #C6FF00;
}

/* Purple highlight */
.purple {
    color: #4A2362;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .left-side, .right-side {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 400px;
        margin-bottom: 1.5rem;
    }

    .content-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .content-box {
        padding: 1.8rem;
    }

    .content-box::before {
        left: 1.8rem;
    }

    .build-list {
        gap: 0.6rem;
    }

    .build-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
	.right-side { padding-bottom:5rem;}
}
