@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Oswald:wght@400;500;700&display=swap');

:root {
  /* Colors Palette */
  --primary-color: #0f172a; /* Dark Navy - Text/Headers */
  --secondary-color: #0d9488; /* Teal - Buttons/Accents */
  --accent-color: #f97316; /* Coral - Highlights/CTAs */
  --bg-color: #f8fafc; /* Very Light Gray - Backgrounds */
  --white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

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

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

.heading-font {
  font-family: var(--font-heading);
}

.text-font {
  font-family: var(--font-text);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

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

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

/* Specific List Styling for Reserve Page */
.custom-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-numbered-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.custom-numbered-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.custom-numbered-list {
  counter-reset: list-counter;
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 300px;
  opacity: 1;
}

/* 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: inherit;
  transition: all 0.3s ease;
}

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

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