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

:root {
  /* 4-color contrast palette */
  --bg-color: #F8FAFC;       /* Soft White */
  --text-color: #0F172A;     /* Very Dark Slate */
  --accent-color: #059669;   /* Vibrant Green */
  --secondary-bg: #E2E8F0;   /* Light Slate */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;
}

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

main {
  flex-grow: 1;
}

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

.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

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

/* Mobile Menu Styles */
#mobile-menu {
  display: none;
  background-color: var(--bg-color);
  border-top: 1px solid var(--secondary-bg);
}

#mobile-menu.active {
  display: block;
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-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 List indicators for Reserve page */
.numbered-list {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}

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