 .swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

html,
body {
  height: 100%;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism base styles for future enhancement */
.glass {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Glassmorphism for cards and overlays */
.glass-card, .glass-overlay {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.4s cubic-bezier(.4,2,.3,1), transform 0.4s cubic-bezier(.4,2,.3,1);
}

.glass-card:hover, .glass-overlay:hover {
  box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.25);
  transform: translateY(-6px) scale(1.03);
}

/* Smooth fade/slide-in animation for scroll */
.animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
.animate-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Button hover animation */
button, .btn {
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
button:hover, .btn:hover {
  background: rgba(255,255,255,0.7);
  color: #2b2620;
  box-shadow: 0 4px 24px 0 rgba(31,38,135,0.10);
  transform: translateY(-2px) scale(1.04);
}

/* Font improvements */
body, html {
  font-family: 'Playfair Display', 'Poppins', 'Cormorant Garamond', serif, sans-serif;
}

/* Glassmorphic Sticky Navbar Enhancements */
.glass-card {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.4s cubic-bezier(.4,2,.3,1), transform 0.4s cubic-bezier(.4,2,.3,1);
}
.glass-card:hover {
  box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.25);
  transform: translateY(-2px) scale(1.01);
}

/* Glowing Book Now Button */
.glow-btn {
  box-shadow: 0 0 16px 2px #63c2bd, 0 0 32px 4px #4fd1c5;
  animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 16px 2px #63c2bd, 0 0 32px 4px #4fd1c5; }
  100% { box-shadow: 0 0 32px 8px #63c2bd, 0 0 48px 12px #4fd1c5; }
}

/* Navbar Responsive Tweaks */
@media (max-width: 1024px) {
  .glass-card {
    border-radius: 18px;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 768px) {
  .glass-card {
    border-radius: 14px;
    padding: 0.5rem 0.5rem;
  }
}

/* Hide scrollbars for a cleaner look */
body {
  scrollbar-width: thin;
  scrollbar-color: #bcbcbc #f5f3ee;
}
body::-webkit-scrollbar {
  width: 8px;
  background: #f5f3ee;
}
body::-webkit-scrollbar-thumb {
  background: #bcbcbc;
  border-radius: 8px;
} 

/* Navbar Dropdown Centering Fix */
#services-dropdown {
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 180px;
}

/* Smoother, Soothing Animations */
.glass-card, .glass-overlay, .glass-card:hover, .glass-overlay:hover {
  transition: box-shadow 0.6s cubic-bezier(.4,1.4,.3,1),
              transform 0.6s cubic-bezier(.4,1.4,.3,1),
              background 0.5s cubic-bezier(.4,1.4,.3,1);
}

/* Softer glassmorphism for performance */
.glass-card, .glass-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px 0 rgba(31,38,135,0.10);
}
.glass-card:hover, .glass-overlay:hover {
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  transform: translateY(-4px) scale(1.025);
}

/* Smoother fade/slide-in animation for scroll */
.animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(.4,1.4,.3,1),
              transform 1.2s cubic-bezier(.4,1.4,.3,1);
}
.animate-fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Image/Card Hover Effects */
img, .glass-card, .glass-overlay {
  transition: box-shadow 0.6s cubic-bezier(.4,1.4,.3,1),
              transform 0.6s cubic-bezier(.4,1.4,.3,1),
              filter 0.5s cubic-bezier(.4,1.4,.3,1);
}
img:hover, .glass-card:hover, .glass-overlay:hover {
  box-shadow: 0 12px 36px 0 rgba(31,38,135,0.18);
  transform: scale(1.025) translateY(-4px);
  filter: brightness(1.04) saturate(1.08);
}

/* Button hover animation (softer) */
button, .btn {
  transition: background 0.4s cubic-bezier(.4,1.4,.3,1),
              color 0.4s cubic-bezier(.4,1.4,.3,1),
              box-shadow 0.4s cubic-bezier(.4,1.4,.3,1),
              transform 0.4s cubic-bezier(.4,1.4,.3,1);
}
button:hover, .btn:hover {
  background: rgba(255,255,255,0.7);
  color: #2b2620;
  box-shadow: 0 4px 24px 0 rgba(31,38,135,0.10);
  transform: translateY(-2px) scale(1.04);
}

/* Glow button pulse (slower, softer) */
.glow-btn {
  box-shadow: 0 0 12px 2px #63c2bd, 0 0 24px 4px #4fd1c5;
  animation: glowPulse 2.8s infinite alternate cubic-bezier(.4,1.4,.3,1);
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 12px 2px #63c2bd, 0 0 24px 4px #4fd1c5; }
  100% { box-shadow: 0 0 24px 8px #63c2bd, 0 0 36px 12px #4fd1c5; }
} 



.floating-book-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #63c2bd;
  color: white;
  padding: 12px 18px;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.floating-book-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Скрываем нативный скроллбар и делаем фиксированную ширину карточек */
.slider-container {
  display: flex;
  gap: 16px;                /* должен совпадать с space-x-4 */
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;    /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.slider-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.slide-item {
  flex: 0 0 16rem;          /* w-64 = 16rem, фиксируем ширину */
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  margin: 6px !important;
}

