:root {
    --primary-color: #161616;
    --secondary-color: #ededed;
    --accent-color: #383838;
    --text-color: #34383d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-family-title: "Playfair Display", serif;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
    padding: 0%;
    /* Removed padding-top */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Desktop Header Styles */
/* .desktop-header {
    background-color: transparent;
    position: absolute;
    Changed from fixed to absolute
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
} */

.desktop-header {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
}


.desktop-header.scrolled {
    position: fixed !important;
    /* Becomes fixed when scrolled */
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.desktop-header.scrolled .navbar-brand img {
    height: 50px;
    /* Shrink logo on scroll */
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: white !important;
    /* Force white text initially */
    font-weight: 400 !important;
    font-size: 0.775rem;
    padding: 9px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.desktop-header.scrolled .nav-link {
    color: var(--light-color) !important;
}

.desktop-header.scrolled .nav-link:after {
    background: var(--primary-color);
}
/* Animate dropdown on scroll */
.desktop-header.scrolled .dropdown-menu {
  animation: fadeInDropdown 0.3s ease-in-out;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar padding right transition */
.navbar-nav {
  transition: padding 0.3s ease;
  padding-right: 30px;
}

.desktop-header.scrolled .navbar-nav {
  padding-right: 0;
}

/* Dropdown menu style with transparent black */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: none;
  background-color: rgba(0, 0, 0, 0.85); /* black with opacity */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  min-width: 180px;
  padding: 5px 0;
}

/* Dropdown items */
.dropdown-item {
  font-size: 13px;
  padding: 7px 15px;
  color: white;
  transition: 0.3s;
}

/* Highlight active/hovered dropdown item */
.dropdown-item:hover,
.dropdown-item.active {
  background-color: #000;
  color: #fff;
}

/* Prevent li turning black */
.nav-link {
  background: transparent !important;
  color: white !important;
}

.nav-link.active,
.nav-link:hover {
  color: white !important;
  background: transparent !important;
}

a.nav-link.dropdown-toggle::after {
  content: none !important;
}
 


/* Mobile Header Styles */
.mobile-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: white;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    text-align: center;
    padding: 15px 0;
    background: var(--primary-color);
    /* position: fixed; */
    position: absolute;
    /* Changed to absolute for better positioning */
    top: 50px;
    width: 100%;
    z-index: 1040;
}

/* .mobile-logo {
  position: relative;
  padding: 10px 0;
  background: var(--primary-color);
  text-align: center;
} */


.mobile-logo img {
    height: 50px;
    /* filter: brightness(0) invert(1); */
}

/* Menu Button Styles */
.menu-btn {
    border: 1px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    border-radius: 0%;
    padding: 5px 15px !important;
}

/* Offcanvas Menu */
.offcanvas {
    max-width: 50%;
    font: 1em sans-serif;
}

.offcanvas-body .nav-link {
    padding: 10px 0 !important;
    color: black !important;
    /* Force black text */
    
}

.offcanvas-body .nav-link:hover {
  background-color: #000 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.offcanvas-body .nav-link:after {
    left: 0;
}


/* Hero Banner */
.hero-banner {
    height: 300px;
    background-image: url('/image/halfhead.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    color: white;
    padding: 15px 0;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}


/* Mobile (phones - max-width: 767.98px) */
@media (max-width: 767.98px) {
    body {
        padding-top: 110px;
    }

    .hero-banner {
        height: 450px;
        margin-top: -110px;
    }

    .desktop-header {
        display: none;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .breadcrumbs {
        font-size: 14px;
        color: white;
    }

    .mobile-header,
    .mobile-logo {
        display: block;
    }
}

/* Tablet (768px–991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    body {
        padding-top: 110px;
    }

    .hero-banner {
        height: 250px;
        margin-top: -110px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header,
    .mobile-logo {
        display: block;
    }
}

/* Desktop (≥992px) */
@media (min-width: 992px) {

    .mobile-header,
    .mobile-logo {
        display: none;
    }

    .hero-banner {
        margin-top: 0;
    }

    .desktop-header {
        display: block;
    }
}

.cont-btn {
    border: 2px solid white;
    text-decoration: none;
    padding: 5px 15px !important;
}

.contact-btn:hover{
    background-color: transparent white;
} 
