@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* Moor Design System Variables */
:root {
  /* Color Palette - Primary (Secondary in asset labels) */
  --primary-100: #ff8b6a;
  --primary-200: #ff5120;
  --primary-300: #d52f00;
  --primary-400: #562a0d;
  --primary-500: #400e00; /* Dark brown-black */
  --primary-500-rgb: 64, 14, 0;

  /* Color Palette - Neutral */
  --neutral-100: #ffffff;
  --neutral-200: #e3e3e3;
  --neutral-300: #c6c6c6;
  --neutral-400: #aaaaaa;
  --neutral-500: #8e8e8e;
  --neutral-600: #717171;
  --neutral-700: #555555;
  --neutral-800: #393939;
  --neutral-900: #1c1c1c;
  --neutral-1000: #000000;

  /* Theme Colors */
  --bg-cream: #faf7f2;
  --bg-cream-dark: #f0eae1;
  --bg-dark: var(--primary-500);
  --text-dark: var(--neutral-1000);
  --text-light: #ffffff;
  --text-muted: var(--neutral-700);

  /* Fonts */
  --font-serif: 'Instrument Serif', serif;
  --font-sans: 'Instrument Sans', sans-serif;
}

/* CSS Reset & General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--neutral-1000);
}

.h1-style {
  font-size: 72px;
  line-height: 1.1;
}

.h2-style {
  font-size: 56px;
  line-height: 1.1;
}

.h3-style {
  font-size: 46px;
  line-height: 1.15;
}

.h4-style {
  font-size: 38px;
  line-height: 1.2;
}

.h5-style {
  font-size: 32px;
  line-height: 1.25;
}

.h6-style {
  font-size: 26px;
  line-height: 1.3;
}

.h7-style {
  font-size: 22px;
  line-height: 1.35;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Upright serif override for combined headings */
.serif-normal {
  font-style: normal;
}

/* Body Text Styles */
.b1-style {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

.b2-style {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.b3-style {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.b4-style {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

.b5-style {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Layout Containers */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .h1-style { font-size: 36px; }
  .h2-style { font-size: 36px; }
  .h3-style { font-size: 32px; }
  .h4-style { font-size: 28px; }
  .h5-style { font-size: 24px; }
  .h6-style { font-size: 20px; }
  .h7-style { font-size: 18px; }
  .b1-style { font-size: 16px; }
  .b2-style { font-size: 14px; }
  .b3-style { font-size: 12px; }
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-cream);
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
  background-color: var(--primary-400);
  color: var(--text-light);
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: var(--neutral-100);
}

.top-bar-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-socials a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.top-bar-socials a:hover img {
  opacity: 0.7;
}

/* Main Navigation Bar */
.main-nav {
  padding: 15px 0;
  border-bottom: 1px solid var(--bg-cream-dark);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-main {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-300);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-item {
  position: relative;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-900);
}

.nav-item > a {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item > a:hover,
.nav-item.active > a {
  color: var(--primary-500);
}

.nav-item i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item:hover i {
  transform: rotate(180deg);
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 135%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--neutral-100);
  min-width: 210px;
  padding: 20px 26px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1010;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 13px 16px;
  border-radius: 6px;
  color: var(--primary-500);
  background-color: rgba(64, 14, 0, 0.05);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.dropdown-item a:hover {
  background-color: var(--primary-500);
  color: var(--neutral-100);
}

/* Reservation Underlined Link */
.reservation-btn {
  font-weight: 600;
  padding-bottom: 2px;
  text-decoration: underline;
  font-size: 20px;
}

/* Mobile Navigation Drawer */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--bg-cream);
  z-index: 999999; /* Higher than sticky header */
  transition: right 0.4s ease;
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background-color: var(--bg-cream);
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

.mobile-drawer-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.drawer-res-btn {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: underline;
}

.mobile-drawer-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--neutral-1000);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-section {
  width: 100%;
  text-align: center;
  margin-bottom: 35px;
}

.mobile-drawer-section h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-drawer-links a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s;
}

.mobile-drawer-links a:hover {
  opacity: 0.6;
}

.mobile-res-btn {
  display: none;
}

@media (max-width: 992px) {
  .top-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px !important;
    z-index: 10000000 !important;
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .top-bar .container {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 16px !important;
  }
  header {
    top: 38px !important;
  }
  .mobile-drawer {
    top: 38px !important;
    height: calc(100% - 38px) !important;
  }
  .top-bar-info {
    font-size: 11px;
    gap: 12px;
  }
  .nav-links {
    display: none;
  }
  .mobile-res-btn {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-500);
    text-decoration: underline;
    margin-right: 15px;
    margin-left: auto;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .mobile-res-btn:hover {
    color: var(--primary-200);
  }
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .divider-hours,
  .item-hours {
    display: none !important;
  }
}

/* Common Section: Make A Reservation CTA Banner */
.cta-banner {
  background-color: var(--primary-400);
  color: var(--text-light);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.cta-banner p {
  max-width: 840px;
  margin: 0 auto 20px;
  color: var(--neutral-200);
}
.cta-subtitle{
  font-weight: 500;
  text-transform: uppercase;
}
.contact-cta-btn {
  background-color: #ffffff !important;
  color: var(--primary-500) !important;
  margin-top: 20px;
}

/* Follow Us Desktop/Mobile Toggles */
.desktop-follow-us {
  display: block !important;
}

.mobile-follow-us {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-follow-us {
    display: none !important;
  }
  .mobile-follow-us {
    display: block !important;
  }
}

.btn-primary {
  display: inline-block;
  background-color: rgba(64, 14, 0, 0.08);
  color: var(--neutral-1000);
  padding: 15px 25px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-500);
  color: var(--text-light);
}

/* Reservation CTA Button Desktop / Mobile Defaults */
.desktop-res-btn {
  display: inline-block;
}

.mobile-res-btn-bottom {
  display: none;
}

/* Footer Section with Parallax Effect */
.footer-wrapper {
  position: relative;
  width: 100%;
  height: 990px; /* Taller height for desktop parallax effect */
  overflow: hidden;
  background-image: url('../img/footer-banner.png');
  background-attachment: fixed; /* Parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-start; /* Moved closer to the top */
  padding-top: 60px; /* Margins from absolute top */
}

.footer-overlay-box {
  background-color: #000000; /* Solid black container overlap */
  color: #ffffff;
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 32px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 6fr 1fr 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--neutral-800);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-brand .logo-img {
  height: 44px;
  width: auto;
}

.footer-brand .logo-main {
  color: #ffffff;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials img{
  width: 24px;
  height: 24px;
}
.footer-column h4 {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul a {
  color: var(--neutral-100);
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-column ul a:hover {
  cursor: pointer;
}

.footer-others-mobile {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--neutral-100);
}

.footer-bottom-links {
  display: flex;
  gap: 5px;
}

.footer-bottom a:hover {
  font-weight: 500;
}

@media (max-width: 768px) {
  .mobile-drawer-section h3{
    font-style: normal;
  }
  .desktop-res-btn {
    display: none !important;
  }
  .mobile-res-btn-bottom {
    display: inline-block !important;
    font-size: 18px;
  }
  .footer-wrapper {
    min-height: 1250px; /* Tall height to show parallax and fit content on mobile */
    height: auto;
    padding: 0;
    background-image: url('../img/footer-banner-mobile.png') !important;
    background-attachment: fixed; /* Parallax effect on mobile */
    display: flex;
    align-items: flex-start; /* Move overlay box closer to the top */
    padding-top: 30px; /* Spacing from top edge */
  }
  .footer-overlay-box {
    width: calc(100% - 30px);
    padding: 40px 20px;
    margin-bottom: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1 / span 2;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-brand .footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .footer-column {
    text-align: left;
  }
  .footer-column ul {
    align-items: flex-start;
  }
  .footer-others-mobile {
    display: block;
  }
  .footer-bottom-links {
    display: none !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Booking Lightbox Modal */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 80%;
  max-height: 750px;
  background-color: #faf7f2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

/* Footer Logo Sizing */
.footer-brand .logo-img {
  width: 165px !important;
  height: 48px !important;
  object-fit: contain !important;
}

/* Explore link arrow animation and spacing styling */
.hero-explore {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.hero-explore i {
  margin-left: 20px;
  transition: margin-left 0.3s ease;
}

.hero-explore:hover i {
  margin-left: 8px;
}

.hero-explore:hover {
  border-bottom: 1px solid currentColor;
}


