:root {
    --bg-color: #ecebd9;
    --bg-alt: #f5f4e6;
    --bg-dark: #121212;
    --text-color: #333333;
    --text-light: #f5f5f5;
    --accent-primary: #00259b;
    --accent-secondary: #0044cc;
    --accent-glow: rgba(0, 37, 155, 0.4);
    --card-bg: #ffffff;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-padding-top: 80px;
}

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

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at top right, rgba(0, 37, 155, 0.05), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(0, 37, 155, 0.05), transparent 40%);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(236, 235, 217, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-primary);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    z-index: 1002;
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO (Shows) - Split Layout */
.hero {
    min-height: 100vh;
    display: flex;
    padding-top: 80px; /* navbar space */
}

.split-layout {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content-half,
.hero-image-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.hero-poster-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.hero-poster-img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

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

.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image-half h2 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-size: 4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.spotify-frame {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.spotify-frame:hover {
    transform: translateY(-5px);
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px var(--accent-glow);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px var(--accent-glow);
}

/* SECTIONS COMMONS */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 5vw;
    position: relative;
}

.section-merch {
    background-color: var(--bg-alt);
}

.section-music {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

section h2 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    align-self: center;
    position: relative;
}

.section-music h2 {
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* MUSIC */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.album {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.album:hover {
    transform: translateY(-10px) scale(1.03);
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.5));
}

/* MERCH */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.merch-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 37, 155, 0.15);
    border-color: rgba(0, 37, 155, 0.1);
}

.merch-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.4s ease;
}

.merch-item:hover img {
    transform: scale(1.05);
}

.merch-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

/* MODAL */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

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

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--accent-primary);
    transform: rotate(90deg);
}

/* CONTACT FORM */
.contact-modal {
    text-align: center;
}

.contact-modal h2 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(0, 37, 155, 0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 37, 155, 0.1);
    background: #fff;
}

/* FOOTER */
.footer {
    padding: 40px;
    background-color: var(--bg-dark);
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 50%;
}

.social-links a:hover {
    color: #fff;
    background: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 37, 155, 0.4);
}

/* HAMBURGER */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    position: relative;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: var(--accent-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }
    
    .hero-image-half,
    .hero-content-half {
        padding: 20px;
    }
    
    .hero-image-half h2 {
        font-size: 3rem;
    }

    section {
        padding: 80px 20px;
    }

    section h2 {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }
    
    .navbar { 
        padding: 15px 20px; 
        flex-direction: row; 
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(236, 235, 217, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: top 0.4s ease;
        z-index: 1000;
        gap: 40px;
    }

    .nav-links.active {
        top: 0;
    }

    .nav-links a {
        font-size: 2rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }
}
