:root {
    --red-primary: #991B1B;
    --red-dark: #7F1D1D;
    --red-light: #B91C1C;
    --gold-primary: #F59E0B;
    --gold-light: #FBBF24;
    --gold-dark: #D97706;
    --green-accent: #047857;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --gray-light: #E5E7EB;
    --gray-dark: #1F2937;
    --shadow: rgba(0, 0, 0, 0.3);
}

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

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

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

/* Christmas Lights */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.light-strand {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.light {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: twinkle 1.5s infinite;
}

.light.red {
    background: radial-gradient(circle at 30% 30%, #FCA5A5, var(--red-primary));
    box-shadow: 0 0 20px var(--red-primary);
}

.light.yellow {
    background: radial-gradient(circle at 30% 30%, #FEF3C7, var(--gold-primary));
    box-shadow: 0 0 20px var(--gold-primary);
    animation-delay: 0.5s;
}

.light.green {
    background: radial-gradient(circle at 30% 30%, #6EE7B7, var(--green-accent));
    box-shadow: 0 0 20px var(--green-accent);
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--red-light) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
}

.sparkles {
    position: absolute;
    inset: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

.tree-spiral {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 300px;
    height: 80%;
    opacity: 0.15;
    background: 
        conic-gradient(from 0deg at 50% 0%, 
            transparent 0deg,
            var(--gold-light) 30deg,
            transparent 60deg,
            var(--gold-light) 90deg,
            transparent 120deg,
            var(--gold-light) 150deg,
            transparent 180deg,
            var(--gold-light) 210deg,
            transparent 240deg,
            var(--gold-light) 270deg,
            transparent 300deg,
            var(--gold-light) 330deg,
            transparent 360deg
        );
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: spiral-rotate 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 50px;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--gray-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: 50px;
    animation: title-entrance 1s ease-out;
}

.title-line {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 4px;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.title-highlight {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 
        0 0 40px var(--gold-primary),
        4px 4px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 12px;
    animation: glow-pulse 2s infinite alternate;
}

@keyframes title-entrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-pulse {
    from {
        text-shadow: 
            0 0 20px var(--gold-primary),
            4px 4px 0 rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 
            0 0 60px var(--gold-primary),
            0 0 80px var(--gold-light),
            4px 4px 0 rgba(0, 0, 0, 0.3);
    }
}

.hero-runners {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    animation: runners-entrance 1.2s ease-out 0.3s backwards;
}

.runner-silhouette {
    width: 80px;
    height: 80px;
    color: var(--gold-light);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: runner-bounce 2s infinite ease-in-out;
}

.runner-silhouette:nth-child(2) {
    animation-delay: 0.3s;
}

.runner-silhouette:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes runner-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes runners-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px 0;
    animation: info-entrance 1.4s ease-out 0.6s backwards;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.info-icon {
    font-size: 2rem;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes info-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: cta-entrance 1.6s ease-out 0.9s backwards;
}

@keyframes cta-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--gray-dark);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--red-primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--red-primary);
    border-color: var(--red-primary);
}

.btn-outline:hover {
    background: var(--red-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: scroll-bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

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

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--gray-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label.light {
    background: var(--white);
    color: var(--red-primary);
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* Event Details Section */
.event-details {
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--red-primary), var(--gold-primary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    flex-shrink: 0;
    width: 50%;
    text-align: right;
    padding-right: 40px;
}

.timeline-marker .time {
    display: inline-block;
    background: var(--red-primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.3);
}

.timeline-content {
    flex: 1;
    padding-left: 40px;
}

.timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--red-primary);
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 5px 0;
    color: var(--gray-dark);
}

.timeline-description {
    margin-top: 15px;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
    color: var(--white);
}

.benefits .section-header h2 {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: var(--gold-primary);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.benefit-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

/* Solidarity Section */
.solidarity {
    background: var(--off-white);
}

.solidarity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solidarity-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--red-primary);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.solidarity-items {
    margin-top: 30px;
}

.solidarity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.solidarity-item span {
    width: 30px;
    height: 30px;
    background: var(--green-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.solidarity-item p {
    margin: 0;
    font-weight: 500;
}

.solidarity-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red-primary) 100%);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(153, 27, 27, 0.3);
}

.image-placeholder p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box > p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--gold-dark);
}

.cta-buttons .btn-primary:hover {
    background: var(--off-white);
    color: var(--gold-primary);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--gold-dark);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 180px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.footer-section p {
    margin: 8px 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--gray-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Animation Class */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 100%;
        text-align: left;
        padding-right: 0;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .solidarity-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-box {
        padding: 60px 30px;
    }
    
    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        width: 200px;
    }
    
    .hero-runners {
        gap: 30px;
    }
    
    .runner-silhouette {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .christmas-lights {
        display: none;
    }
}
