/* --- Core Variables & Theming --- */
:root {
  --bg-cream: #fcfaf6;
  --bg-card: #faf7f0;
  --text-dark: #3a3632;
  --text-muted: #736f68;
  --accent-green: #767a61;
  --accent-green-hover: #5d614b;
  --border-color: #e5e1d8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

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

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: var(--font-heading);
  color: var(--text-dark);
}

section {
  padding: 100px 0;
}

.bg-alternate {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

/* --- Buttons --- */
.btn-custom {
  background-color: var(--accent-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-green);
}

.btn-custom:hover {
  background-color: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  color: #fff;
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(252, 250, 246, 0.95) 0%, rgba(252, 250, 246, 0.7) 40%, rgba(252, 250, 246, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* Page Headers (Smaller Hero) */
.page-header {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page-header .hero-overlay {
  background: rgba(252, 250, 246, 0.75);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-header-content h1 {
  font-size: 3.5rem;
}

/* --- Welcome Section Cards --- */
.welcome-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
  height: 100%;
  transition: transform 0.3s ease;
}

.welcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.welcome-card i {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.welcome-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.welcome-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
  min-height: 500px;
}

/* --- About the Owner --- */
.owner-img {
  border-radius: 200px 200px 0 0;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-green);
}

/* --- Modern Glassmorphism Gallery (Story) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.item-tall { grid-row: span 2; }
.item-wide { grid-column: span 2; }

.glass-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .glass-caption {
  opacity: 1;
  transform: translateY(0);
}

.glass-caption h5 {
  margin: 0;
  font-size: 1rem;
}

/* --- Menu Grid & Filter (Menu) --- */
.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-filter-btn.active, .menu-filter-btn:hover {
  background: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green);
}

.menu-item-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.menu-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0;
}

.menu-item-price {
  font-weight: 700;
  color: var(--accent-green);
}

.menu-item-tags {
  margin-top: 10px;
}

.menu-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  background: var(--bg-card);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--accent-green);
  font-weight: 700;
  margin-right: 5px;
}

/* --- Featured Products --- */
.product-card {
  text-align: center;
  margin-bottom: 30px;
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.stars {
  color: #c9a96e;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* --- Experiences Cards --- */
.experience-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
  height: 100%;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.experience-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-body {
  padding: 30px;
}

/* --- Testimonials --- */
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: "”";
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--bg-card);
  line-height: 1;
}

/* --- Glassmorphism Booking Section --- */
.booking-section {
  background: url('https://images.unsplash.com/photo-1501339817388-d1d6065d70e6?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
}

.glass-form {
  background: rgba(252, 250, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass-form .form-control, .glass-form .form-select {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 12px 15px;
}

.glass-form .form-control:focus, .glass-form .form-select:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: none;
  border-color: var(--accent-green);
}

/* --- Visit Logistics --- */
.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  padding-bottom: 8px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .owner-img { border-radius: 12px; height: 400px; }
  .glass-form { padding: 30px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .item-wide { grid-column: span 1; }
  .hero-content h1 { font-size: 3rem; }
  .page-header-content h1 { font-size: 2.5rem; }
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
