:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'Lato', sans-serif;
background-color: #F8FDFF;
}
.animated-giraffe {
position: absolute;
right: 5%;
top: 65%;
transform: translateY(-50%);
width: 300px;
height: 400px;
background-image: url('https://static.readdy.ai/image/ab399405d4a67c5afd92826e776331a9/558122e6d707f1442530d1dce20bd250.png');
background-size: contain;
background-repeat: no-repeat;
animation: float 3s ease-in-out infinite;
z-index: 5;
}
.speech-bubble {
position: absolute;
top: 52%;
right: 25%;
background: white;
border-radius: 20px;
padding: 15px 25px;
font-size: 18px;
color: #333;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
opacity: 1;
transition: all 0.5s ease-in-out;
min-width: 180px;
text-align: center;
white-space: normal;
z-index: 10;
transform: translateY(-50%);
animation: fadeInOut 4s ease-in-out infinite;
}
.speech-bubble::after {
content: '';
position: absolute;
top: 50%;
right: -15px;
transform: translateY(-50%);
border-width: 15px 0 15px 15px;
border-style: solid;
border-color: transparent transparent transparent white;
}
.speech-bubble.active {
opacity: 1;
animation: fadeInOut 4s ease-in-out infinite;
}
@keyframes fadeInOut {
0% { 
  opacity: 0.7;
  transform: scale(0.95);
}
100% { 
  opacity: 1;
  transform: scale(1);
}
}
@keyframes float {
0% {
transform: translateY(-50%);
}
50% {
transform: translateY(-60%);
}
100% {
transform: translateY(-50%);
}
}
.animated-giraffe::after {
display: none;
}
@keyframes shadow {
0%, 50%, 100% {
transform: translateX(-50%) scale(1);
opacity: 0;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
}
.hero-section {
background-image: url('https://readdy.ai/api/search-image?query=A%20soft%2C%20pastel-colored%20background%20with%20gentle%20blue%20and%20yellow%20tones.%20The%20left%20side%20is%20predominantly%20light%20blue%2C%20gradually%20transitioning%20to%20a%20soft%20yellow%20on%20the%20right.%20The%20image%20has%20a%20calming%2C%20therapeutic%20atmosphere%20perfect%20for%20a%20psychological%20counseling%20center%20for%20children.%20The%20background%20should%20be%20minimal%20and%20clean%2C%20allowing%20text%20to%20be%20clearly%20visible%20on%20the%20left%20side.&width=1920&height=800&seq=1&orientation=landscape');
background-size: cover;
background-position: center;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(174, 226, 255, 0.4);
}
.team-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(174, 226, 255, 0.4);
}
input:focus, textarea:focus {
outline: none;
border-color: #98E8D5;
box-shadow: 0 0 0 3px rgba(152, 232, 213, 0.25);
}
.custom-checkbox {
appearance: none;
width: 20px;
height: 20px;
border: 2px solid #AEE2FF;
border-radius: 4px;
background-color: white;
cursor: pointer;
position: relative;
}
.custom-checkbox:checked {
background-color: #98E8D5;
border-color: #98E8D5;
}
.custom-checkbox:checked::after {
content: '';
position: absolute;
left: 6px;
top: 2px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
@media (max-width: 1200px) {
.animated-giraffe {
right: 2%;
width: 250px;
height: 350px;
}
.speech-bubble {
right: 20%;
font-size: 16px;
}
}
@media (max-width: 768px) {
.animated-giraffe {
right: 0;
width: 200px;
height: 280px;
opacity: 0.7;
}
.speech-bubble {
right: 15%;
padding: 12px 20px;
min-width: 150px;
}
}

/* Stylowanie dla aktywnych zakładek w cenniku */
.price-tab.active {
  background-color: #FFF9C4 !important; /* Pastelowy żółty kolor */
  color: #333;
  font-weight: 600;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.price-tab {
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-tab:hover {
  background-color: rgba(255, 249, 196, 0.7) !important; /* Jaśniejszy pastelowy żółty przy najechaniu */
  transform: translateY(-1px);
}

/* Stylowanie dla płynnej karuzeli zespołu */
#team-slider {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.team-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  will-change: transform;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(174, 226, 255, 0.5);
  z-index: 2;
}

/* Wskaźniki slidera */
.team-indicator {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-indicator:hover {
  transform: scale(1.3) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Przyciski nawigacji */
#prev-team, #next-team {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

#prev-team:hover, #next-team:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animacja fade-in dla kart zespołu */
@keyframes slideInTeam {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card {
  animation: slideInTeam 0.6s ease-out;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .team-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  #prev-team, #next-team {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .team-indicator {
    width: 10px;
    height: 10px;
  }
}

/* Smooth scrolling dla całej strony */
html {
  scroll-behavior: smooth;
}

/* Pausowanie animacji na hover kontenera */
.relative.overflow-hidden:hover #team-slider {
  animation-play-state: paused;
} 