/* ==========================================================
   ROOT VARIABLES
   ========================================================== */
:root {
  /* Core Palette */
  --color-bg: #fff;
  --color-text: #333;
  --color-primary: #3b653d;
  --color-secondary: #6cb46c;
  --color-muted: #666;
  --color-dark: #444;
  --color-footer-bg: #f4f7f4;

  /* Effects */
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --overlay-dark-start: rgba(0, 0, 0, 0.4);
  --overlay-dark-end: rgba(0, 0, 0, 0.25);
}

/* ==========================================================
   GLOBAL BASE
   ========================================================== */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  }

.text-accent {
  color: var(--color-primary) !important;
}

.text-green {
  color: var(--color-secondary) !important;
}

.text-muted {
  color: var(--color-muted) !important;
}

.text-justify {
  text-align: justify;
  text-justify: inter-word;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */
h2.section-title {
  font-family: 'Marcellus', serif;
  font-weight: 600;
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h2.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  margin: 0.75rem auto;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  background: linear-gradient(180deg, #f6faf6 0%, #e8f3e8 80%);
  text-align: center;
  padding: 7rem 1rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  clip-path: ellipse(70% 60% at 50% 100%);
}

.hero-logo {
  max-width: 350px;
  height: auto;
  animation: fadeInDown 1.2s ease;
}

.logo-img {
  max-width: 350px;
  height: auto;
}

.hero-slogan {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;         /* Standard */
  -webkit-text-fill-color: transparent;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: fadeInUp 1.2s ease;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-top: 1rem;
  animation: fadeIn 1.5s ease;
}

/* ==========================================================
   HERO LOGO SECTION (for smaller pages)
   ========================================================== */
.hero-logo-section {
  margin: 80px 0 60px;
  text-align: center;
}


.logo-page-img {
  width: auto;
  max-height: 80px;
  height: auto;
}

.slogan-box {
  background: rgba(108, 180, 108, 0.08);
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px var(--shadow-light);
  display: inline-block;
}

.slogan {
  font-family: 'Marcellus', serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.2rem + 2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================
   SERVICE CARDS & LISTS
   ========================================================== */
.service-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 3px 10px var(--shadow-light);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.service-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-list {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.8;
}

.service-list i {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* ==========================================================
   QUOTES / HIGHLIGHTS
   ========================================================== */
.highlight-quote {
  background: linear-gradient(180deg, #f9fbf9 0%, #eef6ee 100%);
  border-left: 5px solid var(--color-secondary);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 700px;
  margin: 2rem auto;
  font-family: 'Marcellus', serif;
  color: var(--color-primary);
  box-shadow: 0 4px 20px var(--shadow-light);
  position: relative;
}

.highlight-quote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(108, 180, 108, 0.2);
  line-height: 1;
}

.highlight-quote p {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ==========================================================
   WINTERPAUSE ALERT BOX
   ========================================================== */
.winterpause-alert {
  position: relative;
  z-index: 2;
}

.alert-box {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--color-secondary);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  max-width: 700px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.alert-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  animation: pulseSnow 3s infinite ease-in-out;
}

.alert-title {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.alert-text {
  font-size: 1.1rem;
  color: var(--color-dark);
}

.highlight-box {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf6 100%);
  border: 2px solid var(--color-secondary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  max-width: 600px;
  transition: transform .3s ease;
}

.highlight-box:hover {
  transform: translateY(-4px);
}

.announcement-banner {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  letter-spacing: 0.3px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.note-box {
  border-left: 4px solid var(--color-secondary);
  background: #f9fbf9;
  border-radius: 8px;
  font-size: 1rem;
}

.promo-highlight {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}


@keyframes pulseSnow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}


/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-muted);
  padding: 0;
  overflow: hidden;
}

.footer-image-strip {
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.footer-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

footer .container {
  padding: 2rem 0;
}

footer a {
  color: var(--color-primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 768px) {
  .hero-slogan {
    font-size: 1.75rem;
  }

  .service-list {
    font-size: 1rem;
  }

  .service-list .list-inline-item {
    display: block;
    margin: 0.5rem 0;
  }
}