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

:root {
  /* Modern Light Theme with vibrant accents */
  --primary-color: #059669; /* Emerald 600 - Health/Nature */
  --secondary-color: #ecfdf5; /* Emerald 50 - Backgrounds */
  --accent-color: #ea580c; /* Orange 600 - Call to Action */
  --dark-color: #1f2937; /* Gray 800 - Text */
  --light-color: #ffffff; /* White */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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(--dark-color);
}

.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); }
.bg-dark { background-color: var(--dark-color); }

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  color: var(--light-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background-color: #c2410c;
  transform: translateY(-2px);
  color: var(--light-color);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover {
  background-color: #047857;
  transform: translateY(-2px);
  color: var(--light-color);
}

/* Custom Numbered List for Reserve Page */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: custom-counter;
}
.custom-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.custom-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  color: var(--light-color);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  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: 8px;
  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;
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--light-color);
  z-index: 50;
  flex-direction: column;
  padding: 2rem;
}
.mobile-menu.active {
  display: flex;
}