:root{
  --holi-orange:#F26D21;
  --jaipur-blue:#007C91;
  --turmeric-yellow:#F2C029;
  --bright-teal:#00c2cb;
  --bright-red:#ed3705;
  --white:#ffffff;
  --muted:#333333;
  --bg:#faf8f1;
  --max-w:1440px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html, body {
  height: 100%;
}
body { 
  font-family:"Etna Sans Serif", sans-serif;
  background:var(--bg);
  margin: 0;
  padding: 0;
}

.top-bar{
  background:#FAC430;
  color:black;
  text-align:center;
  padding:8px 0;
  font-size:14px;
  font-weight:600;
  width:100%;
  font-family:'Raleway', sans-serif;
  letter-spacing:0.5px;
}

/* TOP BAR SOCIAL */
.top-bar{
  background:#FAC430;
  color:#000;
  width:100%;
  padding:8px 20px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  font-size:14px;
  font-weight:600;
  font-family:'Raleway', sans-serif;
  letter-spacing:0.4px;
  line-height:1;
}

.top-bar .follow-text{
  white-space:nowrap;
}

.top-bar .social-icons{
  display:flex;
  align-items:center;
  gap:10px;
}

.top-bar .social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#000000;
  color:#FAC430;
  font-size:14px;
  text-decoration:none;
  transition:all 0.25s ease;
}

.top-bar .social-icons a:hover{
  background:#fff;
  color:#000;
  transform:translateY(-1px);
}



.site-header {
  position: fixed;        
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;          
  transition: all 0.3s ease;
}


.main-head{
  background:#fff;
  height:96px;
  display:flex;
  align-items:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}


.site-header.scrolled .main-head {
  height: 80px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.site-header.scrolled .brand-logo img {
  max-height: 60px;
}

.main-row{
  max-width:var(--max-w);
  margin:auto;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  height: 100%;
}

.brand-logo{
  display:flex;
  align-items:center;
  height:100%;
  padding: 5px 0;
}

.brand-logo img{
  max-height: 52px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}


nav.primary{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.nav-list{
  display:flex;
  gap:28px;
  list-style:none;
  align-items:center;
  white-space:nowrap;
}

.nav-list a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:15px;
  padding:8px 6px;
  transition: color 0.2s ease;
}

.nav-list a:hover{ 
  color:var(--holi-orange); 
}

.nav-list a.active{
  color:var(--jaipur-blue);
  position:relative;
}
.nav-list a.active::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:10%;
  right:10%;
  height:3px;
  background:linear-gradient(90deg,var(--holi-orange),var(--turmeric-yellow));
  border-radius:3px;
}

.dropdown { 
  position:relative; 
}

.dropdown-panel{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:220px;
  padding:12px 12px;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.25s ease;
  z-index:50;
}

.dropdown:hover .dropdown-panel{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-panel ul{
  list-style:none;
  padding-left:15px;
}

.dropdown-panel a{
  display:block;
  padding:6px 2px;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}
.actions{
  display:flex;
  align-items:center;
  gap:15px;
}

.book-btn{
  background:#C63D6A;
  color:#fff;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  border:0;
  cursor:pointer;
  font-family:'Raleway', sans-serif;
  transition: background 0.25s ease;
}

.book-btn:hover{
  background:#a92f57;
  transform:none;
  box-shadow:none;
}


.hamburger-btn{
  display:none;
  background:transparent;
  border:0;
  font-size:28px;
  cursor:pointer;
  color:var(--jaipur-blue);
  padding: 5px;
}

.mobile-menu {
  position: fixed;
  top: 100%;                
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}


.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background: var(--bg);
  color: var(--holi-orange);
}

.mobile-dropdown-content {
  padding-left: 20px;
  margin-top: 10px;
  display: none;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active i {
  transform: rotate(180deg);
}


.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 12px !important;
  min-width: auto !important;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.whatsapp-btn i {
  font-size: 20px;
  line-height: 1;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn {
  text-decoration: none !important; 
}


@media (max-width: 1024px){

  .nav-list { gap: 20px; }

  .brand-logo img {
    max-height: 60px;
    height: 60px;
  }

  .main-head {
    height: 76px;
  }
}

@media (max-width: 900px){

   nav.primary {
    display: none;   
  }

  .hamburger-btn{ 
    display: block; 
    font-size: 26px;
  }

  .actions {
    gap: 10px;
  }

   .whatsapp-btn {
    padding: 10px !important;
  }

  .mobile-menu {
    top: calc(var(--header-height) + 5px);
  }

  .brand-logo img {
    max-height: 52px;
    height: 52px;
  }

  .main-head {
    height: 68px;
  }
}


@media (max-width: 600px){

  .main-row{ 
    padding: 0 20px; 
  }

  .top-bar {
    font-size: 14px;
    padding: 8px 0;
  }

  .brand-logo img {
    max-height: 48px;
    height: 48px;
  }

  .main-head {
    height: 64px;
  }
}

@media (max-width: 480px){

  .top-bar {
    font-size: 13px;
    padding: 6px 10px;
    line-height: 1.4;
  }
}


.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;   
}

.lang-switcher{
  position:relative;
}

.lang-btn{
  display:flex;
  align-items:center;
  gap:6px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.15);
  padding:7px 12px;
  border-radius:20px;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
}

.lang-btn i{
  font-size:12px;
}

.lang-dropdown{
  position:absolute;
  right:0;
  top:110%;
  background:#fff;
  list-style:none;
  padding:6px 0;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.25s ease;
  min-width:140px;
  z-index:99;
}

.lang-dropdown li{
  padding:8px 14px;
  cursor:pointer;
  font-weight:600;
  font-size:14px;
}

.lang-dropdown li:hover{
  background:var(--bg);
  color:var(--holi-orange);
}

.lang-switcher:hover .lang-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mobile-lang{
  margin-top:20px;
}
.mobile-lang select{
  width:100%;
  padding:10px;
  border-radius:8px;
  font-size:15px;
  margin-top:8px;
}

@media (max-width: 900px){
  .lang-switcher{
    display: none;
  }
}

@media (min-width: 901px){
  .mobile-lang{
    display: none;
  }
}


.site-header,
.nav-list a {
  font-family:'Raleway', sans-serif;
  font-weight:700;
}

.top-bar,
.book-btn,
.lang-btn {
  font-family:'Raleway', sans-serif;
}

/* FORCE HEADER MENU FONT  */
.site-header,
.site-header a,
.site-header nav,
.site-header .nav-list a,
.site-header .mobile-nav a,
.site-header .top-bar,
.site-header .book-btn,
.site-header .lang-btn {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700;
}


.mobile-nav .whatsapp-btn {
  display: inline-flex !important;
  width: auto !important;
  padding: 10px !important;
  border-radius: 50% !important;
  justify-content: center;
  align-items: center;
}



