:root {
  /* 4-color modern contrast palette */
  --primary-color: #0F766E; /* Dark Teal */
  --secondary-color: #CCFBF1; /* Light Teal */
  --accent-color: #D97706; /* Amber/Orange */
  --dark-color: #1F2937; /* Dark Gray */
  
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: #F9FAFB;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

main {
  flex-grow: 1;
}

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

/* Numbered points for reserve.html */
.numbered-point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

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