/* Variant 5 — Cinema Daylight */

html { scroll-behavior: smooth; background: #ffffff; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

.font-display { letter-spacing: -0.02em; }

html { scrollbar-width: thin; scrollbar-color: #0f766e #f1f5f9; }
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: #f1f5f9; }
::-webkit-scrollbar-thumb  { background: linear-gradient(180deg, #0f766e, #fb7185); border-radius: 8px; border: 2px solid #f1f5f9; }

::selection { background: #0f766e; color: #ffffff; }

.lang-option.is-active {
  background: rgba(15, 118, 110, 0.1) !important;
  color: #0f766e !important;
  font-weight: 600;
}

#bookingModal.flex > .relative { animation: cinemaIn .3s ease-out; }
@keyframes cinemaIn {
  from { opacity: 0; transform: scale(.96) translateY(12px); filter: blur(4px); }
  to   { opacity: 1; transform: none;                        filter: blur(0);  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.course-card img { will-change: transform; }

@media (max-width: 640px) {
  section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  h1, h2 { word-break: break-word; }
}
