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

:root {
  /* Dark Theme Colors */
  --bg-color: #111827; /* Dark slate */
  --bg-secondary: #1F2937; /* Lighter slate */
  --accent-color: #06b6d4; /* Cyan accent */
  --text-color: #F9FAFB; /* Off-white text */
  --text-muted: #9CA3AF; /* Gray text */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.95) 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-text);
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

a {
  transition: all 0.3s ease;
}

/* Custom Image Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.numbered-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.numbered-list .number-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  margin-right: 1rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #374151;
  border: 1px solid #4B5563;
  color: var(--text-color);
  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 2px rgba(6, 182, 212, 0.2);
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  background-color: var(--bg-secondary);
}
#mobile-menu.active {
  display: block;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-secondary);
  color: var(--text-color);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
  border-top: 2px solid var(--accent-color);
}

.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: var(--font-heading);
  transition: all 0.3s ease;
}

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

.cookie-btn-alt {
  background-color: #4B5563;
}
.cookie-btn-alt:hover {
  background-color: #6B7280;
  box-shadow: none;
}