/* 
  Theme: Light / Healthy Lifestyle
  Colors: Primary Dark Green, Secondary Light Green, Accent Orange, Background Off-White
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary-color: #166534; /* Dark Green */
  --secondary-color: #dcfce7; /* Light Green */
  --accent-color: #ea580c; /* Orange */
  --bg-color: #f8fafc; /* Light Gray/White */
  --text-dark: #1e293b; /* Slate */
  --text-light: #64748b;
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: var(--font-text);
}

.btn-primary:hover {
  background-color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Mobile Menu */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}

/* Custom Numbered List for Reserve Page */
.custom-numbered-list {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

.custom-numbered-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}

.custom-numbered-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

.image-overlay {
  background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
}