html {
    font-size: 14px;
    overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
/*  margin-bottom: 60px;*/
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --brand-orange: #ff4800;
    --brand-navy: #041016;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
}

.font-bold {
    font-weight: 700;
}

.text-orange {
    color: var(--brand-orange);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.font-inter {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.font-inria-serif {
    font-family: "Inria Serif", serif;
}

.custom2-language-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    z-index: 9999;
    max-width: 300px;
    width: 90%;
    text-align: center;
    color: #333;
}

    .custom2-language-popup.hidden {
        display: none;
    }

    .custom2-language-popup h4 {
        margin-bottom: 15px;
        font-size: 18px;
        color: #333;
    }

    .custom2-language-popup ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }

        .custom2-language-popup ul li {
            margin: 10px 0;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }

            .custom2-language-popup ul li:hover {
                background-color: #f0f0f0;
            }

#custom2-close-popup {
    background-color: var(--brand-orange);
    color: var(--white);
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

    #custom2-close-popup:hover {
        background-color: #7e3e3e;
    }


/* Listes de langues */
#custom2-language-popup ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

    #custom2-language-popup ul li {
        padding: 10px 15px;
        background-color: #f4f4f4;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
        font-weight: 500;
        text-align: center;
    }

        /* Effet au survol */
        #custom2-language-popup ul li:hover {
            background-color: #985452;
            color: #fff;
            transform: translateY(-2px);
        }

/* Basic hidden/visible states */
.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/hero-background.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 330deg, rgba(11, 29, 38, 0) 31.06%, rgba(10, 12, 13, 0.97) 95.45%, #041016 108.93% );
}

/* Navigation */
.navigation {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
}

.logo-img {
    height: 4rem;
    width: auto;
}

.nav-menu {
    display: none;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    z-index: 99999;
}

.dropdown-toggle {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s;
}

    .dropdown-toggle:hover {
        background-color: #f0f0f0;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
    margin-top: 5px;
    z-index: 1000;
    display: none;
}

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        display: block;
        padding: 10px 14px;
        text-decoration: none;
        color: #333;
        transition: background-color 0.2s;
    }

        .dropdown-menu a:hover {
            background-color: #f0f0f0;
        }

.custom2-dropdown-container {
    position: relative;
    display: inline-block;
    z-index: 999999;
    display: none;
}

.custom2-dropdown-button {
    background-color: var(--brand-orange);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .custom2-dropdown-button:hover {
        background-color: #b66d6d;
    }

.custom2-dropdown-list {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 5px 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    z-index: 99999;
}

    .custom2-dropdown-list.custom2-show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

.custom2-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .custom2-dropdown-link:hover {
        background-color: #f0f0f0;
    }

.menu-button {
    padding: 0.2rem 0.9rem !important;
    display: none;
    width: fit-content;
}

.menu-button svg {
    width: 2rem;
    height: 2rem;
}

.nav-link {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--brand-orange);
    }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    min-height: 100vh;
    padding: 0 1.5rem 8rem;
}

.hero-text {
    max-width: 64rem;
}

.hero-subtitle {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.hero-title {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--brand-orange);
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    filter: brightness(1);
    width: fit-content;
    margin-bottom: 2rem;
    transition: all 300ms;
    transform: scale(1);
}

    .cta-button:hover {
        background-color: #e63900;
        filter: brightness(1.05);
        transition: all 300ms;
        transform: scale(1.01);
    }

/* Countdown Section */
.countdown-section {
    position: relative;
    z-index: 10;
    background-color: var(--brand-navy);
    padding: 4rem 0;
}

.countdown-header {
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-subtitle {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brand-orange);
    font-weight: bold;
}

.countdown-title {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.countdown-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

hr.countdown-hr {
    width: 30%;
    border: solid 4px #ffffff !important;
    border-radius: 50px;
    background-color: #ffffff;
    margin: 0 auto;
    position: relative;
    top: 5.5rem;
    opacity: 1;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-circle {
    width: 4rem;
    height: 4rem;
    background-color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-value {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.time-label {
    color: var(--brand-orange);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.time-separator {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-size: 2.5rem;
    margin-bottom: 3.3rem;
}

.countdown-label{
    font-size: 1.2rem;
}

.countdown-cta {
    text-align: center;
    margin-top: 3rem;
}

.countdown-cta-text {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Description */
.event-description {
    background-color: var(--brand-navy);
    padding: 4rem 0;
}

.event-text {
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.description-text {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    position: relative;
}

.video-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Orange CTA Section */
.orange-cta-section {
    background-color: var(--brand-orange);
    padding: 4rem 0;
}

.orange-cta-text {
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.orange-text {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Three Pillars Section */
.pillars-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.pillars-title {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.pillar {
    text-align: center;
}

.pillar-title {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--brand-orange);
    margin: 0 auto 1.5rem;
}

.pillar-subtitle {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.pillar-text {
    color: var(--brand-navy);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.pillar-button {
    background-color: var(--brand-orange);
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    width: fit-content;
    margin: auto auto;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* Leadership Section */
.leadership-section {
    position: relative;
}

.leadership-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.leadership-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.leadership-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 0rem;
}

.leadership-subtitle {
    color: var(--brand-navy);
    font-family: "Inter", sans-serif;
    font-size: 1.3rem !important;
    margin-bottom: 1.75rem;
}

.leadership-title {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.leadership-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--brand-orange);
    margin: 0 auto 2rem;
}

.leadership-text {
    color: var(--brand-navy);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    max-width: 72rem;
    line-height: 1.6;
}

/* Speakers Section */
.speakers-section {
/*    padding: 4rem 0;*/
}

.speaker-header {
    background-color: var(--brand-navy);
    padding-top: 2.8rem;
    padding-bottom: 0.2rem;
}

.speakers-title {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.speakers-subtitle {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem 2rem;
    margin-bottom: 4rem;
    margin-top: 6rem;
}

.speaker {
    transition: all 300ms;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 2rem;
    background: #ff480000;
}

    .speaker:hover {
        transition: all 300ms;
        background: #ff480010;
    }

.speaker-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.speaker-bg {
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
    background-color: var(--brand-orange);
    border-radius: 1rem;
}

.speaker-photo {
    position: absolute;
    inset: 0;
    width: 16rem;
    height: 16rem;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 1rem;
}

.speaker-name {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.speaker-divider {
    width: 4rem;
    height: 0.125rem;
    background-color: var(--gray-400);
    margin: 0 auto 1rem;
}

.speaker-bio {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 0.875rem;
}

.speakers-cta {
    text-align: right;
}

.speaker.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 40rem;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Participation Section */
.participation-section {
    background-color: var(--brand-orange);
    padding: 4rem 0;
    margin-top: 6rem;
}

.participation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.participation-blank {
    width: 30%;
}

.participation-image {
    flex: 1;
    position: absolute;
    left: -180px;
    bottom: -96px;
}

.participation-img {
    width: 100%;
    height: auto;
}

.participation-text {
    flex: 2;
    text-align: center;
}

.participation-title {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
    text-align: center;
}

.participation-description {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
}

/* Network Section */
.network-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.network-title {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.network-item {
    text-align: center;
}

.network-text {
    color: var(--brand-navy);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

.network-text-1 {
    border-right: solid 2px #00000050;
    height: 12rem;
}

.network-text-3 {
    border-left: solid 2px #00000050;
}

.network-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--gray-300);
    border-radius: 50%;
    transition: all 300ms;
}

    .dot.active, .dot:hover {
        background-color: var(--brand-orange);
        transition: all 300ms;
        cursor: pointer;
    }

.network-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 6.5rem;
}

.stat-number {
    text-align: center;
}

.stat-value {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 10rem !important;
}

.stat-label {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.network-cta {
    text-align: center;
}

.cta-title {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 3.975rem !important;
    margin-bottom: 2rem;
}

/* Partners Section */
.partners-section {
    background-color: var(--brand-navy);
    padding: 4rem 0;
}

.partners-title {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.partner {
    text-align: center;
}

.partner-logo {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-size: 2.5rem;
    font-weight: 300;
}

.partners-description {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 1.125rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

/* Community Section */
.community-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.community-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.community-image {
    flex: 1;
    position: absolute;
    left: -21rem;
    bottom: -6rem;
}

.community-blank {
    width: 40%;
}

.community-img {
    width: 98%;
    height: auto;
}

.community-text {
    flex: 1;
    text-align: center;
}

.community-title {
    color: var(--brand-navy);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.7));
}

.community-description {
    color: var(--brand-navy);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--brand-navy);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    text-align: left;
}

.footer-title {
    color: var(--brand-orange);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-nav {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.footer-grid {

}

.nav-items {
    margin-bottom: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.nav-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--brand-orange);
    border-radius: 50%;
    margin-right: 1rem;
}

.nav-text {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 300ms;
}
    
    .nav-text:hover {
        color: var(--brand-orange);
        transition: all 300ms;
    }

.social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.social-link-img {
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    position: relative;
    bottom: 3px;
    margin-right: 1rem;
}

.social-links-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.social-divider {
    width: 1px;
    height: 1.5rem;
    background-color: var(--gray-500);
}

.social-links-row a {
    text-decoration: none;
    color: white;
}

.eco-text {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--white);
    padding-top: 2rem;
}

.copyright {
    color: var(--white);
    font-family: "Inria Serif", serif;
    font-style: italic;
    font-size: 0.875rem;
    text-align: left;
}

.copyright a{
    color: var(--white);
    text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .menu-button {
        display: block;
        width: fit-content !important;
        position: relative;
        top: 1rem;
    }


    .dropdown-menu {
        background: #ff480080;
        color: white;
        font-size: 1.15rem;
    }

    .drop-menu:hover {
        position: relative;
        z-index: 9999;
    }

    .custom2-dropdown-container {
        display: block;
        z-index: 99999;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 4rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-button-container {
        width: 100%;
    }

    .cta-button {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
        display: block;
        width: 100%;
    }

    .time-circle {
        width: 3rem;
        height: 3rem;
    }

    .time-value {
        font-size: 1.25rem;
    }

    .time-separator {
        font-size: 2rem;
    }

    .pillars-title,
    .speakers-title,
    .partners-title {
        font-size: 2rem;
    }

    .speaker.horizontal {
        flex-direction: column;
        width: 100%;
    }

    .speakers-subtitle {
        padding: 1rem 2rem;
    }

    .pillar-button {
        width: 100% !important;
    }

    .speaker

    .leadership-title {
        font-size: 2rem;
    }

    .participation-title {
        font-size: 2rem;
    }

    .participation-image {
        display: none;
    }

    .network-title {
        font-size: 2rem;
    }

    .network-text {
        border: none;
        height: auto;
        border-bottom: solid 2px #00000050;
        padding-bottom: 3rem;
    }

    .stat-value {
        font-size: 7rem !important;
    }

    .stat-label {
        font-size: 2rem !important;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .speaker-photo,
    .speaker-bg {
        width: 12rem;
        height: 12rem;
    }

    .community-image {
        display: none;
    }

    .social-links-row {
        flex-direction: column;
    }

    .eco-text {
        text-align: center;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .navigation {
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        display: flex;
        gap: 2rem;
    }

    .logo-img {
        height: 5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 3rem;
    }


    .cta-button {
        font-size: 1.5rem;
        padding: 1.25rem 2.5rem;
    }

    .time-circle {
        width: 6rem;
        height: 6rem;
    }

    .time-value {
        font-size: 2.5rem;
    }

    .time-label {
        font-size: 1.125rem;
    }

    .time-separator {
        font-size: 3.75rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .network-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .participation-content {
        flex-direction: row;
    }

    .participation-text {
        text-align: left;
    }

    .community-content {
        flex-direction: row;
    }

    .community-text {
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .network-stats {
        flex-direction: row;
        align-items: flex-end;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .navigation {
        padding: 1.5rem 4rem;
    }

    .nav-menu {
        gap: 3rem;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .logo-img {
        height: 6rem;
    }

    .hero-content {
        padding: 0 4rem 8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .cta-button {
        font-size: 1.875rem;
        padding: 1.5rem 4rem;
    }

    .countdown-section {
        padding: 6rem 0;
    }

    .countdown-subtitle {
        font-size: 1.5rem;
    }

    .countdown-title {
        font-size: 3rem;
    }

    .time-circle {
        width: 8rem;
        height: 8rem;
    }

    .time-value {
        font-size: 3.75rem;
    }

    .time-label {
        font-size: 1.5rem;
    }

    .time-separator {
        font-size: 5rem;
    }

    .countdown-cta-text {
        font-size: 1.5rem;
    }

    .event-description {
        padding: 6rem 0;
    }

    .description-text {
        font-size: 1.5rem;
    }

    .orange-cta-section {
        padding: 6rem 0;
    }

    .orange-text {
        font-size: 1.5rem;
    }

    .pillars-section {
        padding: 6rem 0;
    }

    .pillars-title {
        font-size: 3.75rem;
        margin-bottom: 6rem;
    }

    .pillar-title {
        font-size: 2.25rem;
    }

    .pillar-subtitle {
        font-size: 1.25rem;
    }

    .pillar-text {
        font-size: 1.125rem;
    }

    .leadership-subtitle {
        font-size: 1.5rem;
    }

    .leadership-title {
        font-size: 4.5rem;
    }

    .leadership-text {
        font-size: 1.25rem;
    }

    .speakers-section {
        padding: 6rem 0;
    }

    .speakers-title {
        font-size: 3.75rem;
    }

    .speakers-subtitle {
        font-size: 1.25rem;
    }

    .speaker-name {
        font-size: 1.5rem;
    }

    .speaker-bio {
        font-size: 1rem;
    }

    .participation-section {
        padding: 6rem 0;
    }

    .participation-title {
        font-size: 3.75rem;
    }

    .participation-description {
        font-size: 1.5rem;
    }

    .network-grid {

    }
    
    .network-section {
        padding: 6rem 0;
    }

    .network-title {
        font-size: 3.75rem;
    }

    .network-text {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 5rem;
    }

    .stat-label {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 3rem;
    }

    .partners-section {
        padding: 6rem 0;
    }

    .partners-title {
        font-size: 3.75rem;
    }

    .partner-logo {
        font-size: 3.75rem;
    }

    .partners-description {
        font-size: 1.25rem;
    }

    .community-section {
        padding: 6rem 0;
    }

    .community-title {
        font-size: 3rem;
    }

    .community-description {
        font-size: 1.5rem;
    }

    .footer {
        padding: 5rem 0;
    }

    .footer-title {
        font-size: 2.25rem;
    }

    .footer-description {
        font-size: 1.125rem;
    }

    .nav-text {
        font-size: 1.875rem;
    }

    .social-link {
        font-size: 1.5rem;
    }
}

/* Extra Large Desktop */
@media (min-width: 1280px) {
    .hero-title {
        font-size: 6rem;
    }

    .leadership-title {
        font-size: 5.5rem;
    }
}
