/* Global Presets */
:root {
  --primary-color: hotpink;
  --background-color: #232b2b;
  --card-bg: #2c3434;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background-color);
  color: #999;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: #fff;
}

h1 {
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 1.1;
  margin: 0 0 2rem;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  width: 100%;
}

/* Menu Bar */
.showcase-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(35, 43, 43, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.showcase-top p {
  display: flex;
  gap: 30px;
  margin: 0;
}

.showcase-top a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.showcase-top a:hover {
  color: var(--primary-color);
}

/* --- Frosted Section Styles */
.showcase{
  width: 100%;
  height: 45vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.go-home {
  width: 100%;
  height: 25vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* The Frosting Overlay */
.showcase::before, .go-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(10px) brightness(0.5); 
  transform: scale(1.1); 
  z-index: 1;
}

.showcase {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.go-home {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  margin-top: 4rem;
}

/* Content Wrappers (Floating above frosting) */
.showcase-content, #showcase-more {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Buttons */
.btn-xl {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
  color: #fff;
}

/* Spacing out the core sections */
#sessions-and-fees, #funding, #important-info {
  margin: 3rem;
}

/* --- Section Headers --- */
#sessions-and-fees h1, 
#funding h2, 
#important-info h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

/* Branded Accent Underline */
#sessions-and-fees h1::after, 
#funding h2::after, 
#important-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  margin-top: 1rem;
}

/* General Container Paragraphs */
.container p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 0.5rem;
}

/* Highlighting key information text */
.container strong {
  color: #fff;
  font-weight: 600;
}

/* --- Session Times Cards Layout --- */
/* Groups the session types into a modern card layout */
#sessions-and-fees .session-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Individual Session Card */
#sessions-and-fees .session-card {
  background: #2c3434; /* Card background */
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #3d3d3d;
  border-top: 4px solid var(--primary-color); /* Premium branded top bar */
  transition: transform 0.3s ease;
}

#sessions-and-fees .session-card:hover {
  transform: translateY(-5px);
}

/* Card Heading (Full Day, Half Day, etc.) */
#sessions-and-fees .session-card h3 {
  font-size: 1.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Clean key-value spacing inside cards */
#sessions-and-fees .session-card ul {
  list-style: none;
  padding: 0;
}

#sessions-and-fees .session-card li {
  font-size: 1.05rem;
  color: #bbb;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Emphasizing labels inside cards */
#sessions-and-fees .session-card li strong {
  color: #fff;
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 0.2rem;
}

/* Special notes/italics inside cards */
#sessions-and-fees .session-card i {
  display: block;
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* --- Important Information List --- */
#important-info ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

#important-info li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #bbb;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
}

/* Clean Custom Branded Bullet Points for Important Details */
#important-info li::before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* --- Inline Links (e.g., Childcare Choices) --- */
.container a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
}

.container a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Responsive Layouts */
@media (min-width: 850px) {
  .has-image {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .has-image.reverse {
    flex-direction: row-reverse;
  }
  
  .review-text, .review-media {
    flex: 1;
  }
  
  .text-only {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 8rem;
  }
  
  .text-only h2::after {
    margin: 1rem auto 0;
  }
}

@media (max-width: 450px) {
  h1 {
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.1;
      margin: 0 0 2rem;
    }
  
  .hide-sm {
    display: none;
  }  
}

/* Updated Footer */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  background: var(--background-color);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #3d3d3d;
  padding-top: 3rem;
}

.footer p, .footer b {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer b {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color); 
}

.footer a {
  color: #999;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
  padding-left: 3px; 
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #3d3d3d;
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Animations */
.review-block, .quote-card {
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}