:root {
  --color-bg: #050509;
  --color-bg-elevated: #111111;
  --color-gold: #d4af37;
  --color-gold-soft: #b89630;
  --color-accent: #917c38; /* deep emerald accent */
  --color-text: #f7f7f7;
  --color-muted: #b3b3b3;
  --color-border-subtle: rgba(255, 255, 255, 0.08);

  --font-heading: "Cormorant Garamond", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  margin: 0 0 1.5rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin: 0 0 1.25rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* Header */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  background: #050509;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  position: relative;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-gold);
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 3px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-image {
  width: 92px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.8));

  @media (min-width: 768px) {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    width: 72px;
  }
}

.logo-text {
  font-family: var(--font-heading);
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: var(--color-muted);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), var(--color-accent));
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--color-text);
}

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

@media (max-width: 720px) {
  .main-nav {
    gap: 1.4rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    position: fixed;
    inset: 0 auto 0 0;
    top: 0;
    width: 78vw;
    max-width: 280px;
    padding: 4.2rem 1.8rem 2rem;
    background: #050509;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    border-right: 1px solid rgba(212, 175, 55, 0.28);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 22;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 6.5rem 0 5rem;
  color: var(--color-text);
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.6)
    ),
    url("img/6.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.9)
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-kicker {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--color-gold-soft);
  margin-bottom: 0.9rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--color-gold);
  color: #1a1309;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  border-color: rgba(212, 175, 55, 0.6);
  color: var(--color-gold);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.9);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About */

.about-section {
  background: #050509;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

.about-image {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  max-height: 420px;
  width: 100%;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-image-wrapper {
    order: -1;
  }
}

/* Parallax Banner */

.parallax-banner {
  position: relative;
  height: 320px;
  background-image: linear-gradient(
      to top,
      rgba(5, 5, 9, 0.96),
      rgba(5, 5, 9, 0.3)
    ),
    url("img/parallax.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.parallax-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(212, 175, 55, 0.14);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.parallax-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.14), transparent 60%);
  z-index: 3;
  background: black;
  top: 0;
  left: 0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .parallax-banner {
    height: 180px;
    background-attachment: scroll;
  }
}

/* Menu */

.menu-section {
  background: #050509;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-section h2 {
  text-align: center;
  letter-spacing: 0.22em;
  font-size: 2rem;
}

.menu-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 1.2rem auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.9),
    transparent
  );
}

.section-intro {
  max-width: 32rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 2.75rem;
}

.menu-column {
  position: relative;
  padding: 0 0 2.25rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 1.25rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(212, 175, 55, 0.75),
    rgba(212, 175, 55, 0.15)
  );
}

.menu-column h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.menu-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(212, 175, 55, 0.9),
    rgba(212, 175, 55, 0.25)
  );
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  li {
    max-width: 100%;
  }
}

.menu-column > .menu-item-desc {
  max-width: 40rem;
  margin: -0.35rem 0 1rem;
}

.menu-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 0.85rem;
}

.menu-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--color-gold-soft);
}

@media (max-width: 720px) {
  .menu-subgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-name {
  font-weight: 600;
  color: #fdf7e8;
}

.menu-item-price {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 0.9rem;
}

.menu-item-desc {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

@media (max-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Booking */

.booking-section {
  background: #433e22;
}

.booking-image {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  max-height: 420px;
  width: 100%;
  position: relative; 
  margin-top: 50px;
}
.booking-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
  z-index: 1;
}



.booking-image-wrapper {
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.booking-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.booking-form {
  background: #0b0b10;
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-field label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 9, 0.8);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(179, 179, 179, 0.7);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.65);
  background: rgba(5, 5, 9, 0.95);
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

@media (max-width: 880px) {
  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .booking-form {
    padding: 1.5rem 1.2rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: #040307;
  padding-top: 2.7rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 1.7rem;
}

.footer-block h3 {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--color-gold-soft);
}

.footer-block p {
  font-size: 0.9rem;
}

.footer-block a {
  color: var(--color-muted);
}

.footer-block a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 1.1rem 1rem 1.6rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

iframe {
  opacity: 0.96;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.55);
  background: #050509;
}