/* style.css */
:root {
  /* Modern, contrasting 4-color palette */
  --primary-color: #2F855A; /* Deep Green */
  --secondary-color: #319795; /* Teal */
  --bg-color: #F7FAFC; /* Light Gray */
  --text-color: #2D3748; /* Dark Gray */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--bg-color);
  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);
}

/* Custom UI Elements */
.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Form Styles */
input, textarea {
  font-family: var(--font-text);
}

/* Custom Numbered List for Reserve Page */
.numbered-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

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

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