    :root {
      --white: #fff;
      --black: #000;
      --gray: #aaa;
      --font-title: 'Playfair Display', serif;
      --font-accent: 'Cinzel', serif;
      --font-body: 'Inter', sans-serif;
    }

    * {
      margin: 0; padding: 0;
      box-sizing: border-box;
    }

    html, body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* 🧠 GENERAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}




body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
}



  

   
    /* ========== ABOUT SECTION ========== */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem 8%;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text {
  flex: 1;
  animation: fadeInLeft 1.5s ease forwards;
  opacity: 0;
  transform: translateX(-40px);
}

.about-text h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
}

.about-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 600px;
}

.about-image {
  flex: 1;
  animation: fadeInRight 1.5s ease forwards;
  opacity: 0;
  transform: translateX(40px);
}

.about-image img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  /* filter: grayscale(100%); */ /* ❌ remove this line */
}


/* ========== ANIMATIONS ========== */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
  }

  .about-text, .about-image {
    transform: none !important;
    opacity: 1 !important;
    animation: none;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    margin-top: 2rem;
  }
}
/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--black);
  color: var(--white);
  padding: 5rem 8%;
  text-align: center;
}

.why-choose h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  background: rgba(255 255 255 / 0.05);
  border: 1px solid rgba(255 255 255 / 0.1);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature:hover {
  background: rgba(255 255 255 / 0.12);
}

.icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  user-select: none;
}

.feature h3 {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 260px;
  color: var(--gray);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.featured-dishes {
  background: var(--black);
  color: var(--white);
  padding: 5rem 8%;
  position: relative;
  overflow: visible;
}

.featured-dishes h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 5;
}

.dishes-wrapper {
  position: relative;
}

.dishes-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1rem;
  scroll-padding-right: 1rem;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}

.dishes-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.dish-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.8);
  transition: transform 0.4s ease;
  border: 1px solid rgba(255 255 255 / 0.1);
}

.dish-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.5s ease;
  border-bottom: 1px solid rgba(255 255 255 / 0.1);
}

.dish-card:hover img {
  transform: scale(1.08);
}

.dish-info {
  padding: 1rem 1.2rem;
  color: var(--white);
  text-align: center;
}

.dish-info h3 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.dish-info p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray);
}

/* FADES to hint scroll */
.fade-left,
.fade-right {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 6rem;
  height: 100%;
  z-index: 10;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .dish-card {
    flex: 0 0 240px;
  }

  .dish-card img {
    height: 150px;
  }
}
.reserve-event {
  background: var(--black);
  color: var(--white);
  padding: 4rem 8%;
  font-family: var(--font-body);
}

.reserve-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.reserve-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  filter: grayscale(100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
  object-fit: cover;
  height: auto;
  display: block;
}

.reserve-text {
  flex: 1;
}

.reserve-text h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.reserve-text p {
  font-weight: 300;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--gray);
  max-width: 480px;
}

.btn-reserve {
  font-size: 1.1rem;
  padding: 1rem 2.8rem;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.btn-reserve:hover,
.btn-reserve:focus {
  background: var(--white);
  color: var(--black);
  outline: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .reserve-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .reserve-image img {
    max-width: 100%;
    filter: none; /* optional: remove grayscale on small screens */
  }

  .reserve-text {
    max-width: 100%;
  }
}
.testimonials {
  background: var(--black);
  color: var(--white);
  padding: 5rem 8%;
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
}

.testimonials h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  text-align: center;
}

.testimonials-container {
  display: flex;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: scrollTestimonials 20s linear infinite;
  /* prevent wrapping */
  flex-wrap: nowrap;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  color: var(--black);
  font-style: italic;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  z-index: 2;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #222;
}

.client-info {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  color: #555;
}

/* Animation keyframes to scroll container from 0 to -50% (half width) */
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-container {
    animation-duration: 30s;
  }

  .testimonial-card {
    min-width: 260px;
    max-width: 280px;
    padding: 2rem 1.5rem;
  }

  .quote {
    font-size: 1rem;
  }
}


/* Responsive */
@media (max-width: 600px) {
  .faq {
    padding: 3rem 5%;
    border-radius: 0;
    box-shadow: none;
  }

  .faq h2 {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
  }

  .faq-answer {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }
}

.best-dishes {
  background: var(--black);
  color: var(--white);
  padding: 6rem 8%;
  font-family: var(--font-body);
  max-width: 1200px;
  margin: 0 auto 6rem;
  text-align: center;
}

.best-dishes h2 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 15px rgba(255 255 255 / 0.25);
}

.dishes-grid {
  display: grid;
  gap: 2.8rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dish-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  cursor: pointer;
  background: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
  transition: transform 0.35s ease;
}

.dish-card:hover,
.dish-card:focus-within {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(255,255,255,0.25);
  z-index: 2;
}

.dish-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dish-card:hover img {
  transform: scale(1.12);
}

.dish-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 2rem;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  backdrop-filter: blur(6px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: left;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.dish-card:hover .dish-info {
  transform: translateY(0);
}

.dish-info h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.dish-info p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
  color: #ddd;
}

/* Responsive */

@media (max-width: 768px) {
  .dish-card img {
    height: 180px;
  }
}

.daily-recommendations {
  background: var(--black);
  color: var(--white);
  padding: 6rem 8%;
  max-width: 1200px;
  margin: 0 auto 6rem;
  font-family: var(--font-body);
  text-align: center;
}

.daily-recommendations h2 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 15px rgba(255 255 255 / 0.25);
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
}

.recommendation-card {
  position: relative;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.7);
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recommendation-card:hover,
.recommendation-card:focus-within {
  transform: scale(1.05);
  box-shadow: 0 14px 40px rgba(255,255,255,0.3);
  z-index: 10;
}

.recommendation-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.recommendation-card:hover img {
  transform: scale(1.12);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-title);
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(255 255 255 / 0.7);
  user-select: none;
  pointer-events: none;
}

.rec-info {
  padding: 1.6rem 1.8rem 2rem;
  color: var(--white);
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  margin-top: -64px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.rec-info h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
}

.rec-info p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}
#chatbot {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-body);
    z-index: 1500;
  }

  #chatbot-toggle {
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  #chatbot-toggle:hover,
  #chatbot-toggle:focus {
    background-color: rgba(255 255 255 / 0.15);
    outline: none;
    transform: scale(1.1);
  }

  #chatbot-window {
    position: fixed;
    bottom: 70px;
    right: 1.5rem;
    width: 320px;
    max-width: 90vw;
    height: 420px;
    background: var(--black);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--white);
    font-size: 0.9rem;
    animation: fadeInUp 0.4s ease forwards;
  }

  #chatbot-window[hidden] {
    display: none;
  }

  #chatbot-window header {
    background: #111;
    padding: 1rem 1.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #chatbot-window header button {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
  }
  #chatbot-window header button:hover,
  #chatbot-window header button:focus {
    color: #bbb;
    outline: none;
  }

  #chatbot-messages {
    flex: 1;
    padding: 1rem 1.5rem;
    overflow-y: auto;
    background: #222;
    font-weight: 300;
    outline: none;
  }

  .message {
    margin-bottom: 1rem;
    max-width: 80%;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    line-height: 1.3;
  }
  .message.user {
    background: #fff;
    color: #000;
    margin-left: auto;
    font-weight: 500;
    text-align: right;
  }
  .message.bot {
    background: #333;
    color: #eee;
    margin-right: auto;
  }

  #chatbot-form {
    display: flex;
    border-top: 1px solid #444;
    background: #111;
  }
  #chatbot-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    color: var(--white);
  }
  #chatbot-input::placeholder {
    color: #777;
  }
  #chatbot-input:focus {
    outline: none;
    background: #222;
  }
  #chatbot-form button {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    padding: 0 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  #chatbot-form button:hover,
  #chatbot-form button:focus {
    color: #bbb;
    outline: none;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 400px) {
    #chatbot-window {
      width: 90vw;
      height: 400px;
      right: 5%;
      bottom: 70px;
    }
  }
    nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
  }

  .logo {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    cursor: pointer;
  }

  /* Desktop nav links */
  ul.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 0;
  }

  ul.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1.3px;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
  }

  ul.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
  }

  ul.nav-links li a:hover,
  ul.nav-links li a:focus {
    color: var(--gray);
  }

  ul.nav-links li a:hover::after,
  ul.nav-links li a:focus::after {
    width: 100%;
  }

  /* Desktop language selector */
  .lang-select {
    position: relative;
    margin-left: 2.5rem;
    user-select: none;
  }

  .lang-select button {
    background: transparent;
    color: var(--white);
    border: 1.8px solid var(--white);
    padding: 0.45rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .lang-select button:hover,
  .lang-select button:focus {
    background: var(--white);
    color: var(--black);
    outline: none;
  }

  .lang-select ul {
    position: absolute;
    top: 120%;
    right: 0;
    background: #222;
    border: 1px solid var(--gray);
    display: none;
    flex-direction: column;
    width: 180px;
    z-index: 1500;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.7);
  }

  .lang-select[aria-expanded="true"] ul {
    display: flex;
  }

  .lang-select ul li {
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9rem;
    transition: background-color 0.25s ease;
  }

  .lang-select ul li:hover,
  .lang-select ul li:focus {
    background: var(--gray);
    color: var(--black);
    outline: none;
  }

  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1500;
  }

  .hamburger span {
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
  }

  /* Hamburger morph to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile menu overlay wrapper */
  #mobile-menu-wrapper {
    position: fixed;
    inset: 0; /* top,right,bottom,left = 0 */
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1399;
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  /* Show overlay */
  #mobile-menu-wrapper.show {
    display: block;
    opacity: 1;
  }

  /* Mobile menu slides from left */
  #mobile-menu {
    position: fixed;
    top: 0;
    left: -280px; /* offscreen left */
    height: 100vh;
    width: 280px;
    background: #111;
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1400;
    box-shadow: 3px 0 12px rgba(0,0,0,0.9);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    opacity: 0;
    animation: none;
  }

  /* Show mobile menu */
  #mobile-menu.show {
    left: 0;
    opacity: 1;
    animation: bounceInLeft 0.4s ease forwards;
  }

  /* Bounce animation */
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    60% {
      opacity: 1;
      transform: translateX(30px);
    }
    80% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Larger, spaced nav links with fade-in */
  #mobile-menu a {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }

  #mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
  #mobile-menu a:nth-child(2) { animation-delay: 0.2s; }
  #mobile-menu a:nth-child(3) { animation-delay: 0.3s; }
  #mobile-menu a:nth-child(4) { animation-delay: 0.4s; }

  /* Fade in up */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile language select styled pill with arrow */
  .mobile-lang-select select {
    width: 100%;
    padding: 0.65rem 1.2rem;
    background: #222;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1.2px;
    cursor: pointer;
    appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, var(--white) 50%),
      linear-gradient(135deg, var(--white) 50%, transparent 50%);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px;
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
  }

  .mobile-lang-select select:hover,
  .mobile-lang-select select:focus {
    background-color: #444;
    outline: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    ul.nav-links,
    .lang-select {
      display: none;
    }
    .hamburger {
      display: flex;
    }
  }
  #mobile-menu a {
  text-decoration: none !important; /* Remove underline */
  position: static !important;       /* Remove relative positioning used for underline */
}

#mobile-menu a:hover,
#mobile-menu a:focus {
  text-decoration: none !important; /* No underline on hover/focus */
  color: var(--gray);                /* Keep the subtle color change */
}

#mobile-menu a::after {
  content: none !important;          /* Remove the underline pseudo element */
}
.mobile-lang-select {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.mobile-lang-options {
  display: flex;
  gap: 1rem;
  background: #111;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gray);
}

.mobile-lang-options button {
  background: transparent;
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-lang-options button:hover,
.mobile-lang-options button.active {
  background: var(--white);
  color: var(--black);
}
.contact-banner {
  background: linear-gradient(to bottom, #0b0b0b, #000);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-subtext {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.contact-btn {
  font-family: 'Manrope', sans-serif;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 transparent;
}

.contact-btn:hover {
  background-color: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

:root {
  --white: #fff;
  --gray: #e0e0e0;
  --black: #111;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}


.fdlux-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  padding: 5rem 6vw;
  background-color: #000;
}

.fdlux-card {
  display: flex;
  flex-direction: column;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.fdlux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.03);
}

.fdlux-image-wrapper {
  margin: 0;
  overflow: hidden;
  max-height: 500px;
}

.fdlux-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.5s ease;
}

.fdlux-card:hover .fdlux-image {
  filter: grayscale(20%) brightness(1);
}

.fdlux-text {
  padding: 2rem;
  font-family: PlayFair Display;
}

.fdlux-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.fdlux-desc {
  font-size: 1.05rem;
  color: #ccc;
  line-height: 1.7;
}
 /* Loader Wrapper */
    #loader {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 1.4s ease-in-out, visibility 1.4s ease-in-out;
    }

    .loader-inner {
      text-align: center;
      opacity: 0;
      animation: fadeIn 1.5s ease forwards;
    }

    .loader-inner h1 {
      font-size: 2.5rem;
      font-family: PlayFair Display;
      color: #fff;
      letter-spacing: 4px;
      text-transform: uppercase;
      text-shadow: 0 0 30px rgba(255, 255, 255, 0.07);
      opacity: 0;
      animation: slideIn 1.6s ease-out forwards;
    }

    .loader-inner p {
      font-size: 1.2rem;
      color: #aaa;
      margin-top: 0.8rem;
      letter-spacing: 1px;
      opacity: 0;
      animation: fadeIn 1.5s ease forwards 0.6s;
    }

    /* Glowing Dots */
    .dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 2rem;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: white;
      opacity: 0;
      animation: glow 1.4s infinite ease-in-out;
    }

    .dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    /* Animations */
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    @keyframes slideIn {
      0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(4px);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @keyframes glow {
      0%, 100% {
        opacity: 0.1;
        transform: scale(0.8);
        box-shadow: 0 0 0 transparent;
      }
      50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
      }
    }
.logo {
  text-decoration: none;
  cursor: pointer; /* Optional, to keep pointer cursor */
  color: inherit;   /* Keep inherited text color */
  /* Add any other styles you had on .logo */
}
