/* 
   Template: Modern Educational Landing Page 
   Theme: Light 
*/

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

:root {
  /* Modern contrasting palette */
  --primary-color: #1E3A8A;   /* Deep Blue */
  --accent-color: #EA580C;    /* Vibrant Orange */
  --dark-color: #1F2937;      /* Charcoal */
  --light-color: #F9FAFB;     /* Light Gray */
  
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
}

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

/* Custom classes for Tailwind extension */
.bg-primary { background-color: var(--primary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }

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

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #C2410C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  display: inline-block;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Custom Counter List for Reserve Page */
.custom-counter {
  counter-reset: highlight-counter;
  list-style: none;
  padding-left: 0;
}

.custom-counter li {
  counter-increment: highlight-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.custom-counter li::before {
  content: counter(highlight-counter);
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 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: 50px;
  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 Overlay CSS */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}