@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

body.overflow-hidden {
    overflow: hidden;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

#main-header {
    color: white;
    /* z-index: 50; Provided by Tailwind */
}
#main-header .menu a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Container for the drawer button */
#main-header .navbar-end > div {
     position: relative; /* Needed for z-index */
     z-index: 60;  /* Higher than header (z-50) and new drawer (z-40) */
}

/* The button itself */
#main-header .drawer-button {
    color: white;
    position: relative;
}

#main-header.scrolled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
/*    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);*/
padding-bottom:0.5em;
}
#main-header.scrolled .menu a {
    color: #C4B393;
    text-shadow: none;
}
#main-header.scrolled .menu a:hover {
    opacity: 0.75;
}
#main-header.scrolled .drawer-button {
    color: #C4B393;
}
#main-header.scrolled #mobile-header-logo {
    opacity: 1;
}
#main-header:not(.scrolled) #mobile-header-logo {
    opacity: 0;
}

#hero {
    position: relative;
}
#hero .hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
#hero .hero-video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#hero .hero-video-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

#about {
    position: relative;
}
#about > .absolute.inset-0 {
    z-index: 0;
}
#about .about-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: grayscale(30%) brightness(1.1);
}
#about .bg-gradient-to-t {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 66.666%;
    z-index: 2;
}
#about > .container {
    position: relative;
    z-index: 10;
}

.title-with-decor img {
    height: 0.8em;
    vertical-align: baseline;
}

.portfolio-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.swiper-pagination-bullet {
    background-color: #D3CBBF;
    opacity: 0.6;
    transition: background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    width: 8px;
    height: 8px;
}
.swiper-pagination-bullet-active {
    background-color: #C4B393;
    opacity: 1;
    transform: scale(1.2);
}
.portfolio-pagination, .reviews-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0.75rem;
}

.review-client-image {
    border: 3px solid #f3f4f6;
}

.map-iframe-filter {
    filter: grayscale(60%) contrast(0.9) brightness(1.1);
}

#lightbox {
    transition: opacity 0.3s ease-in-out;
}
#lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}
#lightbox:not(.hidden) {
    opacity: 1;
}
#lightbox-image {
    max-width: 85vw;
    max-height: 85vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#lightbox-close {
    transition: transform 0.2s ease;
}
#lightbox-close:hover {
    transform: scale(1.1);
}

/* Drawer Styles */
/* Main drawer container z-index changed to z-40 in HTML */
/* Let DaisyUI handle internal z-indices relative to z-40 */
.drawer-side > *:not(.drawer-overlay) {
     background-color: white;
     position: relative;
}

.drawer-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
    cursor: pointer;
}


.drawer-side .menu {
    padding-top: 2.5rem;
}

/* Hamburger Icon Styling */
.hamburger-icon {
    transition: transform 0.3s ease-in-out;
}
.hamburger-icon path {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, stroke 0.3s ease-in-out;
    transform-origin: center;
    stroke: currentColor;
}

/* JS handles transform/opacity/stroke changes */


/* --- USER ADDED - DO NOT REMOVE --- */
#hairsuitelogo{
    max-width:18em;
    margin-left:auto;
    margin-right:auto;
}
/* --- END USER ADDED --- */