/* style.css */
:root {
  /* 4-Color Modern Palette */
  --primary-color: #0F172A; /* Deep Slate */
  --secondary-color: #F8FAFC; /* Light Gray/White */
  --accent-color: #10B981; /* Emerald Green */
  --dark-color: #1E293B; /* Dark Slate */
  
  /* 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(--secondary-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--dark-color);
}

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

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

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

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

/* Numbered List for Reserve Page */
.numbered-features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.numbered-features-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.numbered-features-list li::before {
  content: counter(li-counter);
  counter-increment: li-counter;
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

.numbered-features-container {
  counter-reset: li-counter;
}

/* 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: 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;
}

/* Header & Mobile Menu */
header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

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

#mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

#mobile-menu.active {
  display: block;
}

/* Footer Section */
footer {
  background-color: var(--dark-color);
  color: #e2e8f0;
}

.footer-link {
  color: #cbd5e1;
  transition: color 0.3s;
}

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

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  font-family: var(--font-text);
  color: var(--dark-color);
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.checkbox-label input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  accent-color: var(--accent-color);
}

/* Stats Block */
.stat-block {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 500;
}

/* Utilities */
.min-h-100 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.flex-grow-1 {
  flex-grow: 1;
}