@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Logo z animacją */
.logo-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-25px) rotate(6deg); }
}

/* Menu Cennik */
#cennik-menu {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  opacity: 0;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25), 0 10px 10px -6px rgb(0 0 0 / 0.1);
}

#cennik-menu.show {
  transform: scale(1);
  opacity: 1;
}

/* Modal */
.modal-animate {
  animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(60px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Swoosh w prawo */
.modal-slide-out {
  animation: swooshRight 0.45s ease forwards !important;
}

@keyframes swooshRight {
  to {
    opacity: 0;
    transform: translateX(500px) scale(0.9);
  }
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav links */
.nav-link {
  position: relative;
  transition: all 0.4s ease;
  color: #4b5563;
}

.nav-link:hover {
  color: #db2777;
  transform: scale(1.08);
}

/* Button glow */
button {
  position: relative;
}

button::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(to right, #db2777, #7c3aed, #6d28d9);
  border-radius: 9999px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(8px);
}

button:hover::after {
  opacity: 0.4;
}