/* ============================================
   KYLE VERSION - Override Styles
   Drop the Needle - Kyle's Page Layout
   ============================================ */

/* ============================================
   HEADER OVERRIDES
   ============================================ */
.site-header {
    background: #8E9EAE;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 0;
}

.site-header.scrolled {
    background: rgba(142, 158, 174, 0.95);
    padding: 0;
}

.header-inner {
    padding: 0 clamp(16px, 3vw, 40px);
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.header-logo img {
    height: auto;
    width: 100%;
    max-width: 500px;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 0;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   NAV OVERLAY
   ============================================ */
.kyle-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.kyle-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 5px 10px;
}

.nav-close-btn:hover {
    opacity: 1;
}

.kyle-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kyle-nav-menu li a {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: inline-block;
}

.kyle-nav-menu li a:hover {
    color: var(--lime-green);
}

.kyle-nav-menu li a.nav-coming-soon {
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.kyle-nav-menu li a.nav-coming-soon::after {
    content: ' (Coming Soon)';
    font-size: 0.6em;
    color: var(--lime-green);
    letter-spacing: 1px;
}

.kyle-nav-menu li a.nav-highlight {
    color: var(--lime-green);
}

/* ============================================
   HERO OVERRIDES
   ============================================ */
.hero {
    min-height: auto;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.1);
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    padding: 140px 20px 80px;
    max-width: 1000px;
}

.hero-box-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-box-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-box-img:hover {
    transform: scale(1.01);
}

/* ============================================
   NEW SECTIONS: How Created & About Creator
   ============================================ */
.kyle-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--charcoal);
    text-align: center;
}

.kyle-section .container {
    max-width: 1000px;
}

.kyle-section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    margin-bottom: 40px;
}

.kyle-section-link {
    display: inline-block;
    padding: 18px 44px;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--lime-green);
    background: transparent;
    border: 2px solid var(--lime-green);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.kyle-section-link:hover {
    background: var(--lime-green);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 205, 50, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-logo img {
        max-width: 280px;
        max-height: 60px;
    }

    .hero-content {
        padding: 110px 16px 60px;
    }

    .hero-box-images {
        gap: 24px;
    }

    .hero-box-img {
        border-radius: 8px;
    }

    .kyle-section {
        padding: 40px 0;
    }

    .kyle-section-image {
        margin-bottom: 28px;
    }

    .kyle-section-link {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .kyle-nav-menu {
        gap: 24px;
    }

    .kyle-nav-menu li a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        max-width: 220px;
        max-height: 50px;
    }

    .hamburger-btn {
        padding: 8px;
    }

    .hamburger-btn span {
        width: 26px;
        height: 2.5px;
        gap: 5px;
    }

    .hero-content {
        padding: 90px 12px 40px;
    }

    .hero-box-images {
        gap: 20px;
    }

    .kyle-section-link {
        padding: 12px 28px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   HOW WAS THIS GAME CREATED? Section
   ============================================ */
.how-created-section {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
}

.how-created-inner {
    max-width: 900px;
    margin: 0 auto;
}

.how-created-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: 8px;
    padding: 10px 18px;
    margin-bottom: 30px;
}

.how-created-badge .badge-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.how-created-badge .badge-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--lime-green);
}

.how-created-section .section-title {
    margin-bottom: 36px;
}

.how-created-body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.how-created-body p {
    margin-bottom: 20px;
}

.how-created-body .text-lime-bold {
    color: var(--lime-green);
    font-weight: 700;
}

.how-created-body .sister-quote {
    font-style: italic;
    color: var(--lime-green);
    font-size: 1.25rem;
    padding: 20px 0;
    display: block;
    line-height: 1.7;
    text-align: center;
}

.how-created-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 44px;
    background: var(--lime-green);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.how-created-cta:hover {
    background: var(--lime-green-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 205, 50, 0.3);
}

.how-created-cta-wrap {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   ABOUT THE CREATOR Section
   ============================================ */
.about-creator-section {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-creator-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.creator-photo-wrap {
    position: sticky;
    top: 120px;
}

.creator-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.creator-listen-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.creator-listen-link:hover {
    color: var(--lime-green);
}

.about-creator-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.about-creator-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.about-creator-text .creator-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.about-creator-text p {
    margin-bottom: 20px;
}

.about-creator-text .text-lime-bold {
    color: var(--lime-green);
    font-weight: 700;
}

.creator-artists-list {
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.about-creator-cta-wrap {
    margin-top: 30px;
}

.about-creator-cta {
    display: inline-block;
    padding: 18px 44px;
    background: var(--lime-green);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-creator-cta:hover {
    background: var(--lime-green-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 205, 50, 0.3);
}

@media (max-width: 900px) {
    .about-creator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .creator-photo-wrap {
        position: static;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .creator-photo-wrap {
        max-width: 260px;
    }

    .about-creator-text h2 {
        font-size: 1.6rem;
    }

    .about-creator-cta-wrap {
        text-align: center;
    }

    .about-creator-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Modal coming soon override - single column */
.modal-option-coming-soon {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--charcoal), #2a2a2a);
    color: var(--white);
}
