/* Hero Header Styles */
.hero-header {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.desktop-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.desktop-header.header-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Common navbar styles */
.hero-header .navbar {
    background: transparent !important;
    padding: 1.5rem 0;
}

/* Navigation links */
.hero-header .navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.overlay-vector {
    position: absolute;
    right: 0;
    top: 0 !important;
    width: auto;
    height: 80vh;
    z-index: 1;
    pointer-events: none;
}

.overlay-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay-vector-mobile-hero{
    bottom:0;
    right:0;
    height:80vh;
}
.overlay-vector-mobile-hero img{
    position:absolute;
    top:0;
    right:0;
    height:60vh;
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .overlay-vector {
        position: absolute;
        right: 0;
        bottom: 0 !important;
        width: auto;
        height: 112vh;
        z-index: 1;
        pointer-events: none;
    }

    .overlay-vector img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

    .overlay-vector-mobile {
        width: auto;
        right: 0;
        top: 115px !important;
        z-index: 0;
    }

    .overlay-vector-mobile img {
        opacity: 1 !important;
        width: 55vw;
        height: auto;
        object-fit: contain;
    }

    .navbar-vector img {
        width: 80vw !important;
        ;
    }

    .hero-header .navbar {
        padding: 1rem 0;
        width: 100vw;
        z-index: 1000;
    }

    .hero-header .navbar-brand img {
        height: 56px;
    }

    .hero-header .offcanvas {
        background: var(--bg-color);
        max-width: 110vw;
        width: 100vh;
        height: 100vh !important;
        transition: opacity 0.1s ease;
        opacity: 0;
    }

    .hero-header .offcanvas.show {
        opacity: 1;
        width: 100%;
        height: 100vh;
    }

    .hero-header .offcanvas-backdrop.show {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hero-header .offcanvas-header {
        padding: 1rem 1.5rem;
    }

    .hero-header .mobile-menu .nav-link {
        color: var(--text-color) !important;
        padding: 2rem 0;
        font-size: 1.1rem;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
        transition: color 0.3s ease;
    }

    .hero-header .mobile-menu .nav-link:hover,
    .hero-header .mobile-menu .nav-link:focus {
        color: var(--primary-color) !important;
    }

    .hero-header .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        bottom: 15px;
        left: 0;
        transform: none;
        background-color: var(--primary-color);
    }

    .hero-header .navbar-toggler {
        color: var(--text-color);
    }
}

.hero-header .navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .navbar-brand-hero img {
        height: 85px !important;
        margin-left: 28px !important;
    }

    .hero-header .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 2px;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
    }
}

.hero-header .navbar-brand img {
    /* Make logo white */
    /* filter: brightness(0) invert(1);   */
}

.hero-background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* filter: brightness(0.6); */
}

.hero-overlay {
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    position: relative !important;
}

.hero-content h6 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    max-width: 800px;
}