*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Times New Roman", serif;
}

body{
  background:#000;
  overflow-x:hidden;
}

/* HEADER */
header{
  width:100%;
  position:absolute;
  top:40px;
  left:0;
  z-index:1000;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#fff;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo{
  width:65px;
}

.logo-area h1{
  font-size:26px;
  letter-spacing:8px;
  font-weight:300;
}

/* NAVBAR */
.navbar{
  list-style:none;
  display:flex;
  gap:50px;
  margin-top:25px;
}
.navbar li a {
  position: relative;
  text-decoration: none;
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
}

/* Hover font light */
.navbar li a:hover {
  color: #fff; /* thoda bright ho jayega */
}

/* Underline effect */
.navbar li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;       /* text ke just niche line */
  width: 0%;
  height: 2px;
  background: #fff;   /* underline color */
  transition: width .35s ease;
}

/* On hover, line expands */
.navbar li a:hover::after {
  width: 100%;
}

.insta{
  width:18px;
}

/* ===========================
   DROPDOWN DESKTOP FIXED
=========================== */

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Menu will open exactly below item */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 170px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  border-radius: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.2s ease-in-out;
}

/* FIXED — dropdown will NOT disappear */
.dropdown:hover > a,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  list-style-type: none;
 
}




/* Dropdown items */
.dropdown-menu li a{
  display:block;
  padding:12px 22px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  list-style-type: none;
  letter-spacing:1px;
  transition:0.2s;
}

.dropdown-menu li a:hover{
  background:rgba(255,255,255,0.15);
  padding-left:30px;
   list-style-type: none;
}

/* HERO */
.hero{
  width:100%;
  height:100vh;
  background:url('../images/gallery-img.jpg') no-repeat center/cover;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:40px;
  position:relative;
}

.hero h2{
  color:white;
  font-size:42px;
  font-weight:300;
}

.hero p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 300;
  text-align: center;        /* Center align */
  line-height: 1.6;
  letter-spacing: 0.4px;
  /* font-family: "Poppins", sans-serif; */
  text-shadow: 0px 1px 3px rgba(0,0,0,0.35);
  /* margin: 15px auto; */
  width: 90%;
}

/* DOWN ARROW FIX */
.down-arrow{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  font-size:42px;
  color:#fff;
  cursor:pointer;
  animation:bounce 1.5s infinite;
}

@keyframes bounce{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(12px); }
}

/* HAMBURGER */
.menu-icon{
  display:none;
  font-size:34px;
  cursor:pointer;
  position:absolute;
  right:20px;
  top:20px;
  z-index:2000;
}


/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:768px){

  .menu-icon{
    display:block;
  }

.navbar{
  position:fixed;
  top:-3%;
  right:-100%;
  height:100vh;
  width:75%;
  flex-direction:column;
  padding-top:120px;
  gap:25px;
  text-align:center;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.65)
    ),
    url("../images/food5.jpg");

  background-size:cover;
  background-position:center;

  /* Image ko dark karne ke liye */
  filter:brightness(0.85) contrast(1.05);

  transition:right .4s ease;
  box-shadow:-22px 0 45px rgba(0,0,0,.6);
}

  .navbar.show{
    right:0;
  }
  /* Mobile dropdown clean reset */
  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    background: #111;
    border: 1px solid #222;
    margin-top: 10px;
    display: none;
  }

  /* Toggle open */
  .dropdown.open .dropdown-menu {
    display: block;
  }
}





/* second section */

/* Main container */
.hero-section {
  width: 100%;
  padding: 50px 20px;
  background: #f4f4f7;
}

/* Center heading */
.main-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  /* font-family: 'Poppins', sans-serif; */
  letter-spacing: 1px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Image Box */
.img-box {
  overflow: hidden;
  border-radius: 15px;
  background: #000;
}

/* Image Style */
.img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
cursor: pointer;
  transition: transform 0.5s ease, opacity 0.4s;
}

/* Hover Effect */
.img-box:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}




/* pop up k liye css gift card ki  */

/* ===============================
   POPUP OVERLAY
================================ */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  animation: fadeOverlay 0.3s ease;
}

/* ===============================
   POPUP BOX
================================ */
.popup-content {
  background: linear-gradient(145deg, #0f0f0f, #1b1b1b);
  width: 100%;
  max-width: 500px;
  padding: 55px 45px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  animation: popupScale 0.35s ease;
}

/* GOLD TOP LINE EFFECT */
.popup-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5d97a, #d4af37);
  border-radius: 22px 22px 0 0;
}

/* ===============================
   TEXT STYLE
================================ */
.popup-content p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: #f5d97a;
  margin: 0;
}

/* ===============================
   CLOSE BUTTON
================================ */
.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #f5d97a;
  transform: rotate(90deg) scale(1.1);
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes popupScale {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===============================
   📱 TABLET
================================ */
@media (max-width: 768px) {

  .popup-content {
    padding: 40px 25px;
    border-radius: 18px;
  }

  .popup-content p {
    font-size: 20px;
    line-height: 1.6;
  }

  .close-btn {
    font-size: 24px;
    right: 15px;
    top: 12px;
  }
}

/* ===============================
   📱 MOBILE
================================ */
@media (max-width: 480px) {

  .popup-content {
    padding: 35px 20px;
  }

  .popup-content p {
    font-size: 18px;
  }

  .close-btn {
    font-size: 22px;
  }
}



  /* last section */

footer{
      position:relative;
      width:100%;
      background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url('../images/wallppr.jpg');
      background-size:cover;
      background-position:center;
      color:#fff;
      padding:40px 20px 20px;
    }

    .footer-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      max-width:1200px;
      margin:auto;
      gap:30px;
    }

    .footer-left h3{
      margin-bottom:10px;
      font-size:20px;
    }

    .footer-left p{
      margin-bottom:8px;
      font-size:21px;
      opacity:0.9;
    }

    .footer-left i{
      margin-right:8px;
      color:#B18E3B;
    }

    .footer-right h3{
      margin-bottom:10px;
      font-size:20px;
      text-align:right;
    }

    .social-icons{
      display:flex;
      gap:15px;
      justify-content:flex-end;
    }

    .social-icons a{
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(255,255,255,0.1);
      color:#fff;
      font-size:18px;
      transition:0.3s ease;
    }

    .social-icons a:hover{
      background:#B18E3B;
      color:#000;
      transform:translateY(-3px);
    }

    .footer-bottom{
      margin-top:30px;
      padding-top:15px;
      border-top:1px solid rgba(255,255,255,0.2);
      text-align:center;
      font-size:14px;
      opacity:0.85;
    }

   /* =======================
   RESPONSIVE FOOTER
======================= */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left p {
    font-size: 18px;
  }

  .footer-right h3 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  footer {
    padding: 30px 15px 15px;
  }

  .footer-left h3,
  .footer-right h3 {
    font-size: 18px;
  }

  .footer-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
  .footer-left p {
    font-size: 15px;
  }

  .social-icons {
    gap: 10px;
  }
}


