/* Extracted custom styles from index.html */
body {
  box-sizing: border-box;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-bg {
  background: linear-gradient(135deg, #f8e6ee 0%, #e8f9ea 50%, #f8e6ee 100%);
}

.hero-gradient {
  background-image: url('../hero-bg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.acrylic {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
  position: relative;
  color: #a32b6b;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #a32b6b;
  transition: width 0.3s ease;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #a32b6b, #2ECC40);
}

.timeline-dot {
  position: absolute;
  left: 14px;
  width: 14px;
  height: 14px;
  background: #a32b6b;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #f8e6ee;
}

/* helper classes used in HTML */
.top-8 { top: 8px; }
.timeline-dot.green { background: #2ECC40; }
.timeline-dot.purple { background: #B24592; }

.icon-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@view-transition { navigation: auto; }

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-btn {
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background-color: white;
  opacity: 1;
}

.carousel-indicator:hover {
  opacity: 0.8;
}

/* Static Calendar Styles */
#static-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

#static-calendar .calendar-header {
    text-align: center;
    font-weight: 600;
    color: #4a5568;
    grid-column: span 7;
}

#static-calendar .calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: #4a5568;
}

#static-calendar .calendar-day.has-event {
    background-color: #bfdbfe;
    color: #1e40af;
    font-weight: 600;
}

@media (min-width: 768px) {
    #static-calendar {
        gap: 1rem;
    }

    #static-calendar .calendar-day {
        height: 3.5rem;
        font-size: 1.125rem;
    }

    #static-calendar .calendar-header {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}
