/* ==================================================
   RESET
================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;

    color:#A71930;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.88)
        ),
        url("images/kilimanjaro.png");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    background-repeat: no-repeat;
}


body.popup-open {
    overflow: hidden;
}


a {
    text-decoration: none;

    color: inherit;
}


button,
input {
    font-family: inherit;
}


/* ==================================================
   CONTAINERS
================================================== */

.section-container,
.nav-container,
.footer-container {

    width: 92%;

    max-width: 1200px;

    margin: auto;
}


/* =========================================================
   RESPONSIVE NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    background: #A71930;

    z-index: 9999;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1280px;
    height: 100%;

    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.nav-logo {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;
    text-decoration: none;

    font-size: 30px;
    font-weight: 800;

    z-index: 10001;
}

.nav-logo img {
    width: 80px;
    height: 80px;

    object-fit: contain;

    position: relative;
    top: 8px;

    filter:
        drop-shadow(
            0 5px 8px rgba(0, 0, 0, 0.35)
        );
}

.nav-logo span {
    white-space: nowrap;
}

.nav-logo b {
    color: #FFD21C;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 38px;
}

.nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #FFD21C;
}


/* =========================================================
   REGISTER BUTTON
========================================================= */

.nav-register {
    border: none;

    background: #FFD21C;
    color: #003B29 !important;

    padding: 14px 28px;

    border-radius: 30px;

    font-weight: 800 !important;

    cursor: pointer;

    transition: 0.3s ease;
}

.nav-register:hover {
    background: #ffffff;

    color: #003B29 !important;

    transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    z-index: 10002;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background: #ffffff;

    border-radius: 5px;

    transition: 0.3s ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .nav-register {
        padding: 12px 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .navbar {
        height: 72px;
    }

    .nav-container {
        height: 72px;

        padding: 0 18px;
    }


    /* Logo */

    .nav-logo {
        font-size: 23px;

        gap: 8px;
    }

    .nav-logo img {
        width: 65px;
        height: 65px;

        top: 8px;
    }


    /* Show hamburger */

    .menu-toggle {
        display: block;
    }


    /* Mobile menu */

    .nav-links {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px 20px 25px;

        background: #A71930;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.15);

        box-shadow:
            0 10px 25px
            rgba(0, 0, 0, 0.25);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    /* Open menu */

    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    /* Mobile links */

    .nav-links a {
        width: 100%;

        padding: 14px 10px;

        text-align: center;

        font-size: 16px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.08);
    }


    /* Mobile register */

    .nav-register {
        width: 100%;

        margin-top: 15px;

        padding: 14px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .navbar {
        height: 68px;
    }

    .nav-container {
        height: 68px;

        padding: 0 14px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-logo img {
        width: 58px;
        height: 58px;

        top: 7px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .menu-toggle span {
        width: 26px;
    }

    .nav-links {
        top: 68px;
    }

}

/* ==================================================
   HERO
================================================== */

.hero {

    position: relative;
    width: 100%;
    min-height: 400px;

    display: flex;

    align-items: center;

    padding:
        120px 0 80px;

    background:
        url("images/sports-background.png");
   

    background-size: cover;

    background-position: center;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgb(167, 25, 48, 0.67),
            rgba(3, 35, 18, 0.67),
            rgba(3, 35, 18, 0.25)
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    width: 92%;

    max-width: 1200px;

    margin: auto;

    color: white;
}


.event-badge {

    display: inline-block;

    padding:
        8px 16px;

    margin-bottom: 20px;

    border:
        1px solid
        rgba(244, 196, 48, 0.7);

    border-radius: 50px;

    color: #f4c430;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.hero h1 {

    max-width: 800px;

    margin-bottom: 25px;

    font-size:
        clamp(48px, 7vw, 88px);

    line-height: 0.98;

    font-weight: 900;
}


.hero h1 span {

    display: block;

    color: #f4c430;
}


.hero-intro {

    max-width: 700px;

    margin-bottom: 12px;

    font-size: 22px;

    font-weight: 700;
}


.hero-description {

    max-width: 680px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 17px;
}


.hero-info {

    display: flex;

    gap: 15px;

    max-width: 800px;

    margin-bottom: 30px;
}


.info-card {

    flex: 1;

    padding: 16px;

    border:
        1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.11);

    backdrop-filter: blur(8px);
}


.info-card strong {

    display: block;

    margin-bottom: 5px;

    color: #f4c430;

    font-size: 12px;
}


.info-card span {

    display: block;

    font-size: 14px;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* ==================================================
   BUTTONS
================================================== */

.btn {

    display: inline-block;

    padding:
        14px 24px;

    border: none;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 900;

    cursor: pointer;

    transition: 0.3s;
}


.btn-primary {

    background: #f4c430;

    color: #A71930;
}


.btn-primary:hover {

    background: white;

    transform:
        translateY(-3px);
}


.btn-outline {

    border:
        2px solid white;

    color: white;
}


.btn-outline:hover {

    background: white;

    color: #A71930;
}


/* ==================================================
   GENERAL SECTIONS
================================================== */

.section {

    padding:
        90px 0;

    background:
        rgba(255, 255, 255, 0.94);
}


.section-heading {

    max-width: 750px;

    margin:
        0 auto 50px;

    text-align: center;
}


.section-heading span,
.section-label {

    color: #A71930;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;
}


.section-heading h2 {

    margin:
        8px 0 15px;

    color: #082d18;

    font-size:
        clamp(32px, 5vw, 50px);

    line-height: 1.1;

    font-weight: 900;
}


.section-heading p {

    color: #5c675f;

    font-size: 16px;
}


/* ==================================================
   COUNTDOWN
================================================== */

.countdown-section {

    padding:
        70px 0;

    background: #082d18;

    color: white;
}


.countdown-section
.section-heading h2 {

    color: white;
}


.countdown-section
.section-heading p {

    color:
        rgba(255, 255, 255, 0.7);
}


.countdown {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    max-width: 800px;

    margin: auto;
}


.count-box {

    padding: 25px 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.08);

    text-align: center;
}


.count-box strong {

    display: block;

    color: #f4c430;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;
}


.count-box span {

    display: block;

    margin-top: 8px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* ==================================================
   ABOUT CARDS
================================================== */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.feature-card {

    padding:
        30px 22px;

    border-bottom:
        4px solid #f4c430;

    border-radius: 12px;

    background: white;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.08);

    text-align: center;

    transition: 0.3s;
}


.feature-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.13);
}


.feature-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 18px;

    border-radius: 50%;

    background: #edf5ef;

    font-size: 30px;
}


.feature-card h3 {

    margin-bottom: 10px;

    color: #082d18;

    font-size: 19px;
}


.feature-card p {

    color: #657067;

    font-size: 14px;
}


/* ==================================================
   FESTIVAL
================================================== */

.festival-section {

    position: relative;

    padding:
        100px 0;

    background:
        url("images/kilimanjaro.png");

    background-size: cover;

    background-position: center;

    color: white;
}


.festival-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(4, 38, 21, 0.90);
}


.festival-content {

    position: relative;

    z-index: 2;
}


.section-heading.light h2 {

    color: white;
}


.section-heading.light p {

    color:
        rgba(255, 255, 255, 0.75);
}


.section-heading.light span {

    color: #f4c430;
}


.festival-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.festival-card {

    min-height: 250px;

    padding:
        30px 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);
}


.festival-card .number {

    display: block;

    margin-bottom: 25px;

    color: #f4c430;

    font-size: 14px;

    font-weight: 900;
}


.festival-card h3 {

    margin-bottom: 12px;

    font-size: 21px;
}


.festival-card p {

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 14px;
}


/* ==================================================
   PLAYER CARE
================================================== */

.care-section {

    background: #f5f8f5;
}


.care-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.care-card {

    padding:
        30px 22px;

    border-radius: 12px;

    background: white;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.06);

    text-align: center;
}


.care-icon {

    margin-bottom: 15px;

    font-size: 35px;
}


.care-card h3 {

    margin-bottom: 10px;

    color: #082d18;
}


.care-card p {

    color: #68736c;

    font-size: 14px;
}


/* ==================================================
   PREPARATION
================================================== */

.preparation-section {

    padding:
        90px 0;

    background: #edf5ef;
}


.preparation-content {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}


.preparation-content h2 {

    margin:
        10px 0 20px;

    color: #082d18;

    font-size:
        clamp(32px, 5vw, 52px);

    line-height: 1.05;
}


.preparation-content p {

    max-width: 550px;

    color: #5d685f;
}


.checklist {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


.checklist div {

    padding: 15px;

    border-radius: 8px;

    background: white;

    color: #082d18;

    font-weight: 700;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.05);
}

/* ==================================================
   LOCATION SECTION
================================================== */

.location-section {
    position: relative;
    min-height: 700px;
    padding: 100px 20px;
    background-image: url("images/kilimanjaro.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 35, 0.72);
    z-index: 1;
}

.location-content {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Venue information */

.location-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.location-label {
    display: inline-block;
    color: #087443;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.location-box h2 {
    margin: 0 0 15px;
    color: #A71930;
    font-size: 38px;
    line-height: 1.15;
}

.location-place {
    color: #555;
    font-size: 21px;
    margin-bottom: 30px;
}

.location-date {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 20px;
    border-left: 5px solid #ffd21c;
    background: #f5f5f5;
}

.location-date strong {
    color: #A71930;
    font-size: 18px;
}

.location-date span {
    color: #666;
    font-size: 15px;
}


/* Google Map */

.location-map {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

    .location-section {
        padding: 70px 15px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-box {
        padding: 30px 25px;
    }

    .location-box h2 {
        font-size: 28px;
    }

    .location-place {
        font-size: 18px;
    }

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


/* ==================================================
   REGISTER SECTION
================================================== */

.register-section {
    padding:
        95px 0;
    background:
        url("images/kilimanjaro.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*background: #f4c430;*/
}


.register-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    border-radius: 15px;

    background: #A71935;

    color: white;
}


.register-box > div {

    max-width: 700px;
}


.register-box span {

    color: #f4c430;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 2px;
}


.register-box h2 {

    margin:
        8px 0 12px;

    font-size:
        clamp(30px, 5vw, 48px);

    line-height: 1.1;
}


.register-box p {

    color:
        rgba(255, 255, 255, 0.72);
}


/* ==================================================
   FOOTER
================================================== */

.footer {

    padding:
        45px 0;

    background: #A71930;

    color: white;

    text-align: center;
}


.footer-logo {

    color: #f4c430;

    font-size: 28px;

    font-weight: 900;

    letter-spacing: 2px;
}


.footer p {

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.65);
}


.footer .copyright {

    margin-top: 20px;

    font-size: 12px;
}


/* ==================================================
   ANNOUNCEMENT POPUP
================================================== */

.popup-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(5px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}


.popup-overlay.active {

    opacity: 1;

    visibility: visible;
}


.popup-box {

    position: relative;

    width: 100%;

    max-width: 560px;

    max-height: 90vh;

    overflow-y: auto;

    padding:
        45px 40px 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2f8f3
        );

    text-align: center;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.35);

    transform:
        scale(0.8)
        translateY(30px);

    transition:
        transform 0.4s ease;
}


.popup-overlay.active
.popup-box {

    transform:
        scale(1)
        translateY(0);
}


.popup-close,
.form-popup-close {

    position: absolute;

    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: #082d18;

    color: white;

    font-size: 28px;

    cursor: pointer;

    transition: 0.3s;
}


.popup-close:hover,
.form-popup-close:hover {

    background: #f4c430;

    color: #082d18;

    transform:
        rotate(90deg);
}


.popup-icon {

    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 15px;

    border-radius: 50%;

    background: #f4c430;

    font-size: 38px;
}


.popup-box h2 {

    color: #082d18;

    font-size: 38px;

    font-weight: 900;
}


.popup-box h3 {

    margin:
        4px 0 15px;

    color: #A71930;

    font-size: 19px;
}


.popup-box > p {

    margin-bottom: 22px;

    color: #59645d;

    font-size: 16px;

    line-height: 1.7;
}


.popup-details {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-bottom: 25px;
}


.popup-details div {

    padding:
        15px 12px;

    border-left:
        4px solid #f4c430;

    border-radius: 10px;

    background: #edf5ef;
}


.popup-details strong {

    display: block;

    margin-bottom: 5px;

    color: #082d18;

    font-size: 13px;
}


.popup-details span {

    display: block;

    color: #58635b;

    font-size: 13px;

    line-height: 1.4;
}


.popup-button {

    display: block;

    width: 100%;

    padding:
        15px 20px;

    border: none;

    border-radius: 8px;

    background: #A71930;

    color: white;

    font-size: 15px;

    font-weight: 900;

    cursor: pointer;

    transition: 0.3s;
}


.popup-button:hover {

    background: #f4c430;

    color: #082d18;

    transform:
        translateY(-2px);
}


.popup-later {

    margin-top: 12px;

    border: none;

    background: transparent;

    color: #667168;

    font-size: 14px;

    cursor: pointer;

    text-decoration: underline;
}


/* ==================================================
   REGISTRATION FORM POPUP
================================================== */

.form-popup-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(6px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 10000;
}


.form-popup-overlay.active {

    opacity: 1;

    visibility: visible;
}


.form-popup-box {

    position: relative;

    width: 100%;

    max-width: 560px;

    max-height: 94vh;

    overflow-y: auto;

    padding: 40px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f1f7f3
        );

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.4);

    transform:
        translateY(30px)
        scale(0.92);

    transition:
        transform 0.35s ease;
}


.form-popup-overlay.active
.form-popup-box {

    transform:
        translateY(0)
        scale(1);
}


/* FORM HEADER */

.form-popup-header {

    margin-bottom: 25px;

    text-align: center;
}


.form-popup-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 12px;

    border-radius: 50%;

    background: #f4c430;

    font-size: 30px;
}


.form-popup-header > span {

    color: #A71930;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.form-popup-header h2 {

    margin:
        5px 0 8px;

    color: #082d18;

    font-size: 34px;

    font-weight: 900;
}


.form-popup-header p {

    color: #68736c;

    font-size: 14px;

    line-height: 1.6;
}


/* FORM GROUP */

.form-group {

    margin-bottom: 20px;
}


.form-group > label {

    display: block;

    margin-bottom: 8px;

    color: #082d18;

    font-size: 14px;

    font-weight: 800;
}


/* INPUT */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {

    width: 100%;

    height: 50px;

    padding:
        0 15px;

    border:
        1px solid #d3ddd5;

    border-radius: 8px;

    outline: none;

    background: white;

    color: #172018;

    font-size: 14px;

    transition: 0.3s;
}


.form-group input:focus {

    border-color: #A71930;

    box-shadow:
        0 0 0 3px
        rgba(8, 117, 47, 0.1);
}


.form-group input::placeholder {

    color: #9aa39d;
}


/* ==================================================
   AGE OPTIONS
================================================== */

.age-options {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.radio-option {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 52px;

    padding: 10px;

    border:
        1px solid #d3ddd5;

    border-radius: 8px;

    background: white;

    color: #082d18;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}


.radio-option:hover {

    border-color: #A71930;

    background: #f0f7f2;
}


.radio-option input {

    position: absolute;

    opacity: 0;
}


.radio-custom {

    width: 18px;
    height: 18px;

    position: relative;

    border:
        2px solid #9ba79f;

    border-radius: 50%;
}


.radio-option input:checked
~ .radio-custom {

    border-color: #A71930;
}


.radio-option input:checked
~ .radio-custom::after {

    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #A71930;
}


/* ==================================================
   FORM BUTTONS
================================================== */

.form-buttons {

    display: grid;

    grid-template-columns:
        1fr 2fr;

    gap: 10px;

    margin-top: 25px;
}


.reset-button,
.submit-button {

    min-height: 50px;

    border: none;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;

    transition: 0.3s;
}


.reset-button {

    background: #e8ece9;

    color: #A71934;
}


.reset-button:hover {

    background: #dce2dd;
}


.submit-button {

    background: #A71930;

    color: white;
}


.submit-button:hover {

    background: #A71930;

    transform:
        translateY(-2px);
}


/* ==================================================
   FORM MESSAGE
================================================== */

.form-message {

    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 7px;

    text-align: center;

    font-size: 13px;

    font-weight: 700;
}


.form-message.success {

    display: block;

    background: #e7f6eb;

    color: #A71930;
}


.form-message.error {

    display: block;

    background: #fdeaea;

    color: #a32020;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .feature-grid,
    .festival-grid,
    .care-grid {

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

}


/* ==================================================
   MOBILE NAV
================================================== */

@media (max-width: 800px) {

    .menu-toggle {

        display: block;
    }


    .nav-menu {

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #082d18;
    }


    .nav-menu.active {

        display: flex;
    }


    .nav-menu a {

        padding: 14px;

        text-align: center;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.08);
    }


    .nav-register {

        width: 100%;

        margin-top: 10px;
    }


    .hero-info {

        flex-direction: column;
    }


    .preparation-content {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .register-box {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .hero {

        min-height: auto;

        padding:
            140px 0 80px;
    }


    .hero h1 {

        font-size:
            clamp(45px, 13vw, 65px);
    }


    .hero-intro {

        font-size: 18px;
    }


    .hero-description {

        font-size: 15px;
    }


    .feature-grid,
    .festival-grid,
    .care-grid {

        grid-template-columns: 1fr;
    }


    .countdown {

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


    .location-box {

        padding:
            30px 25px;
    }


    .checklist {

        grid-template-columns: 1fr;
    }


    .popup-box {

        max-width: 95%;

        padding:
            40px 25px 28px;
    }


    .popup-box h2 {

        font-size: 32px;
    }


    .popup-box h3 {

        font-size: 17px;
    }


    .popup-box > p {

        font-size: 15px;
    }


    .popup-details {

        grid-template-columns: 1fr;
    }


    .form-popup-box {

        max-width: 95%;

        padding:
            38px 25px 28px;
    }


    .form-popup-header h2 {

        font-size: 30px;
    }


    .age-options {

        grid-template-columns: 1fr;
    }


    .radio-option {

        justify-content: flex-start;

        padding-left: 15px;
    }

}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 480px) {

    .section {

        padding:
            65px 0;
    }


    .hero {

        padding:
            125px 0 65px;
    }


    .hero h1 {

        font-size: 43px;
    }


    .hero-buttons {

        flex-direction: column;
    }


    .hero-buttons .btn {

        width: 100%;

        text-align: center;
    }


    .count-box {

        padding:
            20px 10px;
    }


    .count-box strong {

        font-size: 32px;
    }


    .register-box {

        padding:
            30px 22px;
    }


    .register-box .btn {

        width: 100%;

        text-align: center;
    }


    .popup-overlay,
    .form-popup-overlay {

        padding: 10px;
    }


    .popup-box,
    .form-popup-box {

        width: 100%;

        max-height: 94vh;

        padding:
            35px 18px 22px;

        border-radius: 15px;
    }


    .popup-close,
    .form-popup-close {

        top: 8px;
        right: 9px;

        width: 35px;
        height: 35px;

        font-size: 24px;
    }


    .popup-icon,
    .form-popup-icon {

        width: 60px;
        height: 60px;

        font-size: 30px;
    }


    .popup-box h2 {

        font-size: 28px;
    }


    .popup-box h3 {

        font-size: 15px;
    }


    .popup-box > p {

        font-size: 14px;

        line-height: 1.55;
    }


    .form-popup-header h2 {

        font-size: 27px;
    }


    .form-popup-header p {

        font-size: 13px;
    }


    .form-buttons {

        grid-template-columns: 1fr;
    }


    .reset-button,
    .submit-button {

        width: 100%;
    }

}


/* ==================================================
   VERY SMALL PHONES
================================================== */

@media (max-width: 350px) {

    .hero h1 {

        font-size: 37px;
    }


    .count-box strong {

        font-size: 27px;
    }


    .popup-box h2 {

        font-size: 25px;
    }


    .form-popup-header h2 {

        font-size: 24px;
    }

}

