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

:root {
  /* Visual Variables: Modern contrast palette (4 colors) for light theme */
  --dark-color: #0f172a;       /* Slate 900 */
  --light-color: #f8fafc;      /* Slate 50 */
  --accent-color: #10b981;     /* Emerald 500 (Primary Accent) */
  --accent-secondary: #3b82f6; /* Blue 500 (Secondary Accent) */

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

/* 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: 400px;
  opacity: 1;
}

/* Cookie Banner Styles */
.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: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

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

.cookie-btn-alt:hover {
  box-shadow: 0 4px 6px rgba(75, 85, 99, 0.3);
}

/* Custom Numbered List for Reserve Page */
.custom-numbered-list {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 0;
}

.custom-numbered-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

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

/* Custom Checkbox */
.custom-checkbox {
  accent-color: var(--accent-color);
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}

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

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

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  text-align: center;
}

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

.btn-secondary {
  background-color: var(--accent-secondary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}