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

:root {
  /* Dynamic Configuration Variables */
  --primary-color: #0d9488; /* Teal */
  --secondary-color: #1e293b; /* Dark Blue / Slate */
  --accent-color: #f97316; /* Coral / Orange */
  --light-color: #f8fafc; /* Light Gray / Slate */
  --dark-color: #0f172a;

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

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(30, 41, 59, 0.9));
  --gradient-accent: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(225, 29, 72, 0.9));
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

main {
  flex-grow: 1;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #ffffff;
  border: none;
}
.btn-accent:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Nav Link Hover */
.nav-link {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.3s;
}
.nav-link:hover {
  color: var(--primary-color);
}

/* Steps */
.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* 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: var(--font-heading);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

/* Mobile Menu */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}

/* Reserve list icons */
.list-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}