/* ---------------------------------------------
   GLOBAL BASE STYLES
   --------------------------------------------- */

/* Document Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML & Body */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 100px;
  /* makes space for fixed nav */
  font-family: var(--font-body, 'Encode Sans Semi Condensed', sans-serif);
  background-color: #384130;
  color: black;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.5rem 0;
  font-weight: 600;
  color: black;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Anchor Tags */
a {
  color: black;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #F47721;
}

/* ---------------------------------------------
   GLOBAL UTILITIES
   --------------------------------------------- */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Primary Button */
.btn-primary {
  background-color: #F47721;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #cf6018;
}

/* Navigation Elements */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
}

/* ---------------------------------------------
   HEADER & NAVIGATION
   --------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(180deg, rgba(209, 197, 174, 0.95) 0%, rgba(209, 197, 174, 0) 100%);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.site-header.scrolled {
  background-color: #D1C5AE;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;}

.logo {
  height: 80px;
}

/* Main Nav (Desktop and Mobile Base) */
.main-nav {
  display: none;
  flex-direction: column;
  background-color: #D1C5AE;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  text-align: center;
  flex: 1;
}

.main-nav a {
  padding: 1rem;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  color: black;
}

.main-nav a:hover {
  color: #F47721;
}

/* Language Toggle in Navbar */
.lang-toggle {
  font-family: 'Encode Sans Semi Condensed', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.lang-toggle:hover {
  background-color: rgba(0, 0, 0, 0.6);
}


/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
}

/* Reserve Button */
.btn-primary {
  background-color: #F47721;
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 16px;
  display: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Overlay Base (mobile menu only) */
.nav-overlay {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #D1C5AE;
  z-index: 998;
  padding: 2rem;
}

/* Nav Overlay - Active state */
.nav-overlay.active {
  display: flex;
}

/* Nav Links in Overlay */
.nav-overlay .main-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-overlay .main-nav a {
  font-size: 1.25rem;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
}


/* -------------------
   MEDIA QUERIES
-------------------- */

/* Desktop Navigation */
@media (min-width: 768px) {
  .main-nav {
    display: flex !important;
    flex-direction: row;
    background: none;
    justify-content: space-between;
    flex: 1;
    margin: 0 2rem;
    position: static;
  }

  .hamburger {
    display: flex;
  }

  .btn-primary {
    display: inline-block;
  }

  .main-nav a:last-child {
    margin-right: 10px;
  }

  .hero__content p {
    font-size: clamp(1rem, 1rem + 1vw, 1.25rem);
    line-height: 1.6;
  }
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .logo {
    order: 1;
  }

  .btn-primary {
    order: 2;
    margin: 0 auto;
    display: inline-block;
    font-size: 0.5rem;
    padding: 3px 6px;
  }

  .nav-actions {
  gap: 0.5rem;
  display: flex;
  align-items: center;
}

  .hamburger {
    order: 3;
    display: flex;
  }
}

/* ---------------------------------------------
   FOOTER
   --------------------------------------------- */

/* Footer Wrapper */
.site-footer {
  background-color: #D1C5AE;
  padding: 2rem 0;
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.25);
  color: black;
  font-size: 0.95rem;
}

/* Top Row: Layout of Columns */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Individual Column */
.footer-col {
  flex: 1 1 300px;
}

/* Bottom Text Row */
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
}

/* Legal Links (Impressum, Privacy, Cookies) */
.footer-bottom a {
  display: inline-block;
  margin: 0 1rem;
}

.footer-bottom .legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-bottom .credits {
  text-align: center;
}


/* Social Icons */
.social-icon {
  width: 24px;
  height: 24px;
  margin: 0 0.5rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 4.5rem;
    /* leaves room for floating-menu height */
  }
}


/* ---------------------------------------------
   HERO: BASE STYLES
   --------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero__text {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 900px;
  margin: auto;
}

.hero__text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero__text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* Optional full-text variant */
.hero.fulltext .hero__text h2 {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
}


.hero__overlay h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero__overlay h2 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}


/* ---------------------------------------------
   HERO: PAGE-SPECIFIC VARIANTS
   --------------------------------------------- */

/* === Index Page === */

.hero.hero--index {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 100px;
  /* offset for nav */
  padding-bottom: 0rem;
  min-height: 400px;
  max-height: 80vh;
  overflow: hidden;
  text-align: center;
}

.hero.hero--index h1 {
  color: white;
}

/* Light overlay for readability */
.hero.hero--index::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Home video */
.hero.hero--index video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Text content */
.hero.hero--index .hero__text {
  position: relative;
  border-radius: 0.75rem;
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
  max-width: 80%;
  z-index: 1;
}

.hero.hero--index h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}


/* === Reserve Page === */

.hero--reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 70vh;
  background-color: #384130;
  text-align: center;
}

.reserve-widget-wrapper {
  width: 100%;
  max-width: 400px;
  background: rgba(209, 197, 174, 0.85);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
}



/* === Menu Page === */
.hero.hero--menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.hero.hero--menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.hero.hero--menu video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero.hero--menu .hero__overlay {
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 900px;
  width: 90%;
  margin: auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--menu h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero--menu h2 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero--menu .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--menu .hero__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.menu-buttons .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* === About Page === */
.hero.hero--about {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.hero.hero--about .hero__image {
  flex: 1;
  background-size: cover;
  background-position: center;
  height: 40vh;
}

.hero.hero--about .hero__text {
  flex: 1;
  padding: 2rem 5rem 2rem 1rem;
  background: rgba(209, 197, 174, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 60vh;
}

.hero.hero--about h1 {
  margin-top: 0;
}


/* === Wine Page === */

.hero.hero--wine {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.hero.hero--wine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.hero.hero--wine video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero.hero--wine .hero__overlay {
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 900px;
  width: 90%;
  margin: auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--wine h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero--wine h2 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero--wine .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--wine .hero__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* === Events Page === */

.hero.hero--events {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.hero--events .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero.hero--events::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.hero.hero--events .hero__overlay {
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 900px;
  width: 90%;
  margin: auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--events h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero--events h2 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero--events .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--events .hero__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* === Private Booking Page === */

.hero.hero--privatebooking {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 1rem;
  overflow: hidden;
  text-align: center;
}

.hero--privatebooking .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero.hero--privatebooking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.hero.hero--privatebooking .hero__overlay {
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 900px;
  width: 90%;
  margin: auto;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--privatebooking h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero--privatebooking h2 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero--privatebooking .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--privatebooking .hero__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero.hero--events::before,
.hero.hero--privatebooking::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* === About Page === */
.hero.hero--about {
  display: flex;
  flex-direction: row;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Light overlay over the image like other pages */
.hero.hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

/* Left-side image */
.hero.hero--about .hero__image {
  flex: 1;
  background-size: cover;
  background-position: center;
  height: 100%;
  z-index: 1;
}

/* Right-side text overlay */
.hero.hero--about .hero__text {
  flex: 1;
  padding: 3rem 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  height: 100%;
  max-width: 55%;
  margin-left: auto;
  border-radius: 0;
  /* Optional, keep square for side layout */
}

/* Heading styles */
.hero--about h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Content inside the hero text box */
.hero--about .hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--about .hero__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* === Gallery Page === */
.hero--gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 60vh;
  /* or adjust as needed */
  padding: 2rem 1rem;
}


.hero--gallery .gallery-widget-wrapper {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}

/* === Info & Review Page === */

.hero--gallery .hero__overlay,
.hero--reviews .hero__overlay,
.hero--info .hero__overlay {
  background: rgba(209, 197, 174, 0.85);
  /* consistent with all hero overlays */
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 800px;
  width: 90%;
  margin-bottom: 1.5rem;
  /* space below title box */
  z-index: 1;
  position: relative;
}

.hero--reviews,
.hero--info {
  flex-direction: column;
  align-items: center;
}

.hero--info {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  justify-content: flex-start;
}

/* Info Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 1rem auto 2rem auto;
  /* reduced top margin */
  max-width: 1000px;
  padding: 0 1rem;
}

.card {
  background-color: rgba(209, 197, 174, 0.85);
  border-radius: 0.75rem;
  padding: 2rem;
  flex: 1 1 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}


/* Reviews Cards  */

.card-grid--reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.review-card {
  background-color: #D1C5AE;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-logo {
  width: 96px;
  height: auto;
  margin-bottom: 1rem;
}

.review-score {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.review-source {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-link {
  color: #F47721;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.review-link:hover {
  text-decoration: underline;
}

/* === Text-Only Pages (Legal, Privacy, Cookies) === */
.text-page {
  background-color: #384130;
  color: black;
  padding: 6rem 1.5rem 4rem;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.text-content {
  background: rgba(209, 197, 174, 0.85);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 900px;
  width: 100%;
}

.text-page h1 {
  font-family: 'DM Serif Text', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.text-page h2 {
  font-family: var(--font-headings, 'Garet Book', sans-serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-page p {
  font-family: var(--font-body, 'Encode Sans Semi Condensed', sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: black;
}


/* ---------------------------------------------
   MEDIA QUERIES
--------------------------------------------- */

/* Tablet and Smaller: Header Navigation + Hero Adjustments */
@media (max-width: 768px) {

  /* Navigation Layout */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay.active {
    display: flex;
    flex-direction: column;
  }

  .nav-actions {
    margin-right: auto;
    margin-left: 1rem; /* adjust as needed for how far left you want it */
  }

  .lang-toggle {
    position: absolute;
    top: 1.5rem;
    right: 4.25rem;
    z-index: 20;
  }


  /* Home Font change */

  .hero.hero--index h1 {
    font-size: 1rem;
  }


  /* Unified Vertical Hero Layouts */
  .hero.hero--about {
    flex-direction: column;
  }

  .hero.hero--about {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .hero.hero--about .hero__image {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-size: cover;
    z-index: 1;
  }

  .hero.hero--about .hero__text {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: rgba(209, 197, 174, 0.5);
    overflow-y: auto;
    z-index: 2;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero--about .hero__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .hero--about .hero__content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 90%;
  }

  .review-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .review-card {
    width: 90%;
  }

  /* Scrollable Video/Image Hero Layouts */
  .hero--menu,
  .hero--wine,
  .hero--events,
  .hero--privatebooking {
    height: 100vh;
    overflow: hidden;
  }

  .hero--menu .hero__overlay,
  .hero--wine .hero__overlay,
  .hero--events .hero__overlay,
  .hero--privatebooking .hero__overlay {
    overflow-y: auto;
    max-height: calc(100vh - 4rem);
    padding-bottom: 2rem;
    margin-top: 2rem;
  }

  .hero--info,
  .hero--reviews {
    height: 100vh;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .card {
    padding: 1.5rem 1rem;
  }

  .card h3 {
    margin-bottom: 0.75rem;
  }

  .card p {
    margin-bottom: 0;
    /* remove trailing space */
  }

  .review-logo {
    width: 80px;
  }
}

/* Desktop-only spacing between Reserve and Language toggle */
@media (min-width: 769px) {
  .lang-toggle {
    margin-left: 0.75rem; /* Adjust to taste: 0.5rem, 1rem, etc. */
  }
}

/* ---------------------------------------------
   FORMS & MODALS
   --------------------------------------------- */

/* Menu Button Styling */
.menu-button {
  background-color: #F47721;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body, 'Encode Sans Semi Condensed', sans-serif);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  margin: 1rem 1rem 0 0;
}

/* Modal Container */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
}

/* Modal Active State */
.modal.active {
  display: block;
  visibility: visible;
}

/* Modal Content */
.modal-content {
  background-color: rgba(209, 197, 174, 0.95);
  margin: 3vh auto 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  /* more space at top for close + title */
  border-radius: 1rem;
  max-width: 900px;
  position: relative;
  z-index: 10000;
}

/* Modal Headings */
.modal-content h3 {
  margin-top: 0;
  font-size: 1.75rem;
  font-family: 'DM Serif Text', cursive;
  text-align: center;
}

/* Close Button */
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  cursor: pointer;
  z-index: 10001;
}

/* Menu Column Layout */
.menu-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.menu-columns>div {
  flex: 1 1 300px;
}



/* ---------------------------------------------
   TYPOGRAPHY & TEXT UTILITIES
   --------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings, 'Garet Book', sans-serif);
  color: black;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-family: var(--font-body, 'Encode Sans Semi Condensed', sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: black;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  margin: 1rem 0;
  color: #555;
}

/* ---------------------------------------------
   BUTTONS
   --------------------------------------------- */

button,
.menu-button,
.btn,
.btn-primary {
  font-family: var(--font-body, 'Encode Sans Semi Condensed', sans-serif);
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

.menu-button {
  background-color: #F47721;
  color: white;
  margin: 1rem 1rem 0 0;
}

.btn-primary {
  background-color: #F47721;
  color: white;
  margin: 1rem auto;
  order: 2;
  cursor: pointer;
}

.menu-button.view-menu {
  display: block;
  width: 100%;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
}



/* ---------------------------------------------
   LAYOUT & UTILITY CLASSES
   --------------------------------------------- */

/* Flex Container for Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}


/* (OPTIONAL) Text Banner Utility */
.hero__text.hero__text--banner {
  display: inline-block;
  background-color: rgba(209, 197, 174, 0.45);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}


/* ---------------------------------------------
   HOME & GLOBAL INTERACTIVE ELEMENTS
   --------------------------------------------- */


/* Hide Hamburger on Desktop */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
  }
}

/* Hero Video Overlay (Home Page) */
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* Ensure Nav Color Override for Home */
.hero--home .nav-container {
  background: linear-gradient(to bottom, #f5f5dc 0%, #3a3d2f 100%);
}

.hero--home .main-nav a {
  color: black;
}

.hero--home .main-nav a:hover {
  color: #F47721;
}


/* ---------------------------------------------
   FLOATING MENU BUTTONS (RESPONSIVE - ALL PAGES)
   --------------------------------------------- */

.floating-menu {
  position: fixed;
  top: 40%;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

/* Shared Button Style */
.floating-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #D1C5AE;
  color: black;
  padding: 0.5rem;
  border-radius: 0.75rem 0 0 0.75rem;
  /* desktop: right angle, left round */
  width: 60px;
  height: 60px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
}

/* Icon Inside Button */
.floating-menu img {
  width: 24px;
  height: 24px;
  margin-bottom: 0.25rem;
}

/* Hover Effect */
.floating-menu a:hover {
  background-color: #F47721;
  color: white;
}

/* ---------------------------------------------
   MOBILE OVERRIDE
   --------------------------------------------- */
@media (max-width: 768px) {
  .floating-menu {
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    height: 60px;
    background-color: #D1C5AE;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    box-shadow: none;
  }

  .floating-menu a {
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 100%;
    padding: 0.25rem;
    font-size: 0.6rem;
    border-radius: 0;
    box-shadow: none;
  }

  .floating-menu img {
    margin: 0 0 0.15rem 0;
    width: 20px;
    height: 20px;
  }
}