@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');


:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --bg-light: #F9F9F9;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bees-badge {
    background-color: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    line-height: 1.1;
    padding: 8px 10px;
    border-radius: 4px;
    text-align: center;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: #333;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #444;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-partner {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-partner:hover {
    background-color: var(--primary);
    color: white;
}

.badge-sl {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(200, 20, 20, 0.9), rgba(200, 20, 20, 0.9)), url('assets/hero_bg.jpg') center/cover no-repeat;
    padding: 100px 20px 140px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.hero h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-solid-white {
    background-color: white;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-solid-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
}

/* Stats Box (Flat section, no overlap) */
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 80px 40px;
    position: relative;
    z-index: 10;
}

.stats-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.stat-item h3 {
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 4.8rem;
    color: #D2232A;
    margin-bottom: 12px;
    line-height: 0.9;
    letter-spacing: 1px;
}

.stat-item p {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0;
}

.stat-highlight {
    color: #D2232A;
    font-weight: 600;
}

.stat-detail {
    color: #333333;
    font-weight: 600;
}

.stats-footer {
    text-align: center;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    color: #111111;
    border-top: none;
    padding-top: 0;
    margin-top: 20px;
}

/* What is BEES Section */
.what-is-bees {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.what-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #D2232A;
    margin-bottom: 40px;
}

.what-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.what-title-block {
    flex: 1;
    padding: 50px;
    color: white;
    display: flex;
    align-items: center;
}

.what-title-block h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.what-logo-block {
    width: 250px;
    flex: 0 0 250px;
    background-color: #D2232A;
    display: flex;
    align-items: stretch;
    /* border-left: 12px solid #ffffff; */
}

.what-logo-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.what-intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.what-intro span {
    color: var(--primary);
    font-weight: 700;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.target-card {
    background-color: var(--primary);
    color: white;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.what-footer-desc {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
}

/* Marquee / Ticker Tape */
.marquee-container {
    background-color: var(--primary);
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 80px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    padding: 0 30px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

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

/* Format Section */
.format-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.format-section h2 {
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 5rem;
    color: #D2232A;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-wrapper {
    position: relative;
    padding: 100px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 10px;
    background-color: #D2232A;
    z-index: 1;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.timeline-item {
    text-align: center;
    position: relative;
    padding: 0 15px;
    height: 240px;
}

.timeline-node {
    width: 44px;
    height: 44px;
    background-color: #D2232A;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #D2232A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.timeline-node .node-star {
    width: 22px;
    height: 22px;
}

.timeline-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
}

.timeline-content .red-title {
    color: #D2232A;
    font-weight: 700;
}

.timeline-content .dark-desc {
    color: #333333;
    font-weight: 500;
}

.timeline-item:nth-child(odd) .timeline-content {
    top: 25px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    border-left: 2px dashed #D2232A;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    top: -45px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    height: 120px;
    border-left: 2px dashed #D2232A;
    z-index: 2;
}

/* Access Model Section */
.access-model {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.access-card {
    background-color: white;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: visible;
    box-shadow: none;
    margin-top: 40px;
}

.access-label {
    background-color: #D2232A;
    color: white;
    padding: 20px 25px;
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 0.95;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    position: relative;
    border-radius: 4px 0 0 4px;
}

.access-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 2;
}

.access-points {
    flex: 1;
    padding: 10px 40px;
    list-style-type: disc;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-points li {
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111111;
    line-height: 1.5;
}

.access-points li:last-child {
    margin-bottom: 0;
}

.access-points li .red-text {
    color: #D2232A;
    font-weight: 700;
}

.access-points li .star-char {
    color: #D2232A;
    margin-left: 5px;
    font-size: 16px;
}

.access-action {
    display: flex;
    align-items: center;
    padding: 20px 40px;
}

.btn-delegate {
    background-color: #D2232A;
    color: white;
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 2.4rem;
    padding: 12px 35px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    line-height: 1;
}

.btn-delegate:hover {
    background-color: #b01c22;
}

/* Awards Section */
.awards-section {
    background-color: #D2232A;
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/BEES 2026 (1).png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.awards-title {
    font-family: 'Bebas Neue', var(--font-heading);
    font-weight: 400;
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
}

.awards-title .gold-text {
    color: #FFE885;
}

.awards-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 25px;
}

.awards-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-nominations {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-nominations:hover {
    background-color: white;
    color: #D2232A;
}

.awards-media {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
    min-height: 480px;
}

.awards-media::before {
    content: '';
    position: absolute;
    bottom: 25px;
    width: 380px;
    height: 140px;
    background-color: #b3191f;
    border: 6px solid #d2262d;
    border-radius: 50%;
    z-index: 1;
}

.trophy-img {
    max-width: 85%;
    height: auto;
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
}

/* Footer styling */
footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .timeline-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-node {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        margin-bottom: 10px;
    }

    .timeline-item.above .timeline-content,
    .timeline-item.below .timeline-content {
        margin: 0;
        transform: none;
    }

    .access-card {
        flex-direction: column;
        align-items: stretch;
    }

    .access-label::after {
        display: none;
    }

    .access-action {
        text-align: center;
    }

    .awards-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .awards-media {
        order: -1;
    }

    .trophy-img {
        max-width: 300px;
    }

    .what-header {
        flex-direction: column;
    }

    .what-logo-block {
        width: 100%;
        border-left: none;
        border-top: 5px solid #fff;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

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

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

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