/* =========================
   HEADER
========================= */
.site-header {
    background-color: transparent;
}


.header {
    min-height: 70px;
    /* background-color: transparent; */
}

/* Logo */
.header-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* Navigation */
.header-nav {
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333 !important;
    font-size: 18px;
    white-space: nowrap;
    padding: 5px 0 !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ED0E47 !important;
}

/* Download Button */
.download-btn {
    background-color: #ED0E47;
    color: #fff;
    border-radius: 16px;
    border: 0;
    font-size: 20px;
    padding: 7px 20px !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: #d90c40;
}


/* =========================
   TABLET
   768px - 991px
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .header-logo {
        max-width: 150px;
    }

    .header-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 12px;
    }

    .download-btn {
        font-size: 15px;
        padding: 6px 14px !important;
        border-radius: 13px;
    }
}


/* =========================
   DESKTOP
   992px+
========================= */

@media (min-width: 992px) {

    .header-nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 14px;
    }

    .download-btn {
        font-size: 20px;
    }
}


@media (min-width: 1400px) {


    .nav-link {
        font-size: 16px;
    }

}


/* =========================
   MOBILE
   Below 768px
========================= */

@media (max-width: 767.98px) {

    .header {
        min-height: 60px;
    }

    .header-logo {
        max-width: 140px;
    }

    .download-btn {
        font-size: 14px;
        padding: 6px 12px !important;
        border-radius: 12px;
    }
}


/* =========================
   VERY SMALL MOBILE
   Below 400px
========================= */

@media (max-width: 399.98px) {

    .header-logo {
        max-width: 120px;
    }

    .download-btn {
        font-size: 12px;
        padding: 5px 9px !important;
        border-radius: 10px;
    }
}


/* =========================================
   Mobile Hamburger
========================================= */

.mobile-menu-btn {
    border: none;
    background: transparent;
    padding: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: none;
}


/* =========================================
   Mobile Sidebar
========================================= */

.mobile-sidebar {
    width: 300px !important;
    background-color: #ffffff;
}


/* Sidebar Header */

.mobile-sidebar .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
}

.mobile-sidebar-logo {
    width: 130px;
    height: auto;
}


/* Close Button */

.sidebar-close {
    border: none;
    background: transparent;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    color: #1A1A1A;
    cursor: pointer;
}


/* =========================================
   Mobile Navigation
========================================= */

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    width: 100%;
    margin-bottom: 8px;
}

.mobile-nav li a {
    display: block;
    width: 100%;
    padding: 13px 15px;
    border-radius: 8px;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav li a:hover {
    background-color: #FFE8EE;
    color: #ED1744;
}


/* =========================================
   Mobile Download Button
========================================= */

.mobile-download-wrapper {
    margin-top: 30px;
}

.mobile-download-btn {
    width: 100%;
    border: none;
}


/* =========================================
   Mobile Only
========================================= */

@media (min-width: 768px) {

    .mobile-sidebar {
        display: none !important;
    }

}

.header-nav .nav-link {
    position: relative;
    color: #1A1A1A;
    padding-bottom: 8px;
}

.header-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ED0E47;
    border-radius: 2px;
}