@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
@font-face {
  font-family: 'Denton Test';
  src: url('../fonts/denton-font/Denton Test Bold 700.otf') format('woff2'),
       url('../fonts/denton-font/Denton Test Bold 700.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  /* font-display: swap; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  /* scrollbar-width: none; for Firefox */
}

.bur-bg {
  position: absolute;
  bottom: 0;       /* stick to bottom of .main */
  left: 0;
  width: 100%;
  height: 300px;   /* adjust as needed */
  pointer-events: none; /* don’t block slider buttons */
  z-index: 1;
}


.site-header {
  width: 100%;
  height: 80px;
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px; /* spacing from edges */
  z-index: 1000; /* make sure it stays above other elements */
  position: fixed; /* ✅ fix it to the viewport */
  top: 0;          /* ✅ stick to top edge */
  left: 0;         /* align from left edge */
  overflow: visible; /* optional – ensures borders/shadows visible */

}


.visit{
 /* width: 152px;
height: 20px; */
opacity: 1;
font-family: 'Denton Test';
font-weight: 400;
font-style: normal;
font-size: 16px;
line-height: 20px;
letter-spacing: 0%;
vertical-align: middle;
/* padding-right: 40px; */
/* color: #B2782E; */
/* color: #fff; */
/* text-decoration: none; */

display: inline-block;
  /* width: 200px;
  height: 45px; */
  opacity: 1;
  padding: 10px 16px;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid #fff;
  text-align: center;
  color: #EFEFEFC7; /* text color – adjust as needed */
  text-decoration: none;
  transition: all 0.3s ease;
  /* margin-right: 30px; */

}

.nav-center .visit {
  /* margin-left: 10%; */
  margin-left:25px;
}


.visit:hover {
  /* background-color: #A07644; */
  color: #fff;
}

.visit.active {
  /* background-color: #A07644; */
   font-size: 16px;
  /* font-weight: 900; */
  /* font-style: bold; */
  color: #fff;
  /* border-color: #A07644; */
}

.nav-left .logo {
  width: 166px;
  height: auto;
}

.nav-center {
  display: flex;
  list-style: none;
  gap: 30px; /* space between nav items */
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  /* margin-left: 15%; */
  white-space: nowrap;
  justify-content: flex-end;
}

.nav-center li a {
  text-decoration: none;
  color:#EFEFEFC7;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Denton Test';
  font-style: normal;
  padding: 10px 10px;
  transition: color 0.3s, border-bottom 0.3s;
  gap:40px;
  white-space: nowrap; 
}

.nav-center li {
  list-style: none;
}

/* .nav-center li a:hover, */
.nav-center li a.active {
  color: white;
  font-size: 18px;
  font-weight: 900;
  font-style: bold;
  /* border-bottom: 2px solid #B2782E; highlight */
}

/* Inactive tabs (no border) */
.nav-center li a:not(.active) {
  border-bottom: none; /* remove highlight */
  color: #EFEFEFC7;
}

.enquire-now {
  padding: 12px 16px;
  border-radius: 6px;
  background: #A07644;

  /* background: #B2782E; */
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.enquire-now:hover {
  background: #9a6527;
}



.page-content#page-content {
  overflow-anchor: none;
}



/* 
mobile view */


/* ----------- Hamburger ----------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Active (X animation) */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    list-style: none;
    margin: 0;
    padding: 10px 0;

    background: #1a1a1a;   /* change as needed */
    border-radius: 6px;
    display: none;

    min-width: 220px;
    z-index: 10;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #EFEFEF;
    font-size: 14px;
    text-decoration: none;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #2d2d2d;
}


@media(max-width:1199px){
  .nav-center { gap:15px; }
  .nav-center li a { padding:10px 8px; }
  .nav-center .visit { margin-left:0px; }
}
@media(max-width:991px){
  .nav-center { gap:10px; }
  .site-header { padding:0px 20px; }
  .nav-left .logo { width:140px; }
}

/* ----------- Mobile View ----------- */
@media (max-width: 768px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }
  .menu-toggle:hover { background-color:transparent !important; }

  /* Hide normal menu */
  .nav-center{
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    height: auto;
    background: #202020;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 25px;
    /* padding-top: 40px; */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 20;
  }

  /* Active menu */
  .nav-center.active {
    display: flex;
    transform: translateX(0);
            padding: 20px;
        display: flex;
        transform: translateX(0px);
        width: auto;
        height: auto;
        align-items: center;
        gap: 30px;
    }

  /* .nav-right {
    margin-top: 10px;
  } */

  .visit{
    margin-left: 0px;
  }

  .visit,
  .enquire-now {
    /* width: 50%; */
    height:auto;
    text-align: center;
    align-items: center;
  }

  .nav-left .logo {
    width: 140px;
  }
}


.bottom_urls li {
    list-style: none;
    margin-right: 14px;
    float: left;
}

.bottom_urls li a {
    color: #fff;
    text-decoration: none;
}

.bottom_urls li a:hover {
    text-decoration: underline;
}

.footer-bottom-copyright {
    margin-left: 60px;
}

/* ====== MOBILE FIX ====== */
@media (max-width: 768px) {
    .footer-bottom-copyright,
    .bottom_urls {
        width: 100%;
        float: none;
        margin-left: 0;
        text-align: center;
    }

    .footer-right.bottom_urls {
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 820px) {
    .footer-bottom-copyright {
        margin-left: 30px;
    }
    .bottom_urls {
        margin-top: 10px;
        justify-content: left;
    }
}



