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

:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --accent-red: #e63946;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    background: var(--darker-bg);
}

body.admin-bar .landing-container {
    height: calc(100vh - 32px);
    margin-top: 32px;
}

#page,
.site,
.site-content {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.landing-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.split-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.band-section {
    background-color: var(--dark-bg);
}

.studio-section {
    background-color: var(--dark-bg);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    transition: background 0.6s ease;
    z-index: 1;
}

.split-section:hover .section-overlay {
    background: var(--overlay-light);
}

.section-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    padding-top: 3rem;
    color: var(--text-white);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-section:hover .section-content {
    transform: translateY(-20px);
}

.logo-container {
    display: none !important;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.section-subtitle {
    display: none !important;
}

.enter-link {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.enter-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-white);
    transition: left 0.4s ease;
    z-index: -1;
}

.enter-link:hover::before {
    left: 0;
}

.enter-link:hover {
    color: var(--dark-bg);
    border-color: var(--text-white);
}

.split-section:hover {
    flex: 1.3;
}

.split-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent
    );
    z-index: 3;
    transition: opacity 0.4s ease;
}

.studio-section::after {
    display: none;
}

.split-section:hover::after {
    opacity: 0;
}

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

/* LOGO - CENTERED AT TOP, OVERLAYING BOTH SECTIONS */
.landing-logo-wrapper {
    position: fixed !important;
    top: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    width: 120px !important;
    pointer-events: none !important;
    opacity: 1 !important;
}

.landing-main-logo {
    width: 120px !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.4)) !important;
}

/* VERTICAL SUBTITLES */
.section-subtitle-vertical {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 5rem !important;
    opacity: 0 !important;
    transform: translateY(30px) !important;
    animation: fadeInUp 0.8s ease forwards !important;
    animation-delay: 0.4s !important;
}

.subtitle-line {
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: var(--text-gray) !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.subtitle-bullet {
    font-size: 1.2rem !important;
    color: var(--text-gray) !important;
    opacity: 0.6 !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
    }

    .split-section {
        flex: 1;
    }

    .split-section:hover {
        flex: 1.2;
    }

    .section-title {
        font-size: 4rem;
    }

    .landing-main-logo {
        width: 100px !important;
    }

    .split-section::after {
        right: auto;
        left: 10%;
        width: 80%;
        height: 1px;
        top: auto;
        bottom: 0;
        background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent
        );
    }
}
