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

:root {
  /* Modern, contrast palette (Light/Fresh Theme) */
  --primary-color: #2C5F2D; /* Deep Green */
  --secondary-color: #97BC62; /* Soft Green */
  --accent-color: #FCA311; /* Warm Accent Orange */
  --dark-color: #1E293B; /* Slate Dark */
  --light-color: #F8FAFC; /* Slate Light */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
}

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

/* Custom Utilities */
.text-primary { 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); }
.border-primary { border-color: var(--primary-color); }

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: #e5920d;
  transform: translateY(-2px);
}

/* Numbered List Styling for Reserve Page */
.custom-numbered-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.custom-numbered-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.custom-numbered-list li::before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 0.375rem;
  font-family: var(--font-text);
  margin-bottom: 1rem;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.2);
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  max-height: 0;
}
#mobile-menu.open {
  max-height: 300px;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-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: 4px;
  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;
}