html {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.deep-shadow {
  box-shadow: 0 20px 50px -12px rgba(26, 25, 83, 0.08);
}

.ambient-shadow {
  box-shadow: 0 20px 50px -12px rgba(26, 25, 83, 0.08);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, opacity 0.25s ease;
  opacity: 0;
}

#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

/* Calendar day cells */
.cal-day {
  min-height: 100px;
}

@media (max-width: 640px) {
  .cal-day {
    min-height: 56px;
  }
}

/* Hover scale on image cards */
.img-hover img {
  transition: transform 0.7s ease;
}
.img-hover:hover img {
  transform: scale(1.05);
}

/* Filter chip active transition */
.filter-chip {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hero gradient overlay for local images */
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(252, 248, 255, 0.95) 0%,
    rgba(252, 248, 255, 0.55) 40%,
    rgba(252, 248, 255, 0.15) 100%
  );
}
