/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #0e3e2b;       /* Forest Green */
    --color-primary-light: #16563e;
    --color-secondary: #6b1d2f;     /* Deep Burgundy */
    --color-secondary-light: #83273c;
    --color-gold: #c59b27;          /* Classic Gold */
    --color-gold-light: #dfb23c;
    
    --color-bg-warm: #fcfaf2;       /* Warm Off-White */
    --color-bg-white: #ffffff;
    --color-text-dark: #1c221f;     /* Very Dark Greenish Gray */
    --color-text-muted: #53625b;    /* Muted Slate Gray */
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(14, 62, 43, 0.08), 0 4px 6px -2px rgba(14, 62, 43, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(14, 62, 43, 0.12), 0 10px 10px -5px rgba(14, 62, 43, 0.06);
    --shadow-glow: 0 0 25px rgba(197, 155, 39, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-primary);
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* Common Layout Elements */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.decorator-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* Helper Utilities */
.gold-text {
    color: var(--color-gold);
}

.highlight-green {
    color: var(--color-primary);
}

.highlight-yellow {
    color: #b58d1f;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(252, 250, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.logo-gold {
    color: var(--color-gold);
}

.logo-year {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.main-nav a:hover:not(.nav-cta) {
    color: var(--color-gold);
}

.nav-cta {
    background-color: var(--color-secondary);
    color: var(--color-bg-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(107, 29, 47, 0.2);
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 29, 47, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-warm);
    z-index: 200;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.mobile-cta {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    padding: 1rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-white);
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 62, 43, 0.9) 0%, rgba(107, 29, 47, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--color-gold);
    border: 1px solid rgba(197, 155, 39, 0.4);
    background-color: rgba(197, 155, 39, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-motto {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.85rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-bg-warm);
    letter-spacing: 0.02em;
}

/* Date Box */
.hero-date-box {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(107, 29, 47, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 2.25rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 3rem;
}

.date-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.date-text {
    text-align: left;
}

.date-day {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--color-bg-white);
}

.date-time {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* Countdown */
.countdown-container {
    background: rgba(14, 62, 43, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    max-width: 550px;
    width: 100%;
}

.countdown-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.countdown-val {
    font-family: var(--font-body);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-bg-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
    transition: color var(--transition-fast);
}

.scroll-arrow:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   INFO GRID SECTION
   ========================================================================== */
.infos-section {
    background-color: var(--color-bg-warm);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
}

.info-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(14, 62, 43, 0.03);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(14, 62, 43, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-normal);
}

.info-card:hover .card-icon-wrapper {
    background-color: var(--color-primary);
}

.card-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.info-card:hover .card-icon {
    color: var(--color-gold);
    transform: scale(1.1);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   GALLERY / IMPRESSIONS SECTION
   ========================================================================== */
.impressions-section {
    background-color: var(--color-bg-white);
}

.section-description-text {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14, 62, 43, 0.9) 0%, rgba(14, 62, 43, 0.4) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--color-gold);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transform: translateY(20px);
    transition: transform var(--transition-normal) ease;
}

.gallery-item:hover .gallery-icon-wrapper {
    transform: translateY(0);
}

.gallery-icon-wrapper i {
    width: 20px;
    height: 20px;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-bg-white);
    transform: translateY(15px);
    transition: transform var(--transition-normal) ease 0.05s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 28, 20, 0.98);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--color-bg-warm);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1010;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-bg-warm);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1010;
}

.lightbox-nav:hover {
    background: var(--color-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.lightbox-prev {
    left: 4rem;
}

.lightbox-next {
    right: 4rem;
}

.lightbox-nav i {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   CHARITY SECTION
   ========================================================================== */
.charity-section {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    overflow: hidden;
}

.charity-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
    background-size: 20px 20px;
}

.charity-content-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-right: 0;
}

.charity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.heart-pulse {
    color: var(--color-gold);
    animation: heartbeat 1.5s infinite;
}

.charity-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.charity-intro {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-bg-warm);
    margin-bottom: 2rem;
}

.charity-details p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.charity-quote blockquote {
    color: var(--color-gold);
    border-left-color: var(--color-gold);
    font-size: 1.35rem;
    line-height: 1.5;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.charity-quote-author {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: right;
    font-style: italic;
    padding-right: 1.5rem;
}

/* ==========================================================================
   COMMITTEE & PATRON SECTION
   ========================================================================== */
.committee-section {
    background-color: var(--color-bg-warm);
}

.committee-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

/* Patron Card */
.patron-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(14, 62, 43, 0.03);
}

.patron-avatar-container {
    position: relative;
    margin-bottom: 2rem;
}

.patron-icon-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(14, 62, 43, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.patron-placeholder-icon {
    width: 64px;
    height: 64px;
    color: var(--color-secondary);
    animation: heartbeat 2s infinite;
}

.gold-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    z-index: 1;
}

.patron-info h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.patron-role {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.patron-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Committee Details */
.committee-details-card {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.committee-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.committee-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.committee-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.committee-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.member-dot {
    width: 32px;
    height: 32px;
    background-color: rgba(197, 155, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.member-name {
    letter-spacing: 0.01em;
}

.committee-contact-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.committee-contact-info i {
    flex-shrink: 0;
    color: var(--color-gold);
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* ==========================================================================
   REGISTRATION FORM SECTION
   ========================================================================== */
.registration-section {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    overflow: hidden;
}

.registration-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 62, 43, 0.96) 0%, rgba(107, 29, 47, 0.88) 100%);
    z-index: 1;
}

.registration-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.registration-info {
    padding-right: 1.5rem;
}

.registration-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.registration-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.registration-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.registration-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.reg-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.reg-detail-item i {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

.reg-detail-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-bg-white);
}

.reg-detail-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.underline-link {
    color: var(--color-gold);
    border-bottom: 1px solid currentColor;
    font-weight: 600;
}

.underline-link:hover {
    color: var(--color-gold-light);
}

/* Form Container */
.registration-form-container {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group, .form-group-full {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.form-group-full {
    width: 100%;
}

.form-group label, .form-group-full label, .form-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input, .form-group-full input, .form-group-full textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1rem;
    color: var(--color-bg-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group-full textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus, .form-group-full input:focus, .form-group-full textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(197, 155, 39, 0.2);
}

/* Radio Group */
.form-group-type {
    margin-bottom: 0.5rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    user-select: none;
}

.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.radio-label:hover input ~ .custom-radio {
    border-color: var(--color-gold);
}

.radio-label input:checked ~ .custom-radio {
    border-color: var(--color-gold);
    background-color: transparent;
}

.custom-radio::after {
    content: '';
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
}

.radio-label input:checked ~ .custom-radio::after {
    display: block;
}

/* Checkbox */
.form-group-consent {
    margin: 0.5rem 0;
}

.consent-label {
    position: relative;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    user-select: none;
    line-height: 1.4;
}

.consent-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.consent-label:hover input ~ .custom-checkbox {
    border-color: var(--color-gold);
}

.consent-label input:checked ~ .custom-checkbox {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
}

.custom-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-label input:checked ~ .custom-checkbox::after {
    display: block;
}

/* Conditional Section animation */
.player2-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    transition: max-height var(--transition-slow) ease-in-out, opacity var(--transition-slow) ease-in-out;
}

.player2-section.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

/* Submit button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-gold);
    color: var(--color-primary);
    border: none;
    padding: 1.15rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(197, 155, 39, 0.25);
    transition: var(--transition-normal);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.submit-btn:focus {
    outline: none;
}

.submit-btn i {
    width: 18px;
    height: 18px;
}

.form-status {
    font-size: 0.95rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.form-status.success {
    background-color: rgba(14, 62, 43, 0.3);
    border: 1px solid var(--color-primary-light);
    color: #6ee7b7;
    padding: 1rem;
}

.form-status.error {
    background-color: rgba(107, 29, 47, 0.3);
    border: 1px solid var(--color-secondary-light);
    color: #fca5a5;
    padding: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #0b1c14; /* Darker Forest Green */
    color: var(--color-bg-white);
    padding: 5rem 1.5rem 3rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-motto-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.footer-motto-section h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-motto-section p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heart {
    display: inline-block;
}

.heart-icon {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    fill: var(--color-secondary);
    animation: heartbeat 2s infinite;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.08);
    margin-bottom: 2.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes zoomOut {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1.15);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Fade In Classes */
.fade-in {
    animation: fadeIn 1s forwards;
    opacity: 0;
}
.fade-in-delay-1 {
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
    opacity: 0;
}
.fade-in-delay-2 {
    animation: fadeIn 1s forwards;
    animation-delay: 0.4s;
    opacity: 0;
}
.fade-in-delay-3 {
    animation: fadeIn 1s forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.fade-in-delay-4 {
    animation: fadeIn 1s forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

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

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   LEGAL MODAL WINDOWS
   ========================================================================== */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 28, 20, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-content {
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    max-width: 650px;
    width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(14, 62, 43, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.legal-modal-close:hover {
    color: var(--color-secondary);
}

.legal-modal h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.5rem;
}

.legal-text-scroll {
    overflow-y: auto;
    padding-right: 1rem;
    max-height: calc(80vh - 150px);
}

.legal-text-scroll h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.legal-text-scroll p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    margin: 0 0.5rem;
}

/* ==========================================================================
   SPONSORS SECTION
   ========================================================================== */
.sponsors-section {
    background-color: var(--color-bg-warm);
    padding: 5rem 1.5rem;
    text-align: center;
}

.sponsors-board {
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(14, 62, 43, 0.08);
}

.sponsors-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .charity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .charity-content-box {
        padding-right: 0;
    }
    
    .charity-image-box {
        order: -1; /* Image first on mobile tablet */
    }
    
    .committee-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide desktop nav */
    }
    
    .mobile-menu-toggle {
        display: block; /* Show menu toggle */
    }
    
    .hero-section {
        padding-top: 6rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-motto {
        font-size: 1.45rem;
        margin-bottom: 2rem;
    }
    
    .hero-date-box {
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .date-day {
        font-size: 1.15rem;
    }
    
    .countdown-container {
        padding: 1.25rem 1.5rem;
    }
    
    .countdown-val {
        font-size: 1.75rem;
    }
    
    .section-container {
        padding: 4rem 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .charity-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .lightbox-prev {
        left: 1.5rem;
    }
    
    .lightbox-next {
        right: 1.5rem;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}
