* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Comic Sans MS', sans-serif;
}
.titlu-jucaus {
      display: inline-block;
      font-size: 48px;
      font-weight: bold;
      animation: balans 4s ease-in-out infinite, pulse 2s ease-in-out infinite, colorChange 6s linear infinite;
      transform-origin: center bottom;
      cursor: pointer;
      user-select: none;
    }

    /* Balans ușor ca un leagăn */
    @keyframes balans {
      0%, 100% { transform: rotate(5deg) scale(1); }
      50% { transform: rotate(-5deg) scale(1.05); }
    }

    /* Pulsare ușoară (mărire și micșorare) */
    @keyframes pulse {
      0%, 100% { transform: scale(1) rotate(5deg); }
      50% { transform: scale(1.1) rotate(0deg); }
    }

    /* Schimbare jucăușă de culori */
    @keyframes colorChange {
      0% { color: #ffffff; }
      25% { color: #defb04; }
      50% { color: #35ae22; }
      75% { color: #220e7a; }
      100% { color: #ba30b8; }
    }

   
body {
  background: linear-gradient(to bottom, #4D96FF, #FF5C8D);
  color: #333;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  padding: 20px;
}

.top-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap; /* Permitem împăturirea */
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white; 
  background-color: rgb(215, 226, 178);
}

.top-bar h1 {
  font-size: 35px;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

nav button {
  padding: 10px 15px;
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

/* Linie despărțitoare DOAR când ecranul e mic și butoanele trec jos */
@media (max-width: 1006px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    padding-top: 10px;
    border-top: 2px solid #ffffff;
    justify-content: center;
  }

  .top-bar h1 {
    font-size: 26px;
  }

  nav button {
    font-size: 14px;
    padding: 8px 12px;
  }
}
nav button:hover {
  background-color: #FF5C8D;
}

.title-group {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.title-group h2 {
  font-size: 35px;
  background: linear-gradient(90deg, #5a3e8a, #3b1f5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

.title-group .slogan {
  font-size: 25px;
  color: #3c0840;
  margin-bottom: 5px;
  
}

.text-prezentare {
  max-width: 1000px;
  margin: 10px auto;
  margin-top: 0 auto;
  padding: 40px 50px;
  background: linear-gradient(145deg, #fefefe, #bbdefb);
  border: 3px solid #42a5f5;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(33, 150, 243, 0.3);
  color: #1a237e;
  line-height: 1.7;
  text-align: center;
  transition: transform 0.3s ease;
}

.text-prezentare:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.5);
}

.text-prezentare strong {
  font-size: 28px;
  color: #1976d2;
  text-shadow: 1px 1px 2px rgba(25, 118, 210, 0.5);
}

.text-prezentare p {
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 500;
}

.text-prezentare p:last-child {
  font-weight: 700;
  color: #102275;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.features {
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  grid-gap: 20px;
  justify-content: center;
  width: 100%;
}

.feature {
  padding: 30px;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  
}


@media (max-width: 500px) {
  .features {
    grid-template-columns: 2fr;
    max-width: 400px;
    
  
  }
}
.poza-mare {
  width: fit-content;
  margin: 40px auto;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6815b0, #4a00e0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.poza-mare .poza {
  width: 400px;
  height: 380px;
  background-color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}
.features-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 30px auto;
  max-width: 1000px;
  padding: 0 20px;
}

@media (min-width: 700px) and (max-width: 1000px) {
  .features-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 659px; 
    margin: 0 auto;
    margin-top: 20px;
    justify-items: center;
    align-items: center;
  }

  .features .feature {
    width: 100%;
    height: 100px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
  }

  .poza-mare {
    margin: 0 auto;
  }

  .poza-mare .poza {
    width: 280px;
    height: 300px;
  }
}
.feature {
  padding: 30px;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  border-radius: 15px;
  font-weight: bold;
  text-align: center;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-12px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.red { background-color: #ef5350; }
.blue { background-color: #42a5f5; }
.yellow { background-color: #ffca28; color: black; }
.green { background-color: #66bb6a; }
.purple { background-color: #b34bd0; }
.orange { background-color: #fb8c00; }

.gallery {
  padding: 40px 20px;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.photo {
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-weight: bold;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  user-select: none;
  margin-bottom: 20px;
}

.photo:hover {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.Container-principal {
  width: 100%;
  background: linear-gradient(135deg, #e385e250, #eacad500);
  padding: 20px;
}

.slider-container {
  width: 70%;
  margin: 20px auto;
  overflow: hidden;
  background-color: transparent;
  border-radius: 12px;
}

.text {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ffffff;
}

.site-footer {
  padding: 20px 0px;
  background-color: #f8bbd0;
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-address a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  margin: 5px;
}

.footer-contact {
  margin-top: 8px;
}

.footer-icon {
  width: 14px;
  height: 21px;
}

.footer-social {
  text-align: center;
  margin-bottom: 1px;
}

.footer-social p {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  transition: transform 0.3s;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 10px auto;
  width: 90%;
}

.footer-copy {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  justify-content: center;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-address,
  .footer-contact,
  .footer-social {
    width: 100%;
  }

  .footer-address a,
  .footer-contact a {
    justify-content: center;
  }

  .footer-copy {
    font-size: 14px;
  }

  .social-icons img {
    width: 32px;
    height: 32px;
  }
}

.program-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between; /* Schimbat de la center la space-between */
  max-width: 1000px;
  margin: 20px auto;
  gap: 20px;
  flex-wrap: nowrap; /* să nu se spargă pe mai multe rânduri pe desktop */
}

.program-iepure {
  width: 190px;
  height: auto;
 
}

/* Combinat program + pret */
.program,
.pret {
  background: linear-gradient(145deg, #fefefe, #bbdefb);
  border: 3px solid #42a5f5;
  padding: 25px 30px;
  border-radius: 40px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333;
  width: 350px;            
  height: 300px;
  box-shadow: 0 8px 25px rgba(28, 6, 110, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 12px 25px rgba(33, 150, 243, 0.3);
  color: #1a237e;
}


.pret:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.5);
}
.program:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(33, 150, 243, 0.5);
}
.program h3,
.pret h3 {
  font-size: 28px;
  color: #ff4500;
  margin-bottom: 15px;
}

.programul {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.programul li {
  margin: 10px 0;
}

@media (max-width: 1000px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .title-group {
    margin: 0 auto;
    padding: 0 15px;
  }

  .features-wrapper {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-left: 0;
    justify-content: center;
  }

  .poza-mare .poza {
    width: 100%;
    height: auto;
  }

  .program-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .program-iepure {
    width: 200px;
  }

  .slider-container {
    width: 100%;
    padding: 0 10px;
  }

  .text-prezentare {
    padding: 20px;
    margin: 20px;
  }
}


#balloon-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  pointer-events: none;
  overflow: hidden;
  z-index: -1; 
}

.balloon {
  height: 125px;
  width: 105px;
  border-radius: 75% 75% 70% 70%;
  position: absolute;
  bottom: 0;
}

.balloon:before {
  content: "";
  height: 150px;  /* Made longer from 75px to 150px */
  width: 1px;     /* Made slightly thicker for better visibility */
  background-color: #FDFD96;
  display: block;
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: auto;
  /* Add wavy animation */
  animation: wave 3s ease-in-out infinite;
  transform-origin: top center;
}

.balloon:after {
  content: "▲";
  text-align: center;
  display: block;
  position: absolute;
  color: inherit;
  top: 120px;
  left: 0;
  right: 0;
  margin: auto;
}

/* Add wavy animation keyframes */
@keyframes wave {
  0%, 100% { 
    transform: rotate(0deg); 
  }
  25% { 
    transform: rotate(3deg); 
  }
  75% { 
    transform: rotate(-3deg); 
  }
}

@keyframes float {
  from {
    transform: translateY(100vh);
    opacity: 1;
  }
  to {
    transform: translateY(-300vh);
    opacity: 0;
  }
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  margin-bottom: 20px;
  text-align: center;
  margin-right: 14px;
}


.filter-buttons button {
  flex: 1 1 150px; 
  max-width: 200px;
  padding: 10px 16px;
  background-color: #eea6bc;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  margin: 0 10px;
  text-align: center;
}


.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: #860f86;
  color: white;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 30px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}


.gallery-header {
  text-align: center;
  margin: 30px 0;
}


@media (max-width: 750px) {
  .filter-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px;
  }

  .filter-buttons button {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    text-align: center;
  }
}
.mobile-footer {
  display: none; /* Ascuns implicit */
}

@media (max-width: 600px) {
  .mobile-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color:transparent;
    align-items: center;
    padding-left: 10px;
    z-index: 9999;
  }

  .footer-bunny {
    height: 120px;
    width: auto;
  }
}



