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

:root {
  --bg-dark: #161513;
  --bg-dark-accent: #22201E;
  --bg-cream: #FAF7F2;
  --bg-cream-dark: #F3ECE2;
  --primary-gold: #C5A880;
  --primary-gold-dark: #A88D66;
  --text-dark: #2C2A29;
  --text-light: #FAF7F2;
  --text-muted: #8E877F;
  --text-muted-dark: #A59E95;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.gold-text { color: var(--primary-gold); }
.serif-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #fff;
}

.btn-gold:hover {
  background-color: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline-gold {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background-color: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: #fff;
}

.btn-light {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.btn-light:hover {
  background-color: transparent;
  border-color: var(--bg-cream);
  color: var(--bg-cream);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(22, 21, 19, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--bg-cream);
  letter-spacing: 0.05em;
}

.navbar.scrolled .nav-logo {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-item {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-cream-dark);
}

.navbar.scrolled .nav-item {
  color: rgba(250, 247, 242, 0.8);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

.nav-item:hover {
  color: var(--primary-gold);
}

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

.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* Burger Menu */
.burger-menu {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.burger-bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--bg-cream);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(22, 21, 19, 0.4) 0%, rgba(22, 21, 19, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  font-weight: 500;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 500;
}

.hero-text {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Sections General */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

/* Elegant Separator */
.title-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.title-decorator::before, .title-decorator::after {
  content: '';
  height: 1px;
  width: 60px;
  background-color: var(--primary-gold);
}

.title-decorator .diamond {
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold);
  transform: rotate(45deg);
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text-block {
  padding-right: 2rem;
}

.intro-text-block p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.intro-text-block p.highlight {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.intro-image-container {
  position: relative;
}

.intro-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary-gold);
  z-index: 1;
  pointer-events: none;
}

.intro-image {
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 21, 19, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  border: 1px solid rgba(197, 168, 128, 0.4);
  margin: auto;
  box-sizing: border-box;
}

.gallery-zoom-icon {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  border: 1px solid var(--primary-gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Info Section (Practical details) */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: stretch;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background-color: var(--bg-cream-dark);
  padding: 2.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.info-card:hover {
  border-bottom-color: var(--primary-gold);
  transform: translateY(-5px);
}

.info-card-dark {
  background-color: var(--bg-dark-accent);
  color: var(--bg-cream);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
  letter-spacing: 0.02em;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.info-card-dark p {
  color: var(--text-muted-dark);
}

.info-card .highlight-val {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 1rem;
}

.info-card-dark .highlight-val {
  color: var(--bg-cream);
}

.map-container {
  position: relative;
  min-height: 350px;
  height: 100%;
  border: 1px solid var(--primary-gold);
  padding: 8px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-cream-dark);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted-dark);
  font-weight: 300;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bg-cream);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(250, 247, 242, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg-cream);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #161513;
  transform: translateY(-3px);
}

.social-icon svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  font-weight: 300;
}

/* Menu Page Styles */
.menu-hero {
  padding: 12rem 0 6rem;
  background-color: var(--bg-dark);
  color: var(--bg-cream);
  text-align: center;
  position: relative;
}

.menu-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
}

.menu-hero-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.menu-hero-text {
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0.05em;
}

.menu-container {
  padding: 6rem 0;
}

.menu-section-wrapper {
  margin-bottom: 6rem;
}

.menu-section-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary-gold-dark);
  text-align: center;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  padding-right: 1rem;
  line-height: 1.3;
}

.menu-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(44, 42, 41, 0.2);
  margin-bottom: 0.4rem;
  margin-right: 1rem;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-gold-dark);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

/* Supplements Specific Style */
.menu-supplements {
  background-color: var(--bg-cream-dark);
  padding: 3rem;
  border: 1px solid rgba(197, 168, 128, 0.25);
  margin-top: 4rem;
}

.menu-supplements .menu-grid {
  gap: 2rem 4rem;
}

.menu-supplements-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-supplements .menu-item-name {
  font-size: 1.15rem;
  font-weight: 500;
}

.menu-supplements .menu-item-price {
  font-size: 1.15rem;
}

/* Group Booking Info banner */
.group-booking-banner {
  background-color: var(--bg-dark-accent);
  color: var(--bg-cream);
  padding: 3.5rem;
  text-align: center;
  border: 1px solid var(--primary-gold);
  margin-top: 8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.group-booking-banner h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
  font-weight: 500;
}

.group-booking-banner p {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Lightbox Overlay styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 21, 19, 0.95);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(250, 247, 242, 0.1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--bg-cream);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro-text-block {
    padding-right: 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .footer-logo, .footer-title {
    margin-bottom: 1rem;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .navbar {
    padding: 1rem 0;
    background-color: var(--bg-dark);
  }
  
  .burger-menu {
    display: block;
  }
  
  .burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-dark-accent);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    padding: 2rem;
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-item {
    font-size: 1.1rem;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .nav-cta .btn {
    width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }
  .hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .section {
    padding: 5rem 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    min-height: 250px;
  }
  
  .menu-hero-title {
    font-size: 2.8rem;
  }
  
  .menu-supplements {
    padding: 1.5rem;
  }
  
  .menu-supplements .menu-grid {
    gap: 1.5rem;
  }
  
  .group-booking-banner {
    padding: 2rem 1.5rem;
    margin-top: 5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
