:root {
  --bg-ivory: #faf9f6;
  --text-dark: #1c1c1c;
  --text-muted: #6f6f6f;
  --accent-gold: #b89b5e;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-ivory);
  color: var(--text-dark);
}

/* HERO */


.menu-hero-content {
  max-width: 620px;
  color: #fff;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 20px;
}

.menu-hero p {
  font-size: 18px;
  line-height: 1.6;
}

/* NAV */
.menu-nav {
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  gap: 28px;
  padding: 18px 8%;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.menu-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-muted);
}

.menu-nav a:hover {
  color: var(--accent-gold);
}

/* CONTENT */
.menu-wrapper {
  padding: 80px 8%;
  max-width: 1200px;
  margin: auto;
}

.menu-section {
  margin-bottom: 90px;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dotted #ccc;
  font-size: 15px;
}

/* PDF */
.menu-download {
  text-align: center;
  padding: 60px 20px;
}

.menu-download a {
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-gold);
}

/* TIMINGS */
.menu-timings {
  text-align: center;
  padding: 40px 20px 80px;
  font-size: 14px;
  color: var(--text-muted);
}
.signature-block {
  background: #fff;
  border: 1px solid #eee;
  padding: 60px;
  margin: 100px 0;
  text-align: center;
}

.signature-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 15px;
}

.signature-block p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .menu-hero {
    height: 55vh;
    padding: 0 6%;
  }

  .menu-hero h1 {
    font-size: 36px;
  }

  .menu-nav {
    overflow-x: auto;
    white-space: nowrap;
  }

  .menu-wrapper {
    padding: 60px 6%;
  }

  .menu-section h2 {
    font-size: 26px;
  }

  .signature-block {
    padding: 40px 20px;
  }
}
/* MENU SEARCH */
.menu-search {
  padding: 30px 8%;
  background: #faf9f6;
  border-bottom: 1px solid #eee;
}

.menu-search input {
  width: 100%;
  max-width: 520px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  background: #fff;
}

.menu-search input::placeholder {
  color: #999;
}

.menu-search input:focus {
  border-color: #b89b5e; /* gold accent */
}
.menu-list li {
  transition: opacity 0.2s ease;
}
/* =========================
   MENU HERO WITH IMAGE
========================= */

.menu-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/Menuhero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HERO TEXT */
.menu-hero-content {
  max-width: 640px;
  color: #ffffff;
}

.menu-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}

.menu-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
}
/* HERO MOBILE FIX */
@media (max-width: 768px) {
  .menu-hero {
    min-height: 65vh;
    padding: 0 6%;
  }

  .menu-hero-content h1 {
    font-size: 34px;
  }

  .menu-hero-content p {
    font-size: 15px;
  }
}
/* FLOATING CALL BUTTONS */
.call-float {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 9999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-float .icon {
  font-size: 18px;
}

.call-float .label {
  white-space: nowrap;
}

.call-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

/* MOBILE TWEAK */
@media (max-width: 640px) {
  .call-float {
    padding: 12px 16px;
    font-size: 13px;
  }
}
/* =========================
   FLOATING CALL BUTTONS FIX
========================= */

.floating-calls {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Base button */
.floating-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

/* Icons */
.floating-btn .icon {
  font-size: 18px;
}

/* Reception button */
.floating-btn.reception {
  background-color: #1F3D2B; /* forest */
}

/* Restaurant button */
.floating-btn.restaurant {
  background-color: #C6A664; /* gold */
}

/* Hover */
.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}


