@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playwrite+CU:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    transition: all 0.5s linear;
    color: #fff;
}
body{
    background-color: #000;
    font-family: "Lato", sans-serif;
}
header {
    position: relative;
    padding: 2em 0;
    height: 100vh;
    overflow: hidden; /* ensure the zoom doesn't overflow */
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url(img/mmbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1; /* put behind header content */
    animation: zoom 10s ease-in-out infinite alternate;
}

/* Keyframes for slow zoom */
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* adjust zoom level here */
    }
}


html {
    scroll-behavior: smooth;
}
.navbar .logo span {
    color: #D4AF37;
    font-weight: bold;
    font-family: "Prata", cursive;
    margin-right: 5px; /* adds space */
}

.navbar .logo span1 {
    color: white;
    font-weight: bold;
    font-family: "Prata", cursive;
}

.logo{
    font-size: 2em;
    font-weight: 600;
    flex: 1;
    color: #fff;
    display: flex;
    align-items: center;
}
.logo img{
    width: 60px;
    margin-left: 10%;
}
.navbar{
    width: 100%;
    padding: 0.5rem 1rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    top: 0;
    position: fixed;
}
.navbar.scrolled{
    background-color: #000;
    box-shadow: rgba(0,0,0,0.35) 0 5px 15px;
}
.nav_items{
    display: flex;
    flex-wrap: nowrap;  
    justify-content: space-between;
    align-items: center;
    flex: 0;
}
.item{
    display: flex;
    justify-content: center;
}
.nav_items li{
    list-style: none;
    white-space: nowrap; 
    padding: 1em;
}
.nav_items li a{
    text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.nav_items li::before{
    content: '';
    width: 0;
    height: 2px;
    background: #D4AF37;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav_items li:hover::before{
    width: 100%;
}
.btn{
    padding: 9px 15px;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    background-color: #D4AF37;
    border: 2px solid #D4AF37;
    transition: all 0.5s ease-out;
}
.nav_menu{
    display: none;
}
.main{
    width: 80%;
    left: 50%;
    top: 55%;
    transform: translate(-50%,-50%);
    position: absolute;
    color: #fff;
}
.heading_1 {
    font-size: 4em;
    color: #D4AF37;
    
}

.heading{
    font-size: 2.5em;
    padding: 1.5% 0;
    font-family: "Prata", cursive;


}



.home{
    width: 80%;
    left: 50%;
    top: 55%;
    transform: translate(-50%,-50%);
    position: absolute;
    color: #fff;
}
.headinghome_1 {
    font-size: 1.2em;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.6);
}
.headinghome {
    font-size: 3.2em;
    font-family: "Prata", serif;
    color: #D4AF37;
    letter-spacing: 1.5px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.35),
        0 0 10px rgba(212,175,55,0.25);
    animation: goldGlow 3s ease-in-out infinite;
}

/* Glow Animation */
@keyframes goldGlow {
    0% {
        text-shadow:
            0 2px 8px rgba(0,0,0,0.35),
            0 0 10px rgba(212,175,55,0.25);
    }
    50% {
        text-shadow:
            0 3px 14px rgba(0,0,0,0.45),
            0 0 20px rgba(212,175,55,0.55),
            0 0 35px rgba(212,175,55,0.45);
    }
    100% {
        text-shadow:
            0 2px 8px rgba(0,0,0,0.35),
            0 0 10px rgba(212,175,55,0.25);
    }
}

.navbar {
    animation: navSlide 1s ease forwards;
}

@keyframes navSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home {
    animation: heroFadeUp 1.5s ease forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


.main_btn{
    display: flex;
}
.btn1:hover{
    background-color: transparent;
}
.btn2{
    background-color: transparent;
    margin-left: 1%;
    align-items: center;
    display: flex;
}
.btn2 i{
    font-size: 2em;
    margin-right: 6px;
    color: #D4AF37;
}
.btn2:hover{
    background-color: #D4AF37;
}
.btn2:hover i{
    color: #fff;
}



.video-modal {
  display: none;            /* IMPORTANT: hidden on page load */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

/* Show modal when JS adds class */
.video-modal.show {
  display: flex;
}

/* Modal content box */
.video-modal-content {
  background: #111;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  right: 7px;
  top: 1px;
  font-size: 38px;
  color: red;
  background: transparent;
  border: none;
  cursor: pointer;
}



.booking-section {
  padding: 80px 20px;
  background: rgba(0,0,0,0.6);
  text-align: center;
}

.booking-title {
  color: #000000;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.booking-form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  outline: none;
  
}

.booking-form textarea {
  resize: none;
  height: 100px;
}




/* ===== ROOMS SECTION ===== */
.sec{
    padding: 3% 0 3% 0;
    width: 95%;
    margin: auto;
}
.rooms {   
    padding: 8% 0 3% 0;
   /* background-color: #fff;  white background for elegance */
   background-color: #000000; 
    margin-top: 0%;
    width: 100%;
    
}

.rooms h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #D4AF37; /* gold heading */
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.room-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 2rem;                 /* space inside the whole grid */
   /* background-color: #ffffff;     /* white background */
   background-color: #000000;

}


.room-item {
   /* background: #ffffff;   */
    background-color: #000000;
    border: 2px solid #d4af37;     /* gold border for each card */
    border-radius: 1px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06); /* soft shadow */
}


.room-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Make all images same size */
.room-item img {
    width: 100%;
    height: 350px; /* fixed height */
    object-fit: cover; /* cover the box without stretching */
    border-radius: 1px;
    margin-bottom: 1rem;
}

.room-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #D4AF37; /* gold text for room name */
    margin-bottom: 0.5rem;
}

.room-desc {
    font-size: 1em;
    color: #dad2d2;
    margin-bottom: 0.5rem;
}

.room-status {
    font-size: 0.95em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.room-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-info p {
    font-size: 0.95em;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    color:  #D4AF37; /* white text */
}

.room-info .room-price {
    background-color: #333; /* dark background for price */
    color: #fff;
}

.room-item button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 1px;
    border: 2px solid #D4AF37;
    background-color: #D4AF37;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-item button:hover {
    background-color: #000000;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}




/****************************************** Modal background ******************************************************************/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  max-width: 900px;
  border-radius: 3px;
  position: relative;
}

/* Close button */
.modal .close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.modal .close:hover {
  color: #000;
}

/* Room layout inside modal */
.room-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.room-image {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Main image fixed size */
#mainImage {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
}

#familyMainImage {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
}

#FunctionHallImage {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
}

/* Thumbnails same size */
.thumbnail-container {
  display: flex;
  gap: 10px;
  justify-content: center; /* centers thumbnails horizontally */
}

.thumbnail-container .thumbnail {
  width: 75px;
  height: 75px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 3px;
  object-fit: cover;
  transition: border 0.2s;
}

.thumbnail:hover, .thumbnail.active {
  border: 2px solid #333;
}

.room-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content:  flex-start;
}

.room-details h2 {
  margin-top: 0px;
  color: #333;
}
.room-details h3 {
  margin-top: 20px;
  color: #333;
}

.room-details li {
  margin-top: 10px;
  color: #333;
}



.room-price {
  font-weight: bold;
  color: #000;
}

.room-description {
  margin-top: 20px;
  color: #555;
}

@media (max-width: 768px) {
  .room-container {
    flex-direction: column;
    align-items: center;
  }

  #FunctionHallImage,
  #familyMainImage,
  #mainImage {
    width: 100%;            /* always fill container width */
    height: 45vw;           /* responsive height based on screen width */
    max-height: 300px;      /* prevents the image from getting too tall */
    min-height: 200px;      /* prevents too small height */
    object-fit: cover;      /* clean, no distortion */
    border-radius: 10px;
  }
}






/************************************************ __________ameniteis and services ******************************************/

.head{
    text-align: center;
}
.heading span{
    color: #D4AF37;
}
.head .heading{
    font-family: 'lato', sans-serif;
}
.head .heading_1{
    font-family: '"Prata"', cursive;
    color: #e0e0e0;
    font-size: 2em;
}
.boxes{
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
}
.box{
    text-align: center;
    padding: 5% 0;
    border: 2px solid transparent;
    border-radius: 10px; /* Rounded corners for nicer 3D effect */
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.3),  /* bottom shadow */
        0 8px 20px rgba(0, 0, 0, 0.2), /* deeper shadow for depth */
        0 12px 40px rgba(0, 0, 0, 0.1); /* soft outer shadow */
    background-color: #1a1110; /* optional: dark background */
    transition: all 0.3s ease; /* smooth animation */
}
.box img{
    width: 100px;
}
.box p{
    max-width: 275px;
    margin-inline: auto;
    text-align: center;
    line-height: 1.75rem;
    color: #bdbdbd;
}
.box h4{
    margin: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
}
.box:hover{
    transform: translateY(-10px) scale(1.05); /* lifts box for 3D effect */
    border: 2px solid #D4AF37; /* gold hover border */
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}




/*********************************************** FUNCTION HALL SECTION ************************************/
/* Function Hall Section */
.function-section {
  padding: 40px 0;
  background: #000000;
  font-family: Arial, sans-serif;
}

.function-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center; /* Center all text */
  padding: 25px;
  border: 2px solid #d4af37; /* GOLD BORDER */
  border-radius: 1px;
  
  /* Background image settings */
  background-image: url("gallery/g9.jpg"); /* <-- replace with your image path */
  background-size: cover;       /* Makes image cover the whole container */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
  
  /* Optional dark overlay to improve text readability */
  position: relative;
  padding: 25px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* gold glow */
  
}

.function-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
  z-index: 0;
  border-radius: 4px;
}

.function-details {
  position: relative;
  z-index: 1;
}

/* Header Font */
.function-details h2 {
  font-family: "Prata", serif;
  color: #d4af37;
  font-size: 35px;
  margin-bottom: 15px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 
               0 0 12px rgba(0, 0, 0, 0.9); /* MUCH DARKER */
}

/* Description */
.function-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 
               0 0 10px rgba(0, 0, 0, 1);  /* DEEP SHADOW */
}

/* Pricing Section */
.function-pricing p {
  font-size: 16px;
  margin: 5px 0;
  font-weight: 600;
  color: #d4af37;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1), 
               0 0 10px rgba(0, 0, 0, 1);  /* STRONG DARK SHADOW */
}


/* Inclusions Section */
.function-inclusions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* allow items to wrap on smaller screens */
  gap: 25px;
  margin-top: 25px;
}

.inclusion-item {
  flex: 1 1 200px; /* flex-grow: 1, flex-shrink: 1, base width: 200px */
  max-width: 220px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2); /* semi-transparent */
  border: 2px solid #d4af37;
  border-radius: 1px;
  text-align: center;
  transition: 0.3s ease;

  /* Add blur effect */
  backdrop-filter: blur(1px); /* adjust blur intensity */
  -webkit-backdrop-filter: blur(1px); /* for Safari support */
}


.inclusion-item:hover {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.inclusion-item img {
  width: 80px; /* smaller on smaller screens */
  height: 80px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

/* Responsive text */
.inclusion-item p {
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
  .inclusion-item {
    flex: 1 1 45%; /* 2 items per row */
  }
  .inclusion-item img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .inclusion-item {
    flex: 1 1 100%; /* 1 item per row */
  }
  .inclusion-item img {
    width: 60px;
    height: 60px;
  }
  .inclusion-item p {
    font-size: 13px;
  }
}





/***************************************************************** Main Coffee Image **********************************************************/

.luxury-section {
  background: #000;
  color: #d4af37;
  padding: 60px 20px;
  font-family: "Playfair Display", serif;
}

/* ===== HEADER ===== */
.luxury-header {
  text-align: center;
  margin-bottom: 40px;
}

.luxury-header h2 {
  font-size: clamp(26px, 4vw, 3.5rem);
  margin-bottom: 15px;
  color: #d4af37;
  font-family: "Prata", serif;
}

/* ===== TOGGLE ===== */
.toggle {
  display: inline-flex;
  gap: 20px;
  border: 1px solid #d4af37;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
}

.toggle span {
  opacity: 0.6;
}

.toggle .active {
  opacity: 1;
  font-weight: bold;
}

/* ===== LAYOUT ===== */
.luxury-content {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  min-height: 420px;
}

/* ===== CARDS ===== */
.luxury-card {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.luxury-card.day {
  background-image: url("img/coffee.png");
}

.luxury-card.night {
  background-image: url("img/bar.jpg");
}


/* ===== DESCRIPTION TEXT ===== */
.overlay .description {
  color: #f5f5f5;
  font-size: clamp(19px, 1.2vw, 16px);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 18px;
}

/* ===== OPERATING HOURS ===== */
.overlay .hours {
  font-size: 20px;
  color: #d4af37;
  letter-spacing: 0.5px;
}

.overlay .hours strong {
  color: #fff;
}


/* ===== OVERLAY ===== */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 5vw, 40px);
}

.overlay h3 {
  font-size: clamp(32px, 3.2vw, 42px);
  margin-bottom: clamp(16px, 3vw, 30px);
  color: #fff;
  line-height: 1.2;
}


/* ===== GOLD DIVIDER ===== */
.gold-divider {
  background: linear-gradient(
    to bottom,
    transparent,
    #d4af37,
    #d4af37,
    transparent
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* ===== RESPONSIVE (TABLET & MOBILE) ===== */
@media (max-width: 768px) {
  .luxury-content {
    grid-template-columns: 1fr;
  }

  /* Horizontal gold line on mobile */
  .gold-divider {
    height: 3px;
    width: 100%;
    background: linear-gradient(
      to right,
      transparent,
      #d4af37,
      #d4af37,
      transparent
    );
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  }

  .luxury-card {
    min-height: 320px;
  }

  .overlay {
    text-align: center;
    align-items: center;
  }
}




/************************************ MM Restaurant Single Layout ****************************************************/
.restaurant-single {
  padding: 0;
  background: #000000;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  gap: 1px; /* space between text and images */
  align-items: start; /* align content to top */
}

/* LEFT BLACK PANEL */
.restaurant-text {
  background: #000;
  color: #fff;
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* align text to top */
}

.restaurant-text .tagline {
  color: #d4af37;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 10px;
}

.restaurant-text h2 {
  font-size: 45px;
  font-family: 'Prata', serif;
  margin-bottom: 20px;
}

.restaurant-text .description {
  color: #ccc;
  line-height: 1.2;
  margin-bottom: 25px;
  font-size: 18px;
}

.restaurant-text .features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.restaurant-text .features li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* BUTTON - Inline position, centered text */
.btn-primary {
    display: inline-block; /* keep original position */
    padding: 12px 25px; /* updated padding */
    background-color: #D4AF37;
    color: #000;
    font-weight: 600;
    border-radius: 1px; /* subtle corners */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* default border transparent */
    text-align: center; /* center the text */
    width: auto; /* width fits content */
}

/* Hover effect */
.btn-primary:hover {
    background-color: #000;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}



/* RIGHT PANEL – THREE PORTRAIT IMAGES */
.restaurant-image {
  display: flex;
  flex-direction: stretch;
  gap: 12px;
  align-items: center;
  padding: 0;
}

/* Portrait images */
.restaurant-image img {
  width: clamp(230px, 16vw, 180px);  /* responsive width */
  height: clamp(320px, 40vw, 450px); /* responsive height */
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.restaurant-image img:hover {
  transform: scale(1.05);
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Tablet */
@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }

  .restaurant-image {
    flex-direction: row; /* side-by-side on tablet */
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .restaurant-image img {
    width: 120px;
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .restaurant-image {
    gap: 8px;
  }

  .restaurant-image img {
    width: 95px;
    height: 150px;
  }
}


/* ==================================================================
   MENU MODAL
================================================================== */
.menu-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  padding: 20px;
  justify-content: center;
  align-items: center;
}

.menu-modal-content {
  background: #1e1d1d;
  width: 60%;
  max-width: 780px;
  min-width: 320px;
  padding: 40px;
  border-radius: 18px;
  color: #fff;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 35px rgba(0,0,0,.8);
  
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 34px;
  cursor: pointer;
  color: #d4a251;
  transition: .3s;
}
.close-modal:hover { color: #fff; }

/* Title */
.menu-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 35px;
  font-family: "Playfair Display", serif;
  color: #D4AF37;
  letter-spacing: 2px;
}

/* ==================================================================
   MENU TABS
================================================================== */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2c2c2c;
}

.menu-tab {
  background: transparent;
  color: #d4a251;
  border: 1px solid #d4a251;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: .35s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: linear-gradient(135deg,#d4a251,#f5d88c);
  color: #000;
  box-shadow: 0 0 12px rgba(212,162,81,.6);
}

/* ==================================================================
   TAB CONTENT
================================================================== */
.menu-content {
  display: none;
  animation: fadeUp .4s ease;
}

.menu-content.active {
  display: block;
}

/* ==================================================================
   SECTION GROUPS
================================================================== */
.section-group,
.section-container {
  margin-bottom: 35px;
}

/* Cursive Titles */
.cursive-title {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  color: #D4AF37;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 6px;
}

.cursive-title small {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #ccc;
  margin-left: 8px;
}

/* ==================================================================
   MENU LIST
================================================================== */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}

.menu-row span:first-child {
  max-width: 80%;
}

/* ==================================================================
   PRICE ELEMENTS (TOGGLE READY)
================================================================== */
.price,
.price-val,
.price-group,
.selling-price-header,
.addon-col span {
  display: none;
}

.show-prices .price,
.show-prices .price-val,
.show-prices .price-group,
.show-prices .selling-price-header,
.show-prices .addon-col span {
  display: inline-flex;
  color: #d4a251;
  font-weight: bold;
}

/* ==================================================================
   COFFEE GRID
================================================================== */
.pricing-grid.classic {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 6px;
}

.grid-label.dark-bg {
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 4px 0;
}

.size-subheader {
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  font-weight: bold;
  color: #aaa;
}

.item-row {
  display: contents;
}

.item-name {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.price-group,
.price-val {
  justify-content: space-around;
  text-align: center;
}

/* FRAPPE GRID */
.pricing-grid.frappe {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 10px;
}

/* ==================================================================
   ADD ONS
================================================================== */
.addon-footer {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 35px;
  padding-top: 15px;
}

.addon-title {
  font-size: 15px;
  letter-spacing: 1px;
  color: #d4a251;
  margin-bottom: 10px;
}

.addon-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.addon-col p {
  font-size: 13px;
  font-style: italic;
  margin: 4px 0;
}

/* ======================================================
   CUSTOM MODAL SCROLLBAR
====================================================== */

/* Firefox */
.menu-modal-content {
  scrollbar-width: thin;
  scrollbar-color: #d4a251 #1e1d1d;
}

/* Chrome, Edge, Safari */
.menu-modal-content::-webkit-scrollbar {
  width: 6px;
}

.menu-modal-content::-webkit-scrollbar-track {
  background: #1e1d1d;
  border-radius: 10px;
}

.menu-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4a251, #f5d88c);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.menu-modal-content::-webkit-scrollbar-thumb:hover {
  background: #f5d88c;
}



/* ==================================================================
   ANIMATION
================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================================================================
   RESPONSIVE
================================================================== */
@media (max-width: 1024px) {
  .menu-modal-content {
    width: 95%;
    padding: 30px;
  }
  .menu-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .menu-title {
    font-size: 26px;
  }
  .menu-row {
    font-size: 13px;
  }
}




/*********************************************** __________about ************************************************/
/* ABOUT GRID LAYOUT */
.about_heading {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 2em;
    align-items: center;
}

.about .heading_1{
    font-family: '"Prata"', cursive;
    font-size: 2.5em;
}

.about .heading {
    grid-column: 1;
}

.about .para {
    grid-column: 2;
    text-align: justify;
    color: #ccc;
}

/* ABOUT BOX IMAGES */
.about_box {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2em;
    margin-top: 5%;
}

.box1 {
    background-color: #222;
    box-shadow: rgba(0,0,0,0.22) 0 3px 8px;
    overflow: hidden;
    border: 5px solid #D4AF37;
    border-radius: 1px;
}

.box1 img {
    width: 100%;
    height: 200px; /* <-- Set equal height for all images */
    object-fit: cover; /* Keeps image centered and cropped nicely */
    display: block;
    transition: transform 0.4s ease;
}

.box1_text {
    padding: 4%;
}

.para1 {
    color: #bdbdbd;
    padding-bottom: 5%;
}

/* ZOOM EFFECT */
.box1 img:hover {
    transform: scale(1.1);
}

/* GOLD DIVIDER */
.divider_line {
    margin: 60px auto;
    width: 320px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #f1d189, #D4AF37);
    border-radius: 5px;
}

/*************************************************************** WHY CHOOSE US *****************/
.choose_section {
    text-align: center;
    margin-top: 50px;
}

.choose_section h3 {
    color: #D4AF37;
    letter-spacing: 1px;
}

.choose_section .para.center {
    max-width: 850px;
    margin: 20px auto 50px;
}

/* GRID FOR CHOOSE ITEMS */
.choose_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.choose_item {
    background: #000000;
    padding: 25px;
    border-radius: 15px;
    transition: .3s ease;
    border: 1px solid #eee;
}

.choose_item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.choose_item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.choose_item p {
    color: #666;
    font-size: 0.95rem;
}

/* HOVER EFFECT */
.choose_item:hover {
    background: #000000;
    border-color: #D4AF37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}







/***************************************************REVIEWS ******************************************************************/
.reviews-section {
  padding: 80px 20px;
  background: #000;
  color: #fff;
}

.reviews-section .section-subtitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.reviews-section .heading_1 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}

/* Slider wrapper */
.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

/* Slider */
.reviews-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  flex: 1;
  cursor: grab;
}

.reviews-slider:active {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 300px;
  background: #1a1110;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.review-name {
  margin-top: 15px;
  font-weight: bold;
  color: #d4af37;
}

/* Hide scrollbar */
.reviews-slider::-webkit-scrollbar {
  display: none;
}
.reviews-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =====ARROWS ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.15); /* semi-transparent gold */
  border: none;
  color: #d4af37;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.4);
  transform: translateY(-50%) scale(1.1);
  color: #fff;
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-section .heading_1 {
    font-size: 28px;
  }
  .review-card {
    flex: 0 0 80%;
  }
  .slider-btn.prev {
    left: 5px;
  }
  .slider-btn.next {
    right: 5px;
  }
}





/*************************************************** _______contact ******************************************************************/
.contact{
    margin-top: 6%;
    width: 100%;
    background-color: #1a1110;
}
.contact_box{
    display: grid;
    width: 85%;
    margin: auto;
    align-items: center;
    grid-gap: 2rem;
    grid-template-columns: 1fr 1fr;
}
.left_box .heading_1{
    color: #D4AF37;
}

.right_box {
    text-align: right;
    border: 5px solid #D4AF37;
}

/* Image wrapper */
.right_box .img_wrapper {
    position: relative;
    overflow: hidden;
}

/* Image styling */
.right_box img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

/* Zoom effect */
.right_box .img_wrapper:hover img {
    transform: scale(1.1);           /* zoom */
    filter: brightness(60%);          /* darken the image */
}


/* Centered text overlay */
.right_box .hover_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* perfect centering */
    border-radius: 3px;

    color: #fff;
    font-size: 20px;
    font-weight: bold;

    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Show text on hover */
.right_box .img_wrapper:hover .hover_text {
    opacity: 1;
}

.contact_details { 
    margin-bottom: 20px; /* adjust size as needed */
}

.contact_details p {
    margin: 6px 0;
    font-size: 16px;
    color: #fff; /* change depending on your theme */
}

.contact_details a {
    color: #ffcc33;   /* gold color */
    text-decoration: none;
}

.contact_details a:hover {
    text-decoration: underline;
}



/********************************************* GALLERY***********************************************/
/* -------------------------
   Gallery Grid Layout
---------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* exactly 5 columns */
    gap: 15px;
    margin-top: 20px;
}


.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 1px;
    /* Animation removed */
}

/* -------------------------
   Lightbox Styles
---------------------------- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* -------------------------
   See More Button
---------------------------- */
.see-more-container {
    text-align: center;
    margin-top: 20px;
}

.see-more-container {
    text-align: center;
    margin-top: 20px;
}

.see-more-btn {
    display: inline-block;
    margin: 20px auto 40px auto;
    padding: 12px 25px;
    background-color: #D4AF37;
    color: #000000;
    font-weight: 600;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: max-content;
    text-align: center;
}

/* Hover effect like btn2 */
.see-more-btn:hover {
    background-color: #000000;
    color: #D4AF37;
    border: 2px solid #D4AF37;/
}

/* Optional: if you have an icon inside the button */
.see-more-btn i {
    margin-right: 6px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.see-more-btn:hover i {
    color: #000000;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 images on smaller screens */
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 images on tablets */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images on mobile */
    }
}






/********************************************************** __________footer ******************************/
.footer_container{
    display: grid;
    gap: 4rem 7rem;
    grid-template-columns: repeat(4, 1fr);
}
.footer_logo img{
    max-width: 35px;
}
.footer_logo span{
    display: flex;
    font-size: 1.5rem;
    font-weight: 800;
}
.footer_col .footer_text{
    max-width: 350px;
    color: #bdbdbd;
    margin: 2rem 0;
}
.footer_socials{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}
.footer_socials a{
    font-size: 1.5rem;
    text-decoration: none;
    padding: 3%;
}
.footer_socials a:hover{
    background-color: #D4AF37;
}
.footer_col h4{
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}
.footer_links{
    display: grid;
    gap: 1rem;
    list-style: none;
}
.footer_links a{
    text-decoration: none;
    color: #bdbdbd;
}
.footer_links a:hover{
    color: #D4AF37;
}
.footer_bar{
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}




/*************************************************** __________Scroll-up ****************************************/
.top{
    background-color: #D4AF37;
    font-size: 40px;
    padding: 0.5rem;
    position: fixed;
    border-radius: 10%;
    right: 5%;
    cursor: pointer;
    bottom: -50%;
}
.top:hover{
    transform: translateY(-.6rem);
}
.top.show{
    bottom: 8%;
}


.boxes-wrapper{
    overflow-x:auto;
}

section.menu h2{
    text-align: center;
    font-size: 50px;
    padding: 0;
}



@media only screen and (max-width:1050px){
    .about_heading{
        gap: 0 2em;
    }
    .about_box,.boxes{
        gap: 1em;
    }
    .box1_text .btn{
        padding: 9px;
        font-size: 15px;
    }
    .left_box .heading{
        font-size: 2.5em;
    }
}
@media only screen and (max-width:850px){
.nav_items{
    position: absolute;
    top: -1%;
    left: 0;
    width: 100%;
    padding: 5em 0em 2em 0;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.9rem;
    background-color: #000;
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
}
.nav_items.open{
    transform: translateY(0);
}
.item{
    flex-direction: column;
}
.nav_menu{
    display: block;
    font-size: 2em;
}
.boxes,.about_box{
    grid-template-columns: repeat(2,1fr);
}
.contact_box{
    grid-template-columns: 1fr;
}
.footer_container{
    grid-template-columns: repeat(3,1fr);
}
}
@media only screen and (max-width:660px){
.about_heading{
    grid-template-columns: 1fr;
}
.about .para{
    grid-column: 1;
}
.boxes,.about_box{
    grid-template-columns: repeat(1,1fr);
}
.footer_container{
    grid-template-columns: repeat(2,1fr);
}
.navbar {
    padding: 2rem 2rem;
}
.heading {
    font-size: 3em;
}
.heading_1 {
    font-size: 2em;
}
}
@media only screen and (max-width:480px){
    .footer_container{
        grid-template-columns: repeat(1,1fr);
    }
    .btn {
        padding: 9px;
        font-size: 15px;
    }
    .main {
        width: 90%;
    }
}