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

:root {
  --primary-color: #2F855A;   /* Green */
  --secondary-color: #F6E05E; /* Yellow/Gold */
  --dark-color: #2D3748;      /* Slate/Text */
  --light-color: #F7FAFC;     /* Off-white background */
  --accent-color: #38A169;    /* Bright Green Accent */
  
  --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;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
    flex-grow: 1;
}

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

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

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

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

.hero-overlay {
  background: linear-gradient(rgba(45, 55, 72, 0.7), rgba(45, 55, 72, 0.5));
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background-color: #ffffff;
  border-bottom: 2px solid var(--light-color);
}
#mobile-menu.active {
  display: block;
}

/* Numbered List Badges for Reserve Page */
.numbered-list {
  list-style: none;
  padding: 0;
}
.numbered-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.numbered-list .number-badge {
  background-color: var(--accent-color);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

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