/* WHYNOT PDX - Main Stylesheet */

:root {
    --cyan: #00a8e8;
    --pink: #ff6b9d;
    --hot-pink: #e84393;
    --yellow: #f9ca24;
    --light-blue: #2d3561;
    --dark: #e8f4f8;
    --darker: #f5f9fc;
    --white: #fff;
    --text-light: #1a1a2e;
    --text-medium: #4a5568;
    --border-light: rgba(0, 168, 232, 0.2);
    --card-bg: #ffffff;
}

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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--darker);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--cyan);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--cyan);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0f4ff 0%, #f5f9fc 50%, #ffe8f0 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 168, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 202, 36, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light-blue);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-bleed dark sections (avoid light side gutters) */
.hero-recap,
.hero-festival,
.hero-slideshow,
.info-section,
.experience-section,
.cta-final {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.15);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.event-card .date {
    color: var(--cyan);
    font-weight: bold;
}

.placeholder {
    color: var(--text-medium);
    font-style: italic;
    opacity: 0.7;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    color: var(--dark);
    text-align: center;
    padding: 4rem 2rem;
    margin: 2rem 0;
    max-width: 100%;
    border-radius: 0;
}

.newsletter h2 {
    color: var(--dark);
    -webkit-text-fill-color: var(--dark);
}

.newsletter p {
    margin-bottom: 2rem;
    color: var(--dark);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--cyan);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
}

.btn:hover {
    background: var(--pink);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--pink);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--white);
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    opacity: 0.6;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: #f9ca24;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--pink);
}

/* Page Content (non-home pages) */
.page-content {
    padding-top: 80px;
}

.page-header {
    background: linear-gradient(135deg, #d0eeff 0%, #ffe0ec 100%);
    color: var(--text-light);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 168, 232, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Contact Page */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.contact-info a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--pink);
}

.contact-methods {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Campout Pages */
.hero-campout {
    background: linear-gradient(135deg, #c8e8ff 0%, #ffe5f1 50%, #ffebd6 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,168,232,0.08)"/></svg>');
    background-size: cover, 20px 20px;
}

.campout-date {
    font-size: 1.5rem;
    color: var(--cyan);
    font-weight: bold;
    margin: 1rem 0;
    letter-spacing: 0.2em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.campout-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.15);
}

.info-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.campout-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.campout-details h2,
.campout-details h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.campout-details p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.campout-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.campout-list li {
    padding: 0.8rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid var(--cyan);
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section h3 {
    color: var(--cyan);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.past-campouts {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.past-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.past-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--pink);
    border-radius: 4px;
}

.past-link:hover {
    background: var(--pink);
    color: var(--white);
}

.campout-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.campout-link:hover {
    color: var(--pink);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover img {
    border-color: var(--cyan);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    padding: 1.5rem;
}

.lightbox-content {
    position: relative;
    width: min(96vw, 1200px);
    max-height: 92vh;
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.lightbox-content img {
    width: 100%;
    max-height: calc(92vh - 1.5rem);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: block;
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    color: #000;
    background: var(--yellow);
    border-color: var(--yellow);
}

/* Campout Overview Page */
.campout-overview {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.campout-overview p {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.campout-years {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.campout-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.campout-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.15);
}

.campout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campout-card h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.campout-card p {
    color: var(--text-medium);
    margin: 0.5rem 0;
}

.campout-upcoming {
    border: 2px solid var(--cyan);
    box-shadow: 0 4px 30px rgba(0, 168, 232, 0.2);
}

.badge {
    background: var(--cyan);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-recap {
    min-height: 60vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-recap-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-recap .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-recap .hero-content-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    color: #fff;
}

.hero-recap .hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-recap .hero-dates {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.hero-recap .hero-location {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--yellow);
}

.recap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.recap-intro p {
    color: var(--text-medium);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Campout 2025 spacing tweaks */
.campout-2025-page .hero-recap {
    min-height: 78vh;
    padding: 130px 20px 80px;
}

.campout-2025-page .info-section {
    padding-top: 0.75rem;
}

.campout-2025-page .campout-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    flex-wrap: wrap;
    max-width: 960px;
}

.campout-2025-page .campout-stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    min-width: 140px;
}

.campout-2025-page .campout-stat-number {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--yellow);
}

.campout-2025-page .campout-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.campout-2025-page .recap-intro {
    margin-bottom: 1.5rem;
}

.campout-2025-page .recap-intro .section-title {
    margin-bottom: 0.6rem;
}

.campout-2025-page .photo-gallery {
    margin-top: 1.25rem;
}

.campout-2025-page .cta-section {
    text-align: center;
    padding: 2.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem auto 0;
    max-width: 900px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.campout-2025-page .cta-section h3 {
    color: #f9ca24;
    margin-bottom: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.campout-2025-page .cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.campout-2025-page .cta-final {
    margin-top: 4rem;
}

.campout-2025-page .dj-section {
    margin-top: 2.5rem;
}

.campout-2025-page .dj-section .dj-title {
    margin-bottom: 1.4rem;
}

.campout-2025-page .dj-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: none;
    width: 100%;
    margin: 0;
}

.campout-2025-page .dj-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.9rem 0.9rem 1rem;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.campout-2025-page .dj-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
}

.campout-2025-page .dj-card p {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.campout-2025-page .dj-toggle-btn {
    display: none;
    margin: 1.25rem auto 0;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .campout-2025-page .hero-recap {
        min-height: 66vh;
        padding: 138px 16px 58px;
    }

    .campout-2025-page .hero-recap .hero-title {
        font-size: 2.7rem;
        letter-spacing: 0.14em;
    }

    .campout-2025-page .campout-stats {
        gap: 0.75rem;
        margin-bottom: 1.2rem;
    }

    .campout-2025-page .campout-stat-item {
        min-width: 110px;
        padding: 0.8rem 1rem;
    }

    .campout-2025-page .dj-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .campout-2025-page .dj-section .dj-title {
        margin-bottom: 1rem;
    }

    .campout-2025-page .dj-card {
        width: 100%;
    }

    .campout-2025-page .dj-card p {
        font-size: 1.05rem;
    }

    .campout-2025-page .dj-toggle-btn {
        display: inline-block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .campout-date {
        font-size: 1.2rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .campout-info-grid {
        grid-template-columns: 1fr;
    }

    .past-links {
        flex-direction: column;
    }
}

/* ===========================
   FESTIVAL REDESIGN STYLES
   =========================== */

/* Top Banner */
.top-banner {
    background: var(--yellow);
    color: var(--text-light);
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* RSVP Button in Nav */
.rsvp-btn {
    background: var(--yellow);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.rsvp-btn:hover {
    background: var(--hot-pink);
    color: var(--white);
    transform: scale(1.05);
}

/* Hero Section - Festival Style */
.hero-festival {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #2a2a3e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content-festival {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo-large {
    max-width: 400px;
    width: 80%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.festival-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--yellow);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
}

.festival-location {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.festival-dates {
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-hero {
    background: var(--yellow);
    color: var(--text-light);
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(249, 202, 36, 0.4);
}

.btn-hero:hover {
    background: var(--hot-pink);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(232, 67, 147, 0.5);
}

.hero-photos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    opacity: 0.4;
    transition: transform 0.1s ease-out;
}

.hero-photo {
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.hero-photo:hover {
    opacity: 0.6;
}

/* Info Section */
.info-section {
    background: #000;
    padding: 8rem 2rem 5rem 2rem;
    min-height: 100vh;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.info-section > .section-title,
.experience-section > .section-title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.info-card h3 {
    color: #f9ca24;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.info-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.info-content ul {
    list-style: none;
    padding-left: 0;
}

.info-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.info-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f9ca24;
    font-weight: bold;
}

.age-requirement {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 3px solid var(--cyan);
    max-width: 600px;
    margin: 3rem auto;
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.2);
}

.age-requirement h2 {
    font-size: 5rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.age-requirement p {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
}

.event-details {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-details h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.event-date {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Experience Section */
.experience-section {
    background: #000;
    padding: 8rem 2rem 5rem 2rem;
    min-height: 100vh;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.experience-card h3 {
    color: #f9ca24;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.experience-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.experience-content ul {
    list-style: none;
    padding-left: 0;
}

.experience-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.experience-content li::before {
    content: '♫';
    position: absolute;
    left: 0;
    color: #f9ca24;
    font-weight: bold;
}

.experience-link {
    display: inline-block;
    margin-top: 1rem;
    color: #f9ca24;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.experience-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Final CTA Section */
.cta-final {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-final h2 {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Responsive Updates for Festival Design */
@media (max-width: 768px) {
    .festival-title {
        font-size: 2.5rem;
    }

    .festival-location {
        font-size: 1.2rem;
    }

    .festival-dates {
        font-size: 1rem;
    }

    .hero-logo-large {
        max-width: 280px;
    }

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

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

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

    .age-requirement h2 {
        font-size: 3.5rem;
    }

    .hero-photos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .top-banner {
        font-size: 0.75rem;
    }

    .rsvp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Photo Highlight Grid */
.photo-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.photo-highlight {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    height: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.photo-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-highlight:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.3);
    z-index: 10;
}

.photo-highlight:hover::before {
    opacity: 1;
}

/* Responsive for photo highlights */
@media (max-width: 768px) {
    .photo-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .photo-highlight {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .campout-2025-page .hero-recap {
        min-height: 60vh;
        padding: 132px 14px 50px;
    }

    .campout-2025-page .hero-recap .hero-title {
        font-size: 1.9rem;
        letter-spacing: 0.1em;
    }

    .photo-highlight-grid {
        grid-template-columns: 1fr;
    }

    .photo-highlight {
        height: 250px;
    }
}


/* ARC-Style Header */
.arc-header {
    background: #000;
    padding: 1rem 2rem;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.arc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.arc-branding {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.arc-logo {
    display: block;
    flex-shrink: 0;
}

.arc-logo img {
    display: block;
    height: 80px;
    width: auto;
}

.arc-event-info {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.arc-date {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.arc-location {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 0.05em;
}

.arc-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.arc-nav-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.arc-nav-links a:hover {
    color: var(--yellow);
}

/* Dropdown Menu */
.arc-nav-links .dropdown {
    position: relative;
    padding-bottom: 0.5rem;
}

.arc-nav-links .dropdown-toggle {
    cursor: pointer;
    display: inline-block;
}

.arc-nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 0;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    margin-top: 0;
    min-width: 180px;
    z-index: 1001;
    list-style: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.arc-nav-links .dropdown-menu li {
    margin: 0;
}

.arc-nav-links .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.arc-nav-links .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.arc-nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.arc-rsvp-btn {
    display: inline-block;
    flex-shrink: 0;
    white-space: nowrap;
    background: var(--yellow);
    color: #000;
    padding: 0.75rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.arc-rsvp-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 202, 36, 0.4);
}

/* Adjust hero section for new header */
.hero-festival {
    margin-top: 90px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Nav Menu - Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
    gap: 2rem;
}

/* Responsive ARC Header */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 80px 2rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .arc-nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .arc-nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .arc-nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .arc-nav-links .dropdown-menu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }

    .arc-nav-links .dropdown-menu li {
        border-bottom: none;
        padding-left: 1.5rem;
    }

    .arc-nav-links .dropdown-menu a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .arc-nav-links .dropdown.active .dropdown-menu {
        display: block;
    }

    .arc-rsvp-btn {
        margin-top: 2rem;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .arc-nav {
        gap: 1rem;
    }

    .arc-branding {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .arc-logo img {
        height: 70px !important;
    }

    .arc-event-info {
        font-size: 0.85rem;
    }
}

/* Hide & Seek Style Header */
.arc-header.hideseek-header {
    background: transparent;
    position: absolute;
    border-bottom: none;
    box-shadow: none;
}

/* Full-Screen Hero with Video Overlay */
.hero-video-home {
    position: relative;
    width: 100vw;
    height: 86vh;
    overflow: hidden;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    max-width: none;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 82%;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #000;
}

.hero-video-home .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-portrait-quote {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    background: #060606;
    padding: 3rem 0 4rem;
}

.portrait-quote-layout {
    width: min(1400px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 46%) 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.portrait-quote-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    background: #0a0a0a;
}

.portrait-quote-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-portrait-quote .slideshow-quote-panel {
    color: #fff;
    padding: 1rem 0;
}

.hero-portrait-quote .slideshow-quote {
    text-align: left;
}

/* Full-Screen Hero with Slideshow */
.hero-slideshow {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    max-width: none;
}

.hero-slideshow-below {
    min-height: 72vh;
    height: auto;
    background: #060606;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 0 4rem;
}

.peek-carousel {
    position: relative;
    width: min(1700px, 98vw);
}

.peek-viewport {
    width: 100%;
    overflow: hidden;
}

.peek-track {
    display: flex;
    gap: clamp(0.8rem, 1.6vw, 1.5rem);
    transition: transform 0.45s ease;
    will-change: transform;
}

.peek-slide {
    flex: 0 0 min(1200px, 74vw);
    aspect-ratio: 16 / 10;
    opacity: 0.45;
    transform: scale(0.94);
    transition: transform 0.35s ease, opacity 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    background: #090909;
    overflow: hidden;
}

.peek-slide.active {
    opacity: 1;
    transform: scale(1);
}

.peek-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.peek-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 74px;
    height: 74px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.peek-arrow-prev {
    left: clamp(10px, 2.8vw, 36px);
}

.peek-arrow-next {
    right: clamp(10px, 2.8vw, 36px);
}

/* Legacy slideshow styles kept for other pages */
.hero-slideshow-below .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slideshow-below .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.slideshow-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #fff;
}

.slideshow-arrow-prev {
    left: 12px;
}

.slideshow-arrow-next {
    right: 12px;
}

.slideshow-quote-panel {
    color: #fff;
    padding: 1rem 0;
}

.slideshow-quote {
    margin: 0;
    font-size: clamp(1.8rem, 3.3vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slideshow-quote-white {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-slideshow .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(0, 0, 0, 0.8),
                 0 0 50px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.hero-dates {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9),
                 0 0 20px rgba(0, 0, 0, 0.8),
                 0 0 40px rgba(0, 0, 0, 0.6);
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.2em;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn:hover {
    background: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(249, 202, 36, 0.5);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-video-home {
        margin-top: 90px;
        height: 72vh;
    }

    .hero-portrait-quote {
        padding: 2rem 0 3rem;
    }

    .portrait-quote-layout {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .portrait-quote-image-frame {
        width: min(92vw, 560px);
        justify-self: center;
        aspect-ratio: 3 / 4;
    }

    .hero-portrait-quote .slideshow-quote-panel {
        width: min(92vw, 640px);
        margin: 0 auto;
        text-align: left;
    }

    .hero-portrait-quote .slideshow-quote {
        font-size: clamp(1.5rem, 6.6vw, 2.6rem);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    .hero-dates {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .hero-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .hero-slideshow-below {
        min-height: auto;
        margin-top: 1.5rem;
        padding: 2.5rem 0 3rem;
    }

    .peek-slide {
        flex-basis: 86vw;
        aspect-ratio: 4 / 5;
    }

    .peek-arrow {
        width: 56px;
        height: 56px;
        font-size: 2.2rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.15em;
        font-weight: 800;
        text-shadow: 3px 3px 20px rgba(0, 0, 0, 1),
                     0 0 40px rgba(0, 0, 0, 0.9),
                     0 0 60px rgba(0, 0, 0, 0.7);
    }

    .hero-dates {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
        margin-bottom: 2rem;
        font-weight: 500;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 1),
                     0 0 30px rgba(0, 0, 0, 0.9),
                     0 0 50px rgba(0, 0, 0, 0.7);
    }

    .hero-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-video-home {
        margin-top: 90px;
        height: 68vh;
    }

    .hero-slideshow-below {
        margin-top: 0;
        padding: 2rem 0 2.4rem;
    }

    .hero-portrait-quote {
        padding: 1.8rem 0 2.5rem;
    }

    .hero-portrait-quote .slideshow-quote {
        font-size: clamp(1.35rem, 7.8vw, 2.2rem);
        line-height: 1.12;
    }

    .peek-slide {
        flex-basis: 86vw;
    }

    .peek-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .hero-content-center {
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Signup Popup Modal */
.signup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.signup-modal-content {
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
}

.signup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.signup-close:hover {
    transform: rotate(90deg) scale(1.08);
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

.signup-layout {
    display: flex;
}

.signup-image {
    flex: 1;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signup-form-section {
    flex: 1;
    padding: 60px 50px 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
}

.signup-logo {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
}

.signup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 450px;
}

.signup-btn {
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.signup-btn-sms {
    background: var(--yellow);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
}

.signup-btn-sms:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 202, 36, 0.25);
}

.signup-btn-email {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    font-weight: 800;
    text-transform: uppercase;
}

.signup-btn-email:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.signup-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.86);
}

.signup-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-layout {
        flex-direction: column;
    }

    .signup-image {
        max-height: 200px;
    }

    .signup-form-section {
        padding: 25px 25px;
    }

    .signup-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .signup-logo {
        width: 150px;
        margin-bottom: 15px;
    }

    .signup-btn {
        font-size: 0.95rem;
        padding: 14px 22px;
        margin-bottom: 12px;
    }

    .signup-modal-content {
        width: 95%;
    }

    .signup-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
}
