/* ==================================================
   RESPONSIVE DESIGN
================================================== */


/* ==============================
   LAPTOP / SMALL DESKTOP
============================== */

@media (max-width: 1200px) {

    .main-navigation,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-wrapper {
        min-height: 82px;
    }

    .site-branding .custom-logo {
        max-width: 175px;
        max-height: 64px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 60px;
    }
}


/* ==============================
   TABLET
============================== */

@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
    }

    /* Top Bar */

    .top-bar-wrapper {
        min-height: 38px;
    }

    .top-bar-right {
        display: none;
    }

    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .top-bar-left a {
        font-size: 12px;
    }


    /* Header */

    .header-wrapper {
        min-height: 76px;
    }

    .site-branding .custom-logo {
        max-width: 160px;
        max-height: 58px;
    }


    /* Footer */

    .footer-main {
        padding: 55px 0 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom-wrapper {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 576px) {

    .container {
        width: calc(100% - 28px);
    }


    /* Top Bar */

    .top-bar {
        display: none;
    }


    /* Header */

    .header-wrapper {
        min-height: 72px;
        gap: 15px;
    }

    .site-branding .custom-logo {
        max-width: 145px;
        max-height: 54px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }


    /* Mobile Navigation */

    .mobile-navigation {
        width: 88vw;
        max-width: 340px;
        padding: 22px;
    }


    /* Footer */

    .footer-main {
        padding: 50px 0 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-logo .custom-logo {
        max-width: 170px;
    }
}


/* ==============================
   VERY SMALL MOBILE
============================== */

@media (max-width: 380px) {

    .site-branding .custom-logo {
        max-width: 130px;
    }

    .mobile-navigation {
        width: 92vw;
    }
}

/* ==================================================
   HERO RESPONSIVE
================================================== */

@media (max-width: 1200px) {

    .home-hero {
        min-height: calc(100vh - 122px);
        
    }

}


@media (max-width: 768px) {

    .home-hero {
        min-height: 650px;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(8, 34, 27, 0.76);
    }

    .hero-container {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(38px, 9vw, 55px);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.8;
    }

}


@media (max-width: 576px) {

    .home-hero {
        min-height: 620px;
    }

    .hero-container {
        padding-top: 65px;
        padding-bottom: 85px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.18;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 15px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-scroll {
        bottom: 20px;
    }

}