:root {
  /* Modern contrasting palette */
  --primary-color: #0f766e; /* Deep Teal */
  --accent-color: #f97316; /* Bright Coral */
  --bg-light: #f8fafc; /* Off-White / Sand */
  --text-dark: #1e293b; /* Dark Slate */
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);
  color: var(--text-dark);
  background-color: var(--bg-light);
  scroll-behavior: smooth;
}

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

/* Custom Navigation Styles */
.nav-link {
  font-family: var(--font-heading);
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--accent-color);
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: flex;
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #ea580c; /* Darker Coral */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Specific numbered list for Reserve page */
.circle-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.circle-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

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

.circle-list-container {
  counter-reset: list-counter;
}

/* Input Fields */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-family: var(--font-text);
  margin-bottom: 1rem;
  background-color: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  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.75rem 2.5rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

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

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