/* Professional Sage Green Theme Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Lora:wght@400;500;600&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Updated Darker Green Palette */
  --dark-green: #0f2f1d;
  --dark-green-light: #153b22;
  --mid-green: #487c42;
  --mid-green-dark: #265c2f;
  
  /* Legacy Sage Colors (for compatibility) */
  --sage-green: #265c2f;
  --sage-dark: #0f2f1d;
  --sage-light: #487c42;
  --sage-lighter: #6b8861;
  
  /* Updated Parchment Colors */
  --parchment-light: #f7f4ec;
  --parchment-dark: #f3e8d6;
  --cream: #f5f1e8;
  --beige: #ede6d6;
  --warm-white: #f7f4ec;
  --text-dark: #2d3a2d;
  
  /* Accent Colors */
  --accent-gold: #c9a961;
  --soft-brown: #8b7355;
  --terra-cotta: #c67b5c;
  
  /* Status Colors */
  --success: #6b8861;
  --error: #c67b5c;
  --info: #5a8fa3;
  
  /* Typography */
  --font-serif: 'Crimson Text', Georgia, serif;
  --font-display: 'Lora', Georgia, serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-serif);
  line-height: 1.7;
  color: var(--text-dark);
  background: radial-gradient(ellipse at center, 
    var(--parchment-light) 0%, 
    var(--parchment-light) 40%, 
    var(--parchment-dark) 90%, 
    var(--parchment-dark) 100%);
  min-height: 100vh;
  font-size: 18px;
  position: relative;
}

/* Subtle vignette effect for parchment */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    transparent 0%, 
    transparent 50%, 
    rgba(243, 232, 214, 0.15) 80%, 
    rgba(243, 232, 214, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative Elements */
.ornament {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 Q30 30 10 50 Q30 70 50 90 Q70 70 90 50 Q70 30 50 10' stroke='%234a6741' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  margin: 0 auto;
}

.divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--sage-green), transparent);
  margin: 2rem auto;
}

.fancy-divider {
  text-align: center;
  margin: 3rem 0;
  position: relative;
}

.fancy-divider::before {
  content: '❦';
  color: var(--sage-green);
  font-size: 1.5rem;
  background: var(--warm-white);
  padding: 0 1rem;
  position: relative;
}

/* Utility Bar */
.utility-bar {
  background: var(--dark-green);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-link {
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.9;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.utility-link:hover {
  color: var(--accent-gold);
  opacity: 1;
}

.utility-cta {
  background: var(--accent-gold);
  color: var(--sage-dark);
  padding: 0.4rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  font-family: var(--font-sans);
}

.utility-cta:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}

/* Main Navigation */
.main-nav {
  background: var(--parchment-light);
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  font-family: var(--font-display);
  text-decoration: none;
  border: 2px solid var(--dark-green);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.logo:hover {
  background: var(--dark-green);
  color: var(--parchment-light);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  position: relative;
  opacity: 0.85;
}

.nav-links a:hover {
  color: var(--dark-green);
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark-green);
  transition: width 0.3s;
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--parchment-light);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--dark-green);
  padding-left: 1.5rem;
}

.dropdown-menu a::after {
  display: none;
}

/* Hero Section */
.hero {
  margin-top: 120px;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 300px;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M100 50 Q50 100 100 150 Q150 100 100 50' stroke='%234a6741' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3Cpath d='M200 100 Q150 150 200 200 Q250 150 200 100' stroke='%234a6741' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3Cpath d='M300 150 Q250 200 300 250 Q350 200 300 150' stroke='%234a6741' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3C/svg%3E") no-repeat;
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--sage-green);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 1.5rem 0 3rem;
  font-style: italic;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Stats Display */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-green);
  font-family: var(--font-display);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-sans);
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--sage-green);
  color: var(--warm-white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 2px solid var(--sage-green);
  border-radius: 6px;
  font-family: var(--font-serif);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 83, 49, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--sage-green);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 2px solid var(--sage-green);
  font-size: 1.1rem;
  transition: all 0.3s;
  border-radius: 6px;
  font-family: var(--font-serif);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--sage-green);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 83, 49, 0.3);
}

/* Quote Separator */
.quote-separator {
  background: var(--dark-green);
  padding: 0.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.quote-separator::before,
.quote-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.quote-separator::before {
  left: 0;
}

.quote-separator::after {
  right: 0;
}

.quote-separator blockquote {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  color: var(--warm-white);
  font-style: italic;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  margin: 0 auto;
}

.quote-separator cite {
  display: inline;
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: normal;
  white-space: nowrap;
}

/* Access Cards Grid */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.access-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s;
  position: relative;
  border: 2px solid var(--beige);
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 103, 65, 0.15);
  border-color: var(--sage-light);
}

.access-card h3 {
  color: var(--sage-green);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.access-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.access-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sage-light);
}

/* Content Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 120px;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--sage-green);
  margin-bottom: 3rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.feature-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--beige);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.feature-card h3 {
  color: var(--sage-green);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.feature-card p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: bold;
}

/* Forms Enhanced */
.form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--beige);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.form label input,
.form label textarea,
.form label select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border: 2px solid var(--beige);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--warm-white);
}

.form label input:focus,
.form label textarea:focus,
.form label select:focus {
  outline: none;
  border-color: var(--sage-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

/* Booking Calendar Enhanced */
.calendar {
  max-width: 1000px;
  margin: 2rem auto;
}

.day-group {
  background: white;
  border: 2px solid var(--beige);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.day-header {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--sage-green);
  font-size: 1.2rem;
  font-family: var(--font-display);
  border-bottom: 2px solid var(--cream);
  padding-bottom: 0.5rem;
}

.slot-btn {
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige);
  background: var(--warm-white);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.slot-btn:hover {
  border-color: var(--sage-light);
  background: var(--cream);
  transform: translateY(-2px);
}

.slot-btn.selected {
  background: var(--sage-green);
  color: var(--warm-white);
  border-color: var(--sage-green);
}

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: var(--warm-white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.footer-section a {
  color: var(--warm-white);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s;
  display: block;
  padding: 0.25rem 0;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  .nav-links {
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  
  .utility-bar {
    display: none;
  }
  
  .main-nav {
    top: 0;
  }
  
  .wrap {
    margin-top: 80px;
  }
  
  .hero {
    margin-top: 80px;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .access-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}