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

:root {
  /* Colorful Contrast Palette */
  --primary-color: #047857; /* Emerald Dark */
  --accent-color: #D97706; /* Amber */
  --bg-color: #F9FAFB; /* Light Grayish */
  --text-color: #1F2937; /* Very Dark Gray */
  --dark-color: #111827; /* Almost Black */

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

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

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

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

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

.numbered-badge-list .badge {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  font-family: var(--font-heading);
  margin-top: 0.2rem;
}

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

/* Utility constraints for images */
.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  font-family: var(--font-text);
  color: var(--text-color);
}
.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.2);
}