/* =========================
   RESTAURANT DARDANI
   MAIN STYLE
========================= */

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0d0d0d;

  color: #f8f5f0;

  font-family: "Poppins", sans-serif;

  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;

  letter-spacing: 1px;
}

a {
  text-decoration: none;

  color: inherit;
}

img {
  max-width: 100%;

  display: block;
}

/* =========================
 NAVBAR
========================= */

.navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 80px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 8%;

  z-index: 99999;

  background: rgba(13, 13, 13, 0.55);

  backdrop-filter: blur(12px);
}

.logo {
  font-size: 34px;

  font-weight: 700;

  color: #d4af37;
}

.navbar nav {
  display: flex;

  gap: 35px;
}

.navbar nav a {
  font-size: 15px;

  position: relative;

  transition: 0.3s;
}

.navbar nav a::after {
  content: "";

  position: absolute;

  bottom: -8px;

  left: 0;

  width: 0;

  height: 2px;

  background: #d4af37;

  transition: 0.3s;
}

.navbar nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;

  background: none;

  border: none;

  color: white;

  font-size: 28px;

  cursor: pointer;

  z-index: 100000;
}

/* =========================
 HERO
========================= */

.hero {
  position: relative;

  height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  overflow: hidden;
}

.hero img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: -2;

  opacity: 0.35;

  animation: imageZoom 5s ease;
}

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.25),
    transparent 55%
  );

  opacity: 0;

  animation: heroGlow 2s forwards;

  z-index: 1;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: -1;
}

.hero-content {
  max-width: 850px;

  position: relative;

  z-index: 5;

  animation: textReveal 1.2s ease;
}

.hero h1 {
  font-size: 90px;

  color: #d4af37;
}

.hero h2 {
  font-size: 45px;

  margin-top: 20px;
}

.hero p {
  margin: 25px auto;

  font-size: 18px;

  color: #ddd;
}

.btn {
  display: inline-block;

  padding: 15px 40px;

  background: #d4af37;

  color: #111;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.4s;
}

.btn:hover {
  background: white;

  transform: translateY(-5px);
}

/* HERO ANIMATION */

@keyframes imageZoom {
  from {
    transform: scale(1.1);

    filter: brightness(0.5);
  }

  to {
    transform: scale(1);

    filter: brightness(1);
  }
}

@keyframes heroGlow {
  to {
    opacity: 0.2;
  }
}

@keyframes textReveal {
  from {
    opacity: 0;

    transform: translateY(40px);

    filter: blur(100px);
  }

  to {
    opacity: 1;

    transform: none;

    filter: blur(0);
  }
}

/* =========================
 ABOUT
========================= */

.about { 
    background: #000000;
  padding: 120px 8%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about-image img {
  height: 500px;

  width: 100%;

  object-fit: cover;

  border-radius: 20px;
}

.about-text h2 {
  font-size: 55px;

  color: #d4af37;
}
/* Language Switcher Styling */
.lang-select {
    background: rgba(17, 17, 17, 0.85);
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.lang-select:hover {
    background: #d4af37;
    color: #111;
}

.lang-select option {
    background: #111;
    color: #fff;
}
.about-text p {
  color: #ccc;

  line-height: 1.8;

  margin-top: 20px;
}.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: .3s;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.feature i {
    font-size: 34px;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 26px;
}

.feature p {
    margin: 0;
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
 MENU
========================= */

.menu-category-grid {

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:30px;

}


.menu-category-card {

    height:300px;

    position:relative;

    overflow:hidden;

    border-radius:20px;

}


.menu-category-card img {

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}


.menu-category-card div {

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;

    justify-content:center;

    align-items:center;

}


.menu-category-card h3 {

    color:#d4af37;

    font-size:40px;

}


.menu-category-card:hover img {

    transform:scale(1.1);

}

.price {
  font-size: 22px;

  font-weight: bold;
}

/* =========================
 GALLERY
========================= */

.gallery {

    padding:80px 4%;

}


.gallery h2 {

    margin-bottom:60px;

    font-size:60px;

    color:#d4af37;

    text-align:center;

}


.gallery-grid {

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.gallery-card {
  height: 320px;

  position: relative;

  overflow: hidden;

  border-radius: 18px;
}

.gallery-card img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(0, 0, 0, 0.4);

  backdrop-filter: blur(3px);
}

.gallery-overlay h3 {
  color: white;

  font-size: 40px;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* =========================
 CONTACT + FOOTER
========================= */

.contact {
  padding: 40px 8%;

  text-align: center;
}
.contact h2{
    margin-bottom: 30px;
    color: #d4af37;
    font-size: 50px;
}

.contact-info {
  display: flex;

  justify-content: center;

  gap: 80px;
}

.contact i {
  color: #d4af37;

  font-size: 30px;
}

footer {
  background: #050505;

  padding: 50px;

  text-align: center;
}

footer h2 {
  color: #d4af37;
}

.social a {
  color: #d4af37;

  font-size: 25px;

  margin: 15px;
}
/* =========================
   RESERVATION
========================= */

.reservation {
  padding: 120px 8%;

  background:
    linear-gradient(rgba(13, 13, 13, 0.75), rgba(13, 13, 13, 0.75)),
    url("../images/reservation.jpg") center/cover no-repeat;

  display: flex;

  justify-content: center;

  align-items: center;
  flex-direction: column;
height: 400px;
  text-align: center;
}

.reservation-content {
  max-width: 700px;
}

.reservation {
    padding: 120px 8%;
    background: linear-gradient(135deg, #6a2323, #8b2f2f);
    text-align: center;
}

.reservation h2 {
    color: #f4d06f;
}

.reservation p {
    color: #f5f5f5;
}
.reservation p {
  font-size: 18px;

  color: #ddd;

  line-height: 1.8;

  margin-bottom: 40px;
}

.reservation .btn {
  padding: 16px 45px;
}
.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: inherit;
}

.section-divider span {
    width: 140px;
    height: 2px;
    background: #d4af37;
    position: relative;
}

.section-divider span::before {
    content: "❦";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #101010;
    color: #d4af37;
    padding: 0 18px;
    font-size: 24px;
}/* =========================
   WHY CHOOSE DARDANI
========================= */

.why-us {
    padding: 100px 8%;
    background: linear-gradient(180deg, #161616 0%, #101010 100%);
    text-align: center;
}

.why-us h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 20px;
}

.why-us::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: #d4af37;
    margin: 20px auto 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-grid div {
    position: relative; /* added */
    background: rgba(255, 255, 255, 0);
    border-radius: 18px;
    padding: 40px 30px;
    transition: all .35s ease;
    overflow: hidden; /* added – keeps image inside rounded corners */
    isolation: isolate; /* added – creates stacking context */
    background-size: cover; /* added */
    background-position: center; /* added */
    min-height: 280px; 
}
.why-grid div:nth-child(1) {
    background-image: url('/images/3.jpeg');
    background-position: center 30%;
}

.why-grid div:nth-child(2) {
    background-image: url('/images/freshingridients.jpeg');
    background-position: center 40%;
}

.why-grid div:nth-child(3) {
    background-image: url('/images/family.jpeg');
    background-position: center 20%;
}

.why-grid div:nth-child(4) {
    background-image: url('/images/weddings.jpeg');
    background-position: center 30%;
}
/* ----- overlay: darkens image so text stays readable ----- */
.why-grid div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 18px;
    z-index: 0;
    transition: background 0.3s;
}
/* all content sits above the overlay */
.why-grid div > * {
    position: relative;
    z-index: 2;
}
/* hover: overlay lightens slightly */
.why-grid div:hover::before {
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(2px) brightness(1.1);
}
.why-grid div:hover {
    border: 5px solid #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.why-grid i {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 25px;
}

.why-grid h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.why-grid p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile */

@media (max-width: 768px) {

    .why-us {
        padding: 80px 20px;
    }

    .why-us h2 {
        font-size: 42px;
    }

    .why-grid {
        gap: 20px;
    }

    .why-grid div {
        padding: 30px 25px;
    }

    .why-grid i {
        font-size: 40px;
    }

    .why-grid h3 {
        font-size: 28px;
    }
}/* =========================
   MENU CATEGORY CARDS
========================= */



.menu-category-card {

    height:320px;

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}


.menu-category-card img {

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}



.menu-category-card::before {

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.2),
        rgba(0,0,0,.75)
    );

    z-index:1;

}



.menu-category-card div {

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}



.menu-category-card h3 {

    color:#d4af37;

    font-size:42px;

    text-align:center;

    font-family:"Cormorant Garamond",serif;

    transition:.3s;

}



.menu-category-card:hover img {

    transform:scale(1.1);

}



.menu-category-card:hover h3 {

    transform:translateY(-5px);

    color:white;

}





/* =========================
   MENU PAGE
========================= */


.menu-page {

    min-height:100vh;

    background:#101010;

    padding:100px 8%;

}



.menu-page h1 {

    text-align:center;

    color:#d4af37;

    font-size:70px;

    margin-bottom:60px;

    font-family:"Cormorant Garamond",serif;

}



.menu-back {

    display:inline-block;

    margin-bottom:30px;

    color:#d4af37;

    font-size:18px;

}




/* PRODUCT GRID */

.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}




/* PRODUCT CARD */

.menu-card {
    background: #181818;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}



.menu-card:hover {

    transform:translateY(-10px);

}



.menu-card img {

    width:100%;

    height:260px;

    object-fit:cover;

}



.menu-card-content {

    padding:25px;

}



.menu-card-content h4 {

    color:#d4af37;

    font-family:"Cormorant Garamond",serif;

    font-size:32px;

    margin-bottom:10px;

}



.menu-card-content p {

    color:#ccc;

    line-height:1.7;

    margin-bottom:15px;

}



.menu-card-content strong {

    color:white;

    font-size:22px;

}






/* =========================
   MOBILE
========================= */


@media(max-width:768px){


    .menu-category-grid {
        gap:10px;
  grid-template-columns:repeat(2, 1fr);
    }


    .menu-category-card {

        height:250px;

    }


    .menu-category-card h3 {

        font-size:32px;

    }


    .menu-page {

        padding:80px 20px;

    }


    .menu-page h1 {

        font-size:45px;

    }


    .menu-card img {

        height:220px;

    }


}.category-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .category-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-products {
        grid-template-columns: 1fr;
    }
}.back {
    position: fixed;

    top: 30px;
    left: 30px;

    z-index: 999;

    padding: 12px 25px;

    border-radius: 30px;

    background: #d4af37;

    color: #111;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}


.back:hover {
    background: white;

    transform: translateY(-3px);
}


@media(max-width:768px){

    .back {

        top:15px;

        left:15px;

        padding:10px 18px;

        font-size:14px;

    }

}.menu-page {
    position: relative;
}


.menu-back {

  background: #d4af37;

    display: inline-block;

    margin: 30px 0 0 8%;

    padding: 12px 25px;

    border-radius: 30px;

    background: #d4af37;

    color: #111;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;

}


.menu-back:hover {

    background: white;

    transform: translateY(-3px);

}


@media(max-width:768px){

    .menu-back {

        margin:20px;

        padding:10px 18px;

        font-size:14px;

    }

}/* =========================
   IMAGE POPUP
========================= */

.image-modal {

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    z-index:99999;

    justify-content:center;

    align-items:center;

    padding:30px;

}


.image-modal img {

    max-width:90%;

    max-height:85vh;

    border-radius:20px;

    object-fit:contain;

    animation:zoomImage .3s ease;

}


.close-modal {

    position:absolute;

    top:30px;

    right:40px;

    font-size:45px;

    color:white;

    cursor:pointer;

}



@keyframes zoomImage {

    from {
        transform:scale(.7);
        opacity:0;
    }

    to {
        transform:scale(1);
        opacity:1;
    }

}/* =========================
   IMAGE POPUP
========================= */

.image-modal {

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    z-index:999999;

    justify-content:center;

    align-items:center;

    padding:30px;

}



.image-modal img {

    max-width:90%;

    max-height:90%;

    border-radius:20px;

    object-fit:contain;

}



.close-modal {

    position:absolute;

    top:30px;

    right:40px;

    font-size:50px;

    color:white;

    cursor:pointer;

}



.menu-image {

    cursor:pointer;

    transition:.4s;

}



.menu-image:hover {

    transform:scale(1.05);

}@media(max-width:1024px){

    .menu-category-grid {

        grid-template-columns:repeat(2, 1fr);

    }

}


@media(max-width:768px){

    .menu-category-grid {

        grid-template-columns:repeat(2, 1fr);

    }

}.menu-card-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}


.menu-price {
    color:#d4af37;
    font-size:22px;
    white-space:nowrap;
}


.no-image .menu-card-content {
    padding:25px;
}/* =========================
   MENU CATEGORY SECTION
========================= */

.menu {
    padding: 80px 4%;
}


.menu h2 {
    margin-bottom: 60px;
    font-size: 60px;
    color:#d4af37;
    text-align:center;
}


.experience-divider {
    padding: 55px 20px;
    background: #1b1b1b;
    text-align: center;
    color: white;
}


.divider-content span {
    color: #c89b3c;
    font-size: 22px;
}


.divider-content h2 {
    margin: 15px 0;
    font-size: 34px;
    font-family: serif;
}


.divider-content p {
    max-width: 600px;
    margin: auto;
    color: #ddd;
    font-size: 17px;
    line-height: 1.6;
}


@media(max-width:768px){

    .experience-divider {
        padding: 40px 15px;
    }

    .divider-content h2 {
        font-size: 26px;
    }

}/* =========================
   MENU BACKGROUND
========================= */

.menu {
    position: relative;
    padding: 80px 8%;
    isolation: isolate;
    overflow: hidden;
}


.menu::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../images/menusection.jpeg");
    background-size: cover;
    background-position: center;

    opacity: 0.18;

    z-index: -1;
}


.menu::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(13,13,13,0.92);

    z-index: -1;
}


.menu h2 {
    position: relative;
    z-index: 1;
}