/* ============================================
   VERDANT CREST - MINIMALIST RESTAURANT CSS
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
  margin: 16px 0;
}

li {
  margin-bottom: 8px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1B4B3F;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1B4B3F;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DCC8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #1B4B3F;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C49A6C;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #C49A6C;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1B4B3F;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mobile-menu-toggle:hover {
  background-color: #2A6B59;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1B4B3F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C49A6C;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #1B4B3F;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #E8DCC8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C49A6C;
  padding-left: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #1B4B3F;
  color: #FFFFFF;
  border-color: #1B4B3F;
}

.btn-primary:hover {
  background-color: #2A6B59;
  border-color: #2A6B59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 75, 63, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1B4B3F;
  border: 2px solid #1B4B3F;
}

.btn-secondary:hover {
  background-color: #1B4B3F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 75, 63, 0.2);
}

/* SECTIONS */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.hero {
  background: linear-gradient(135deg, #E8DCC8 0%, #F5F0E8 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #1B4B3F;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #1B4B3F;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-page {
  background: linear-gradient(135deg, #E8DCC8 0%, #F5F0E8 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
}

/* GRIDS & FLEXBOX LAYOUTS */
.services-grid,
.values-grid,
.testimonials-grid,
.options-grid,
.policies-grid,
.contact-cards,
.directions-grid,
.features-grid,
.seasons-grid,
.dishes-grid,
.suggestions-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.value-item,
.testimonial-card,
.option-card,
.policy-item,
.contact-card,
.direction-item,
.feature-item,
.season-item,
.dish-card,
.suggestion-card,
.stat-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  min-width: 280px;
  margin-bottom: 24px;
}

.service-card:hover,
.option-card:hover,
.dish-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3,
.value-item h3,
.option-card h3,
.policy-item h3,
.contact-card h3,
.direction-item h3,
.feature-item h3,
.season-item h3,
.dish-card h3,
.suggestion-card h3 {
  color: #1B4B3F;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #C49A6C;
  margin: 16px 0 24px;
}

.service-card .btn {
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F5F0E8;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C49A6C;
}

.testimonial-card p {
  font-style: italic;
  color: #2C2C2C;
  margin-bottom: 20px;
  line-height: 1.8;
}

.customer-name {
  font-weight: 600;
  color: #1B4B3F;
  font-style: normal;
  margin-bottom: 8px;
}

.rating {
  color: #C49A6C;
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial-count {
  text-align: center;
  font-weight: 600;
  color: #1B4B3F;
  margin-top: 20px;
}

/* MENU ITEMS */
.menu-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-description {
  text-align: center;
  color: #666666;
  font-style: italic;
  margin-bottom: 40px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.menu-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateX(4px);
}

.menu-item h3 {
  color: #1B4B3F;
  margin-bottom: 12px;
  font-size: 22px;
}

.menu-item p {
  color: #666666;
  margin-bottom: 12px;
}

.menu-item .price {
  font-size: 20px;
  color: #C49A6C;
  font-weight: 600;
  margin: 12px 0 0;
}

.menu-item.signature {
  border: 2px solid #C49A6C;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F3 100%);
}

/* EXPERIENCE CARDS */
.experience-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  position: relative;
}

.experience-card.premium {
  border: 2px solid #C49A6C;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F3 100%);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #C49A6C;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-price {
  font-size: 24px;
  font-weight: 700;
  color: #1B4B3F;
  margin-bottom: 24px;
}

/* TIMELINE */
.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  padding: 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #C49A6C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  margin-bottom: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 24px;
  width: 16px;
  height: 16px;
  background-color: #C49A6C;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
}

.timeline-item h3 {
  color: #1B4B3F;
  margin-bottom: 12px;
}

/* LOCATION & CONTACT */
.address {
  font-weight: 600;
  color: #1B4B3F;
}

.note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #1B4B3F 0%, #2A6B59 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-content,
.cta-section .container > * {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-final p,
.cta-section p {
  color: #E8DCC8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #1B4B3F;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background-color: #E8DCC8;
  border-color: #E8DCC8;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1B4B3F;
}

.social-proof,
.contact-info {
  color: #E8DCC8;
  margin-top: 24px;
  font-size: 14px;
}

/* LINKS */
.link,
.link-view-all {
  color: #1B4B3F;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.link:hover,
.link-view-all:hover {
  color: #C49A6C;
  border-bottom-color: #C49A6C;
  transform: translateX(4px);
}

.link-view-all {
  display: block;
  text-align: center;
  margin-top: 40px;
}

/* LEGAL PAGES */
.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

/* CONFIRMATION PAGE */
.confirmation {
  padding: 60px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #1B4B3F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

/* FOOTER */
footer {
  background-color: #1B4B3F;
  color: #E8DCC8;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #E8DCC8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #E8DCC8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 220, 200, 0.2);
}

.footer-bottom p {
  color: #E8DCC8;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px 20px;
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #2C2C2C;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 2px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2C2C2C;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F0E8;
  border-radius: 2px;
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCCCCC;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #1B4B3F;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

.cookie-category .badge {
  position: static;
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  font-size: 11px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero,
  .hero-page {
    padding: 60px 20px;
  }
  
  /* Grids */
  .services-grid,
  .values-grid,
  .testimonials-grid,
  .options-grid,
  .policies-grid,
  .contact-cards,
  .directions-grid,
  .features-grid,
  .seasons-grid,
  .dishes-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .value-item,
  .testimonial-card,
  .option-card,
  .policy-item,
  .contact-card,
  .direction-item,
  .feature-item,
  .season-item,
  .dish-card,
  .suggestion-card,
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .service-card,
  .experience-card,
  .menu-item {
    padding: 20px;
  }
  
  .badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #C49A6C;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

.flex {
  display: flex;
}

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

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* RATING DISPLAY */
.rating-display {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1B4B3F;
  margin-top: 20px;
}

/* TEXT IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}
.contact-card p {
  color: #2C2C2C;
}