.header, 
.custom-navbar  {
    height: 110px;
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    height: 100%; 
}

.custom-navbar .navbar-brand {
    padding: 0;
    color:rgba(229, 190, 112);
}

.navbar-logo {
    opacity: 0;
    pointer-events: none;
}

.navbar-logo img {
    height: 4em;
    width: auto;
    display: block;
}

.logo-center img {
    height: 30em;
    margin: auto;
    width: auto;
    display: block;
    max-width: 90vw;
    max-height: 40vh;
}

.logo-center,
.navbar-logo {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header.active .navbar-logo {
    opacity: 1;
    pointer-events: auto;
}

.custom-navbar .navbar-nav li a {
    color: black !important;
    transition: color 0.3s ease;
}

/* When scrolled (black background) */
.header.active .navbar-nav li a {
    color: white !important;
}

.custom-navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header.active .custom-navbar {
    background-color: rgb(0, 0, 5) !important;
}

.header.active ~ .parallax-content .logo-center {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.custom-navbar .navbar-nav,
.custom-navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.baner-content {
    background-image: url(../images/hair8.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.baner-content .text-content h2 {
    color: rgba(229, 190, 112);
} 

.hero-baner {
    padding: 20px;
}

#owl-testimonials {
    text-align: center;
}

#testimonial .col-md-6 {
    margin: 0 auto;
    float: none;
}

#testimonial .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.info-site  {
    z-index: 2;
    position: relative;
}

.info-site-content {
    padding: 10px;
    color: rgba(229, 190, 112);
}

#about {
	padding: 150px 0px;
	background-image: url(../images/hair2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
    position: relative;
}

#about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hide hamburger and mobile nav on desktop */
.hamburger {
    display: none;
}

#mobile-nav, .mobile-nav {
    display: none !important;
}

@media (max-width: 991px) {
    #mobile-nav.open, .mobile-nav.open {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .nav-left,
    .nav-right {
        display: none !important;
    }

    .custom-navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .navbar-logo {
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-logo img {
        height: 3em;
    }

    .logo-center {
        margin: 0 auto;
    }

    /* Mobile hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 99999;
        margin-left: auto;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 5, 0.97);
        z-index: 9999;
        padding: 20px 0;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .mobile-nav ul li a {
        display: block;
        padding: 15px 20px;
        color: #fff !important;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: color 0.3s ease;
    }

    .mobile-nav ul li a:hover {
        color: rgba(229, 190, 112) !important;
    }
}