/* 
   style.css 
   Theme: Light Modern Educational
*/

:root {
  /* Color Palette - 4 Modern Contrasting Colors */
  --primary-color: #1E293B; /* Dark Slate - Text & Headers */
  --accent-color: #0D9488;  /* Teal - Primary Buttons & Highlights */
  --secondary-accent: #F59E0B; /* Amber - Secondary Highlights */
  --bg-light: #F8FAFC; /* Slate 50 - Backgrounds */
  --white: #FFFFFF;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--primary-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Utilities */
.text-accent { color: var(--accent-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-light-custom { background-color: var(--bg-light); }
.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0f766e; /* Darker teal */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

/* Mobile Menu Setup */
#mobile-menu {
  display: none;
  transition: max-height 0.3s ease-in-out;
}
#mobile-menu.active {
  display: block;
}

/* Custom Numbered List for Reserve Page */
.custom-counter-list {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.custom-counter-list li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
}

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

/* Forms */
.custom-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 0.375rem;
  font-family: var(--font-text);
  transition: border-color 0.3s ease;
}
.custom-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-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-text);
  transition: all 0.3s ease;
}

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

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