/******************************************
File Name: welcome.css
Owan Marathon - Complete Styles
Version: 2.3 - Fixed Preloader & Final
******************************************/

/* ===================================
   CSS VARIABLES
   ================================= */
:root {
    /* Brand Colors from Flyer */
    --primary-green: #006128;
    --dark-green: #01401b;
    --accent-orange: #f07800;
    --accent-yellow: #ffcb05;
    --gradient-orange: linear-gradient(135deg, #f07800 0%, #ffcb05 100%);
    --gradient-green: linear-gradient(135deg, #01401b 0%, #006128 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark: #212529;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Spacing - Compact */
    --section-padding: 60px 0;
    --section-padding-mobile: 40px 0;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Montserrat', 'Poppins', sans-serif;
}

/* ===================================
   GLOBAL RESETS
   ================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    overflow-x: hidden;
    background: var(--off-white);
    font-size: 14px;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

img {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================================
   HERO SECTION
   ================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #01401b 0%, #006128 50%, #008844 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

/* 99.95% Transparent Green Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(1, 64, 27, 0.0005) 0%,
            rgba(0, 97, 40, 0.0005) 50%,
            rgba(0, 136, 68, 0.0005) 100%);
    z-index: 2;
}

/* Marathon Date Overlay - 99% Transparent */
.marathon-date-overlay {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 15;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.date-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.002);
    backdrop-filter: blur(20px);
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(240, 120, 0, 0.35);
}

.date-icon {
    font-size: 4rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.date-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.date-location {
    font-size: 1.15rem;
    color: var(--accent-yellow);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Floating shapes animation */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 203, 5, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 203, 5, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 4vw, 1.75rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(240, 120, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(240, 120, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-yellow);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.btn-sponsor:hover {
    background: rgba(255, 203, 5, 0.2);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 203, 5, 0.3);
}

.btn-sponsor:active,
.btn-sponsor:focus {
    background: var(--accent-yellow);
    color: var(--dark);
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 16px rgba(255, 203, 5, 0.5);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.25rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===================================
   NEWS TICKER
   ================================= */
.news-ticker {
    background: var(--primary-green);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-label i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-text {
    display: inline-block;
    color: var(--white);
    font-size: 15px;
    white-space: nowrap;
    animation: ticker-scroll 45s linear infinite;
    padding-right: 100%;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===================================
   SECTION COMMON STYLES
   ================================= */
.section {
    padding: var(--section-padding);
    position: relative;
    background: var(--off-white);
}

.section-alt {
    background: var(--white);
}

/* About Section - Vibrant Green Tint */
#about {
    background: linear-gradient(135deg, rgba(0, 97, 40, 0.12) 0%, rgba(0, 136, 68, 0.08) 100%);
}

/* 5th Edition Section - Bold Orange/Yellow */
#edition-5 {
    background: linear-gradient(135deg, rgba(255, 203, 5, 0.25) 0%, rgba(240, 120, 0, 0.20) 100%);
}

/* Champions Section - Clean with Strong Green Accent */
.champions-section {
    background: linear-gradient(to bottom, #ffffff 0%, rgba(0, 97, 40, 0.10) 100%);
}

/* Sponsors Section - Rich Golden Amber (WARM) */
#sponsors {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.30) 0%, rgba(255, 152, 0, 0.35) 100%);
}

/* Contact Section - Cool Sky Blue (COOL) */
#contact {
    background: linear-gradient(to bottom, rgba(33, 150, 243, 0.15) 0%, rgba(100, 181, 246, 0.10) 100%);
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 97, 40, 0.1), rgba(240, 120, 0, 0.1));
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title .gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   ================================= */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 24px;
    text-align: left;
}

.icon-list {
    list-style: none;
    margin-top: 30px;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.15rem;
    color: var(--dark);
    transition: transform 0.3s ease;
    line-height: 1.7;
}

.icon-list li:hover {
    transform: translateX(8px);
}

.icon-list li i {
    color: var(--accent-orange);
    font-size: 22px;
    margin-top: 2px;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.about-image-card:first-child {
    grid-column: span 2;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

/* ===================================
   PAST CHAMPIONS SECTION
   ================================= */
.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.champion-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.champion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.champion-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.champion-header {
    margin-bottom: 28px;
}

.edition-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}

.champion-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.category-winners h4 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(0, 97, 40, 0.05);
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.winner:hover {
    background: rgba(0, 97, 40, 0.1);
    transform: translateX(8px);
}

.position {
    font-size: 1.75rem;
    min-width: 50px;
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.winner-info strong {
    color: var(--dark);
    font-size: 1.25rem;
}

.time {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.age {
    color: var(--gray);
    font-size: 1.05rem;
}

.champion-summary h4 {
    color: var(--primary-green);
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.champion-summary p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    color: var(--gray);
    font-size: 1.15rem;
    font-weight: 500;
}

/* ===================================
   5TH EDITION FEATURES
   ================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-green);
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    color: var(--white);
}

.cta-box h3 {
    color: var(--accent-yellow);
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===================================
   ANNA ODE HONOR SECTION
   ================================= */
.honor-section {
    background: linear-gradient(135deg, #01401b 0%, #006128 100%);
    color: var(--white);
}

/* Override section badge for honor section - make it stand out */
.honor-section .section-badge {
    background: rgba(255, 203, 5, 0.2);
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Override section title for honor section - make it white */
.honor-section .section-title {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.honor-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.honor-text h3 {
    color: var(--accent-yellow);
    font-size: 2rem;
    margin: 28px 0;
}

.honor-text p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 1.15rem;
}

.honor-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 36px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.highlight-item i {
    color: var(--accent-orange);
    font-size: 1.75rem;
}

.honor-quote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-orange);
    padding: 28px;
    border-radius: 12px;
    margin-top: 36px;
    font-style: italic;
    backdrop-filter: blur(10px);
    font-size: 1.15rem;
    line-height: 1.8;
}

.honor-quote cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 1.05rem;
}

.honor-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

/* Anna Ode Image */
.honor-image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 203, 5, 0.3);
}

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

.honor-image-placeholder .placeholder-text {
    text-align: center;
    padding: 40px;
}

.honor-image-placeholder .placeholder-icon {
    font-size: 5.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.honor-image-placeholder .placeholder-label {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.5;
}

.honor-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 36px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 350px;
}

.honor-icon {
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.honor-year {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.honor-title {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin: 14px 0;
}

.honor-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.honor-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===================================
   SPONSORS SECTION
   ================================= */
#sponsors {
    background: var(--white);
}

.sponsors-content {
    max-width: 900px;
    margin: 0 auto;
}

.primary-sponsor,
.support-partners,
.become-sponsor {
    margin-bottom: 50px;
}

.sponsors-content h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 28px;
    text-align: center;
}

.sponsor-highlight {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, rgba(0, 97, 40, 0.05), rgba(240, 120, 0, 0.05));
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.sponsor-logo-placeholder {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
}

.sponsor-info h4 {
    color: var(--dark);
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.sponsor-info p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--white);
    padding: 34px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

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

.partner-card i {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.partner-card h4 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.partner-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.become-sponsor {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.become-sponsor h3 {
    color: var(--accent-yellow);
}

.become-sponsor p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   ================================= */
#contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--accent-yellow);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-list i {
    color: var(--accent-orange);
    font-size: 28px;
    margin-top: 4px;
}

.contact-info-list p {
    margin: 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-info-list strong {
    display: block;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.contact-form-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(240, 120, 0, 0.1);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(240, 120, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(240, 120, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Map section */
.map-section {
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

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

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    body {
        font-size: 17px;
    }

    .about-grid,
    .contact-grid,
    .honor-content {
        gap: 40px;
    }

    .champion-categories {
        gap: 30px;
    }

    .marathon-date-overlay {
        top: 100px;
        right: 30px;
    }

    .date-badge {
        padding: 20px 24px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    body {
        font-size: 16px;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: clamp(2.25rem, 7vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 36px;
        font-size: 17px;
    }

    /* Marathon date overlay for mobile */
    .marathon-date-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin: -80px auto 0;
        max-width: 90%;
    }

    .date-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .date-icon {
        font-size: 3rem;
    }

    .date-value {
        font-size: 1.5rem;
    }

    /* Grid layouts stack */
    .about-grid,
    .contact-grid,
    .honor-content,
    .champion-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .champion-card.featured {
        grid-column: span 1;
    }

    .about-images {
        order: -1;
    }

    .honor-visual {
        order: -1;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-description {
        font-size: 1.1rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 32px 26px;
    }

    .map-section iframe {
        height: 350px;
    }

    .ticker-wrapper {
        padding: 0 16px;
    }

    .ticker-label {
        font-size: 15px;
    }

    .ticker-text {
        font-size: 15px;
    }

    .cta-box {
        padding: 44px 32px;
    }

    .about-content p {
        font-size: 1.05rem;
    }

    .icon-list li {
        font-size: 1.05rem;
    }

    .edition-badge {
        font-size: 16px;
    }

    .date-value {
        font-size: 1.65rem;
    }

    .date-label {
        font-size: 1.1rem;
    }

    .date-location {
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 30px 16px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 10px 22px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 32px;
        font-size: 16px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image-card:first-child {
        grid-column: span 1;
    }

    .section-badge {
        font-size: 15px;
        padding: 8px 18px;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .icon-list li {
        font-size: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 26px 22px;
    }

    .form-control {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .btn-submit {
        padding: 16px;
        font-size: 1.1rem;
    }

    .map-section iframe {
        height: 300px;
    }

    .scroll-indicator {
        display: none;
    }

    .shape {
        display: none;
    }

    .champion-card,
    .feature-card {
        padding: 26px;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .cta-box h3 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .honor-card {
        padding: 40px 30px;
        min-width: auto;
    }

    .sponsor-highlight {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .about-content p {
        font-size: 1rem;
    }

    .winner-info strong {
        font-size: 1.15rem;
    }

    .time {
        font-size: 1.05rem;
    }

    .age {
        font-size: 1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .ticker-label {
        font-size: 15px;
    }

    .ticker-text {
        font-size: 15px;
    }

    .marathon-date-overlay {
        max-width: 95%;
    }

    .date-value {
        font-size: 1.5rem;
    }

    .date-label {
        font-size: 1rem;
    }

    .date-location {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 15px;
    }
}

/* ===================================
   FOOTER STYLES
   ================================= */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.footer-section ul li {
    padding: 8px 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25%;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
}

/* Footer Images/Partners */
.footer-partners {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-partners img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-partners img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-partners {
        justify-content: center;
    }
}


/* ===================================
   AGGRESSIVE PRELOADER HIDING
   Force hide any preloader from layout/header
   ================================= */
#preloader,
.preloader,
[class*="preload"],
[id*="preload"],
.loading-screen,
.loader,
.spinner-wrapper {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

/* Ensure body is always scrollable */
body.preloader-active,
body.loading,
body.preload {
    overflow: auto !important;
}

/* ===================================
   LARGE SCREENS - 1.5X TEXT SIZE
   All body text 50% bigger on large screens
   ================================= */
@media (min-width: 1200px) {
    body {
        font-size: 27px;
        line-height: 1.75;
    }

    /* Section text */
    .section-description {
        font-size: 1.875rem;
    }

    /* Paragraphs */
    p {
        font-size: 1.725rem;
        line-height: 1.9;
    }

    .about-content p,
    .honor-text p {
        font-size: 1.725rem;
    }

    /* Lists */
    .icon-list li {
        font-size: 1.725rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-sponsor {
        font-size: 27px;
    }

    .btn-lg {
        font-size: 1.875rem;
    }

    /* Hero text */
    .hero-subtitle {
        font-size: clamp(1.95rem, 6vw, 2.625rem);
    }

    .hero-badge {
        font-size: 27px;
    }

    /* Ticker */
    .ticker-label {
        font-size: 15px;
    }

    .ticker-text {
        font-size: 15px;
    }

    /* Section badges */
    .section-badge {
        font-size: 25.5px;
    }

    /* Date badge */
    .date-label {
        font-size: 1.8rem;
    }

    .date-value {
        font-size: 3rem;
    }

    .date-location {
        font-size: 1.725rem;
    }

    /* Edition badges */
    .edition-badge {
        font-size: 25.5px;
    }

    /* Champions section */
    .winner-info strong {
        font-size: 1.875rem;
    }

    .time {
        font-size: 1.65rem;
    }

    .age {
        font-size: 1.575rem;
    }

    .stat-label {
        font-size: 1.725rem;
    }

    /* Honor section */
    .honor-text h3 {
        font-size: 3rem;
    }

    .honor-badge {
        font-size: 1.575rem;
    }

    .honor-title {
        font-size: 2.25rem;
    }

    .highlight-item {
        font-size: 1.65rem;
    }

    .honor-quote {
        font-size: 1.725rem;
    }

    /* Partner cards */
    .partner-card p {
        font-size: 1.65rem;
    }

    .become-sponsor p {
        font-size: 1.875rem;
    }

    /* Contact section */
    .contact-info-list li {
        font-size: 1.65rem;
    }

    /* Form inputs */
    .form-control {
        font-size: 1.575rem;
    }

    .btn-submit {
        font-size: 27px;
    }

    /* Feature cards */
    .feature-card p {
        font-size: 1.575rem;
    }

    /* Champion cards */
    .champion-summary p {
        font-size: 1.575rem;
    }

    /* CTA box */
    .cta-box p {
        font-size: 1.65rem;
    }

    /* Footer - Keep original sizes (no 1.5x increase) */
    footer {
        font-size: 14px;
    }

    .footer-section h4 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 1rem;
    }

    .footer-social a {
        font-size: 1.1rem;
    }

    .footer-bottom p {
        font-size: 1rem;
    }
}
