/* ============================================
   COCKTAILS FOR A CAUSE 2026 - OFFICIAL CRC COLORS
   
   EXACT OFFICIAL COLORS:
   Dark Blue: #3a4755
   Light Blue: #338db9
   Gray: #706d6e
   ============================================ */

:root {
    /* Official CRC Brand Colors - EXACT, NO VARIATIONS */
    --crc-dark-blue: #3a4755;
    --crc-light-blue: #338db9;
    --crc-gray: #706d6e;
    
    /* Pure neutrals only */
    --white: #FFFFFF;
    --off-white: #f5f5f5;
    --black: #000000;
    
    /* Metallic colors for sponsorship tier badges only */
    --gold: #C9A227;
    --silver: #A8A8A8;
    --bronze: #CD7F32;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--off-white);
    color: var(--crc-dark-blue);
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: var(--crc-dark-blue);
    padding: 1rem 4%;
}

nav.solid {
    background: var(--crc-dark-blue);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

nav.scrolled .nav-logo img,
nav.solid .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crc-light-blue);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--crc-light-blue);
}

.nav-cta {
    background: var(--crc-light-blue);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(51, 141, 185, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--crc-dark-blue);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: var(--crc-light-blue);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(51, 141, 185, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--crc-light-blue);
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--crc-light-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--crc-dark-blue);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(58, 71, 85, 0.4);
}

/* Legacy class support */
.btn-burgundy {
    background: var(--crc-dark-blue);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-burgundy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(58, 71, 85, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--crc-dark-blue);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(51, 141, 185, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(51, 141, 185, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--crc-light-blue);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 2rem;
    max-width: 1000px;
}

.hero-overline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--crc-light-blue);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-logo {
    max-width: 550px;
    width: 90%;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-date span {
    color: var(--crc-light-blue);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--crc-light-blue);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 8px;
    background: var(--crc-light-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

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

/* ============================================
   PAGE HEADERS (for subpages)
   ============================================ */

.page-header {
    padding: 10rem 4% 5rem;
    background: var(--crc-dark-blue);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(51, 141, 185, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-header .hero-logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
    opacity: 1;
    animation: none;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-title .highlight {
    color: var(--crc-light-blue);
    font-style: italic;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--crc-light-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--crc-light-blue);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--crc-dark-blue);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-title .highlight {
    color: var(--crc-light-blue);
    font-style: italic;
}

.details-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--crc-gray);
    margin-bottom: 2.5rem;
}

/* ============================================
   EVENT DETAILS SECTION
   ============================================ */

.details-section {
    padding: 8rem 4%;
    background: var(--off-white);
    position: relative;
}

.details-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.details-image {
    position: relative;
}

.details-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.details-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--crc-light-blue);
    z-index: -1;
}

.details-image::after {
    content: '2026';
    position: absolute;
    bottom: 30px;
    right: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: var(--crc-light-blue);
    opacity: 0.15;
    line-height: 1;
}

.details-content {
    padding: 2rem 0;
}

.event-info-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-card {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-bottom: 3px solid var(--crc-light-blue);
    box-shadow: 0 10px 40px rgba(58, 71, 85, 0.08);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--crc-light-blue);
}

.info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--crc-dark-blue);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--crc-gray);
    line-height: 1.6;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
    padding: 10rem 4%;
    background: var(--crc-dark-blue);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23338db9' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.mission-content .section-tag {
    color: var(--crc-light-blue);
    justify-content: center;
}

.mission-content .section-tag::before,
.mission-content .section-tag::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--crc-light-blue);
}

.mission-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.mission-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.mission-quote::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 6rem;
    color: var(--crc-light-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(51, 141, 185, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--crc-light-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.8;
}

/* ============================================
   SPONSORSHIP SECTION
   ============================================ */

.sponsors-section {
    padding: 8rem 4%;
    background: var(--white);
}

.sponsors-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.sponsors-header .section-tag {
    justify-content: center;
}

.sponsors-header .section-tag::before,
.sponsors-header .section-tag::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--crc-light-blue);
}

.sponsor-tiers {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.sponsor-tier {
    background: var(--off-white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sponsor-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.sponsor-tier.presenting::before {
    background: var(--crc-light-blue);
}

.sponsor-tier.gold::before {
    background: var(--gold);
}

.sponsor-tier.silver::before {
    background: var(--silver);
}

.sponsor-tier.bronze::before {
    background: var(--bronze);
}

.sponsor-tier.champion::before {
    background: var(--crc-gray);
}

.sponsor-tier.friends::before {
    background: var(--crc-dark-blue);
}

.sponsor-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(58, 71, 85, 0.15);
}

.tier-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
}

.tier-icon svg {
    width: 35px;
    height: 35px;
}

.presenting .tier-icon svg { color: var(--crc-light-blue); }
.gold .tier-icon svg { color: var(--gold); }
.silver .tier-icon svg { color: var(--silver); }
.bronze .tier-icon svg { color: var(--bronze); }
.champion .tier-icon svg { color: var(--crc-gray); }
.friends .tier-icon svg { color: var(--crc-dark-blue); }

.tier-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--crc-dark-blue);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--crc-dark-blue);
    margin-bottom: 1.2rem;
}

.tier-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    min-height: 280px;
}

.tier-benefits li {
    font-size: 0.85rem;
    color: var(--crc-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.tier-benefits li::before {
    content: '✓';
    color: var(--crc-light-blue);
    font-weight: 700;
    flex-shrink: 0;
}

.tier-cta {
    background: var(--crc-dark-blue);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: var(--crc-light-blue);
}

/* Custom sponsorship note */
.custom-sponsorship-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--off-white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-sponsorship-note p {
    font-size: 1rem;
    color: var(--crc-gray);
    margin-bottom: 0.5rem;
}

.custom-sponsorship-note a {
    color: var(--crc-light-blue);
    text-decoration: none;
    font-weight: 600;
}

.custom-sponsorship-note a:hover {
    text-decoration: underline;
}

/* ============================================
   TICKET SECTION
   ============================================ */

.tickets-section {
    padding: 6rem 4%;
    background: var(--off-white);
}

.tickets-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ticket-card {
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(58, 71, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--crc-light-blue);
}

.ticket-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--crc-dark-blue);
    margin-bottom: 1rem;
}

.ticket-price sup {
    font-size: 2.5rem;
    vertical-align: super;
}

.ticket-label {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--crc-dark-blue);
    margin-bottom: 2rem;
}

.ticket-includes {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-includes li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--crc-gray);
}

.ticket-includes li svg {
    color: var(--crc-light-blue);
    flex-shrink: 0;
}

/* ============================================
   EVENING HIGHLIGHTS (Paddle Raise & Raffle)
   ============================================ */

.highlights-section {
    padding: 8rem 4%;
    background: var(--white);
}

.highlights-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.highlights-header .section-tag {
    justify-content: center;
}

.highlights-header .section-tag::before,
.highlights-header .section-tag::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--crc-light-blue);
}

.highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.highlight-card {
    background: var(--off-white);
    padding: 3rem;
    position: relative;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--crc-light-blue);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(58, 71, 85, 0.1);
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
    color: var(--crc-dark-blue);
}

.highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--crc-dark-blue);
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--crc-gray);
    margin-bottom: 1.5rem;
}

.raffle-packages {
    list-style: none;
}

.raffle-packages li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.raffle-packages li:last-child {
    border-bottom: none;
}

.raffle-packages .package-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.raffle-packages .package-icon svg {
    width: 24px;
    height: 24px;
    color: var(--crc-light-blue);
}

.raffle-packages .package-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--crc-dark-blue);
    margin-bottom: 0.2rem;
}

.raffle-packages .package-info p {
    font-size: 0.9rem;
    color: var(--crc-gray);
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
    padding: 5rem 4%;
    background: var(--off-white);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(58, 71, 85, 0.1);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--crc-light-blue);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--crc-dark-blue);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: var(--off-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--crc-light-blue);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233a4755' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sponsor-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sponsor-option {
    position: relative;
}

.sponsor-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.sponsor-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.sponsor-option input:checked + label {
    border-color: var(--crc-light-blue);
    background: rgba(51, 141, 185, 0.1);
}

.sponsor-option label span:first-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--crc-dark-blue);
    margin-bottom: 0.3rem;
}

.sponsor-option label span:last-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--crc-dark-blue);
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
}

.form-submit button {
    background: var(--crc-light-blue);
    color: var(--white);
    padding: 1.3rem 4rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-submit button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(51, 141, 185, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--crc-gray);
}

.form-note a {
    color: var(--crc-light-blue);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Ticket quantity selector */
.ticket-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.qty-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--crc-light-blue);
    background: transparent;
    font-size: 1.5rem;
    color: var(--crc-dark-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--crc-light-blue);
    color: var(--white);
}

.qty-display {
    font-size: 2rem;
    font-weight: 600;
    color: var(--crc-dark-blue);
    min-width: 60px;
    text-align: center;
}

.total-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--crc-dark-blue);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--crc-dark-blue);
    color: var(--white);
    padding: 5rem 4% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand img {
    max-width: 180px;
    width: auto;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--crc-light-blue);
    background: var(--crc-light-blue);
    color: var(--white);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--crc-light-blue);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.6;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.5;
    max-width: 600px;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .sponsor-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .details-image::after {
        right: 20px;
        font-size: 5rem;
    }

    .sponsor-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .sponsor-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .event-info-cards {
        flex-direction: column;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .sponsor-tiers {
        grid-template-columns: 1fr;
    }
    
    .tier-benefits {
        min-height: auto;
    }

    .form-container {
        padding: 2rem;
    }

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

    .sponsor-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .ticket-card {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 260px;
    }
    
    .page-header .hero-logo {
        max-width: 220px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}
