/* =============== VARIABLES =============== */
:root {
  /* Colors */
  --bg-color: #111827;      /* Dark Gray 900 */
  --surface-color: #1F2937; /* Gray 800 */
  --accent-color: #10B981;  /* Emerald 500 */
  --text-color: #F9FAFB;    /* Gray 50 */
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

/* =============== BASE STYLES =============== */
html, body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-text);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

main {
  flex-grow: 1;
}

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

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

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

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

.btn-primary:hover {
  background-color: #059669; /* Lighter emerald */
  transform: translateY(-2px);
}

/* =============== MOBILE MENU =============== */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}

/* =============== COOKIE BANNER =============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--text-color);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
  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: 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; /* Gray */
}

/* =============== CUSTOM COUNTER FOR RESERVE.HTML =============== */
ol.custom-counter {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

ol.custom-counter li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

ol.custom-counter li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}