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

:root {
  /* Site Colors */
  --primary-color: #2D5A27; /* Deep Forest Green */
  --secondary-color: #8DA988; /* Soft Sage */
  --accent-color: #E38A3A; /* Earthy Orange */
  --dark-color: #1F2937; /* Dark Gray for text */
  --light-color: #F9FAFB; /* Off-white for background */

  /* Typography */
  --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); }

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

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Mobile Menu Overlay */
#mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}
#mobile-menu.open {
  transform: translateX(0);
}

/* Ordered List with Colored Circles (For Reserve Page) */
.custom-list {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}
.custom-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  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(--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;
}