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

:root {
  /* Vibrant, contrast modern palette */
  --primary-color: #0ea5e9; /* Light blue accent */
  --secondary-color: #f97316; /* Orange accent */
  --dark-color: #1e293b; /* Slate dark */
  --light-color: #f8fafc; /* Slate light */
  
  --font-heading: 'Montserrat', 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);
}

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

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-dark { color: var(--dark-color); }

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

/* Numbered lists for reserve cards */
.numbered-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.numbered-list-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

/* 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(--primary-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(-1px);
}

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