/* style.css */
:root {
  /* Modern, contrast palette */
  --primary-color: #0F172A; /* Dark Navy */
  --secondary-color: #3B82F6; /* Bright Blue */
  --accent-color: #10B981; /* Emerald Green */
  --bg-light: #F8FAFC; /* Slate 50 */
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

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

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

/* Common Classes */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-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); }

/* Buttons */
.btn-accent {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-accent:hover {
  background-color: #059669; /* Darker Emerald */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4);
}

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

/* Mobile Menu */
#mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}
#mobile-menu.active {
  display: block;
}

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

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* Custom Ordered List for Reserve Page */
.list-colored-dots {
  list-style: none;
  padding-left: 0;
}

.list-colored-dots li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-text);
}

.list-colored-dots li::before {
  content: counter(li-counter);
  counter-increment: li-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.list-colored-dots-wrapper {
  counter-reset: li-counter;
}

/* Background overlays */
.bg-overlay {
  position: relative;
}
.bg-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7); /* primary color with opacity */
  z-index: 1;
}
.bg-overlay > * {
  position: relative;
  z-index: 2;
}