:root {
  --bg: #0f1214;
  --panel: #171b1f;
  --text: #f6efe4;
  --muted: #cfc7b7;
  --gold: #e3b24f;
  --green: #3f6b42;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
}

section {
  scroll-margin-top: 80px;
}

.navbar {
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 18, 20, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.navbar-brand,
.section-title,
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--text) !important;
  letter-spacing: 0.04em;
}

.site-logo {
  width: auto;
  height: 68px;
  max-width: min(310px, 72vw);
  object-fit: contain;
}

.nav-link {
  color: var(--text) !important;
  margin: 0 0.4rem;
  font-weight: 500;
}

.btn-gold {
  background: var(--gold);
  color: #1a140d;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 178, 79, 0.25);
  color: #1a140d;
  background: #f0bf5b;
}

.footer .btn-gold {
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer .btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227, 178, 79, 0.2);
}

.btn-outline-light {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
}

.hero-section {
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 12, 0.8), rgba(8, 10, 12, 0.45));
}

.hero-section .container {
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-section h1 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  max-width: 700px;
  margin-bottom: 1rem;
}

.hero-section .lead {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
}

.section {
  padding: 6rem 0;
}

.about-section,
.reservation-section {
  background: linear-gradient(180deg, var(--bg), #15191d);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.about-section p,
.reservation-section p,
.footer p,
.menu-card p {
  color: var(--muted);
}

.menu-section {
  background: var(--panel);
}

.gallery-section {
  background: linear-gradient(180deg, #15191d, var(--bg));
}

.gallery-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.page-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(15, 18, 20, 0.95), rgba(23, 27, 31, 0.85)), url('imgs/island-kitchen-hero-bg.jpg') center/cover;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: var(--muted);
  max-width: 700px;
}

.menu-page-section {
  padding: 1rem 0 3rem;
}

.menu-image-card {
  display: block;
  height: 100%;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
}

.menu-image-card img {
  border-radius: 0.7rem;
  height: auto;
}

.nav-pills .nav-link {
  color: var(--text) !important;
  background: transparent;
  border: 1px solid var(--border);
  margin: 0 0.4rem;
  border-radius: 999px;
}

.nav-pills .nav-link.active {
  background: var(--gold);
  color: #1a140d !important;
  border-color: var(--gold);
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.2rem 1.25rem;
  height: 100%;
}

.menu-card h4 {
  margin-bottom: 0.4rem;
}

.price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.dietary-tag {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(63, 107, 66, 0.2);
  color: #9ed3a7;
  font-size: 0.8rem;
  border: 1px solid rgba(63, 107, 66, 0.35);
}

.reservation-card,
.map-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 1.5rem;
}

.visit-intro {
  margin-bottom: 1.5rem;
}

.visit-card {
  padding: 1.3rem;
}

.visit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.visit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(227, 178, 79, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-item h5 {
  margin-bottom: 0.25rem;
}

.visit-item p {
  margin-bottom: 0;
}

.map-card {
  padding: 0.8rem;
  overflow: hidden;
  height: 100%;
}

.map-card iframe {
  border-radius: 1rem;
  display: block;
  min-height: 450px;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.form-control::placeholder {
  color: #999;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(227, 178, 79, 0.2);
}

.alert {
  border-radius: 1rem;
}

.footer {
  background: #090b0d;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer h5 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.social-links a {
  color: var(--gold);
  text-decoration: none;
  margin-right: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bi {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: #8e8b84;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 5rem;
  }

  .section {
    padding: 4.5rem 0;
  }
}
