/* 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;
}

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.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--cyan);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--cyan);
}

/* 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;
}

.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;
}

/* Responsive */
@media (max-width: 768px) {
    .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-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) {
    .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;
}

.arc-logo img {
    height: 60px;
    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);
}

.arc-rsvp-btn {
    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;
}

/* Responsive ARC Header */
@media (max-width: 768px) {
    .arc-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .arc-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .arc-logo img {
        height: 40px;
    }

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

    .arc-nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }

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

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

/* 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;
}

.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;
    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-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;
    }
}

@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;
    }
}

/* 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.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.signup-modal-content {
    background: #f5f0e8;
    border-radius: 20px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.signup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 2.5rem;
    color: #2a2a2a;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.signup-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.signup-layout {
    display: flex;
}

.signup-image {
    flex: 1;
    overflow: hidden;
}

.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;
}

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

.signup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    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: #2a2a2a;
    color: #fff;
}

.signup-btn-sms:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.signup-btn-email {
    background: #2a2a2a;
    color: #fff;
}

.signup-btn-email:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 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: #2a2a2a;
}

.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;
    }
}
