:root {
  --bg: #ffffff;
  --text: #222222;
  --accent: #9a2020;
  --bg-secondary: #f7f7f7;
}

body.dark {
  --bg: #1b1b1b;
  --text: #e5e5e5;
  --bg-secondary: #2b2b2b;
}

* {box-sizing: border-box;}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {color: var(--accent); text-decoration: none;}
a:hover {text-decoration: underline;}

.container {width: 70%; max-width: 1200px; margin: auto;}

.site-header {
  background: rgba(0,0,0,0.6);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.header-inner {display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0;}

/*.logo {font-size: 1.5rem; font-weight: 700; color: #fff;}*/

.nav a {margin: 0 0.5rem; color: #fff;}

.controls {display: flex; align-items: center; gap: 1rem; color: #fff; font-size: 0.85rem;}

#mode-toggle {background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer;}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {background: rgba(0,0,0,0.55); padding: 2rem; border-radius: 10px; color: #fff;}

.hero-content h1 {font-size: 2.8rem; margin-top: 0;}

.btn, .btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {background: var(--accent); color: #fff; border: none;}
.btn:hover {opacity: 0.8;}

.btn-outline {border: 2px solid var(--accent); color: var(--accent);}
.btn-outline:hover {background: var(--accent); color: #fff;}

.intro, .menu-section, .about-section, .contact-section {padding: 4rem 0;}

.page-hero {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-title {
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.featured-menu .grid, .menu-section .grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.3s;
}
.card img {width: 100%; height: 200px; object-fit: cover;}
.card:hover {transform: translateY(-5px);}
.card h3 {margin: 0.8rem 0 0.4rem;}
.card p {margin: 0;}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-details, .contact-form {flex: 1 1 300px;}

.contact-form form {
  display: grid;
  gap: 0.75rem;
}
.contact-form label {display: flex; flex-direction: column; font-weight: 600;}
.contact-form input, .contact-form button {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 2rem;
  border-radius: 10px;
}

.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 600px) {
  .hero-content h1 {font-size: 2rem;}
  .page-title {font-size: 1.8rem;}
}
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile styling */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
  }
.nav a {
  color: #333 !important; /* Dark text */
  text-decoration: none;
  font-weight: 500;
}
  .nav.active {
    display: flex !important;
  }

  .hamburger {
    display: block;
  }
  .nav a:hover {
  color: #c0392b; /* red hover */
}
/* Default desktop nav hidden, hamburger shown only on mobile */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  margin-right: -20px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.mobile-nav a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* Show hamburger & slide nav only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none; /* hide desktop nav on mobile */
  }
}

/* When menu is active */
.mobile-nav.active {
  right: 0;
}
/* Layout control for logo and hamburger icon */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Make hamburger sit in top-right */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Show on mobile */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav {
    display: none;
  }
}
/* Overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

/* Slide-in menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 60px 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 999;
  border-left: 3px solid var(--accent);
}

/* Show overlay and slide menu */
.mobile-nav.active {
  right: 0;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside menu */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}
.close-btn:hover {
  color: var(--accent);
}

/* Menu links */
.mobile-nav a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  transition: 0.3s;
}
.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 5px;
}
}
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background: #fefcf9;
      color: #2a2a2a;
    }

    header {
      position: absolute;
      width: 100%;
      z-index: 10;
      padding: 0.3rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
    }
.logo img {
  height: 80px;
  max-width: 250px;
}

@media (max-width: 800px) {
  .logo {
    gap: 8px;
     margin-left: -10px;
  }

  .logo img {
    height: 50px;
    right: 20px;
  }

  .logo-text {
    font-size: 2rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between image and text */
  text-decoration: none;
}

.logo img {
  height: 80px; /* adjust size as needed */
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff; /* or #000 depending on your background */
}

    nav a {
      margin-left: 1.5rem;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .lang-switcher {
      position: relative;
    }

    .lang-dropdown {
      appearance: none;
      border: none;
      background: transparent;
      padding: 0.3rem 2rem 0.3rem 1rem;
      font-weight: 600;
      color: #fff;
      border-radius: 5px;
      background-color: rgba(255,255,255,0.15);
      cursor: pointer;
    }

    .lang-dropdown option {
      color: #222;
    }

    .lang-icon {
      position: absolute;
      right: 0.8rem;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      font-size: 0.8rem;
      color: #fff;
    }

    @media(max-width: 768px) {
      .lang-dropdown {
        font-size: 0.9rem;
        padding: 0.3rem 2rem 0.3rem 1rem;
      }
    }
  