
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

:root {
  --roz-bonbon: #ff69b4;
  --turcoaz: #66d9e8;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Resetare stiluri implicite */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');



body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('./assets/images/bg-hero.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}



/* numar de telefon */
.call-button {
  position: fixed;
  bottom: 15px;
  right: 20px;
  background-color: #ff8dd9;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.56);
  transition: background-color 0.3s ease;
    animation: pulse 2.5s infinite;

}

.call-button:hover {
  background-color: #a7008b;
}




@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(90, 62, 62, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(90, 62, 62, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(90, 62, 62, 0);
  }
}
































/* MENIU DESIGN */
/* Meniu fix în partea de sus */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 0.8rem 2rem;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #f6a0b7;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f6a0b7;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

/* Meniu responsive pe mobil */
@media (max-width: 768px) {
  /* Butonul hamburger devine vizibil pe mobil */
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000; /* Asigură-te că meniul este vizibil pe mobil */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin: 0.7rem 0;
  }

  /* Stilizare pentru linkurile din meniul mobil */
  .nav-links a {
    font-size: 1.2rem;
    padding: 10px;
    display: block;
    text-align: center;
  }
}




















/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 0 0;
    z-index: 1;
}
/* Blurred Box - Versiune finală cu culori păstrate */
.blurred-box {
  background: rgba(189, 189, 189, 0.35);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  width: 90%;
  max-width: 90vh;
  min-height: 65vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3rem;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 0 30px rgba(255, 182, 193, 0.3),
    inset 0 0 15px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInScale 0.8s ease-out forwards;
  overflow: hidden; /* Schimbat din auto în hidden */
  z-index: 2;
}

.blurred-box h1 {
  font-size: clamp(3rem, 8vw, 5rem); /* Redus dimensiunea maximă */
  color: #fff1f8;
  margin: 0 0 2rem;
  position: relative;
 
  line-height: 1;
  max-width: 100%;
  word-break: keep-all; /* Previne despărțirea cuvintelor */
  padding: 0 1rem; /* Buffer lateral */
  text-shadow:
        -3px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
}



@media (max-width: 768px) {
  .blurred-box {
    padding: 2rem 1rem; /* Mai mult spațiu pe mobil */
  }
  
   .blurred-box h1 {
        font-size: 2rem;
        text-shadow:
          -3px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
      }
  
}
.blurred-box p {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9); /* Culoare păstrată */
  
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
}

.blurred-box::after {
  content: '';
  position: absolute;
  will-change: transform;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 8s infinite linear;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

/* Media queries corectate */
@media (max-width: 1200px) {
  .blurred-box {
    width: 85%;
    min-height: 75vh;
  }
  
   .blurred-box h1 {
        font-size: 2rem;
        text-shadow:
           -2px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
      }
}

@media (max-width: 992px) {
  .blurred-box {
    width: 80%;
    min-height: 49vh;
    padding: 3rem 2rem;
    border-radius: 50px;
   
  }
  .blurred-box h1 {
        font-size: 4rem;
        text-shadow:
           -3px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
      }
}

@media (max-width: 768px) {
  .blurred-box {
    width: 92%;
    min-height: 75vh;
    border-radius: 45%;
    padding: 2.5rem 1.5rem;
  }
  .blurred-box h1 {
        font-size: 2rem;
        text-shadow:
          -3px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
      }
   
  .blurred-box p {
    max-width: 85%;
  }
}

@media (max-width: 576px) {
  .blurred-box {
    width: 94%;
    min-height: 75vh;
    padding: 2rem 1rem;
    border-radius: 50%;
  }
   .blurred-box h1 {
        font-size: 2rem;
        text-shadow:
          -2px -2px 0 #ff69b4,
         2px -2px 0 #ff69b4,
        -2px  2px 0 #ff69b4,
         2px  2px 0 #ff69b4;
      }
  
   
  .blurred-box p {
    max-width: 90%;
  }
}

@supports not (backdrop-filter: blur(24px)) {
  .blurred-box {
    background: rgba(255, 240, 245, 0.85);
  }
}

/* Buton CTA */
.cta-button {
  background-color: var(--turcoaz);
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 217, 232, 0.4);
  display: inline-block;
}


.cta-button:hover {
  background-color: #4ac3d3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 195, 211, 0.6);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
}




/* sageata de scroll */

.scroll-invite {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  opacity: 0.8;
  z-index: 3;
}

.scroll-invite .arrow {
  width: 20px;
  height: 20px;
  border-right: 4px solid white; /* Schimbat de la border-left la border-right */
  border-bottom: 4px solid white; /* Schimbat de la border-top la border-bottom */
  margin: 10px auto;
  transform: rotate(45deg); /* Rotire inversată */
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(45deg);
  }
}





























/* Sectiune despre candywall - versiune finală */
#despre-candywall {
  margin: 10rem auto;
  padding: 2rem;
  background-color: rgba(255, 228, 237, 0.95);
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  height: auto;
  overflow: hidden;
}

.section-title {font-size: 3rem;
  color: var(--roz-bonbon);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  .section-title {
    letter-spacing: 0; /* Spațiere normală pe mobil */
    line-height: 1.3; /* Mai aerisit pe ecrane mici */
  }
}

/* Modificare principală: Adaptare layout desktop */
.despre-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* Păstrăm alinierea textului la stânga */
}

/* Păstrăm toate detaliile existente pentru imagine */
.despre-wrapper img {
  width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0; /* Previne comprimarea imaginii */
}


/* Păstrăm exact stilizarea existentă pentru text */
.despre-text {
  max-width: 600px;
}

.despre-text h3 {
  font-size: 2rem;
  color: #ff69b4;
  margin-bottom: 1.5rem;
}

.despre-text p {
  font-family: 'Quicksand';
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.despre-text p:last-child {
  margin-bottom: 0;
}

/* Modificare: Layout mobil - text sub imagine */
@media (max-width: 768px) {
  .despre-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .despre-text {
    text-align: center;
    max-width: 100%;
  }
  
  /* Păstrăm reverse doar pe desktop */
  .despre-wrapper.reverse {
    flex-direction: column;
  }
}

/* Galerie mică - Versiune îmbunătățită */
.galerie-mica {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 coloane */
  gap: 1.5rem;
  margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.galerie-mica img {
  width: 100%; /* Umple întreaga lățime a celulei */
  height: auto;
  border-radius: 19px;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 1/1; /* Păstrează proporția pătrată */
  object-fit: cover; /* Asigură că imaginile umplu spațiul */
}

.galerie-mica img:hover {
  transform: scale(1.05);
}

/* Dimensiuni diferite pe desktop vs mobil */
@media (max-width: 768px) {
  .galerie-mica {
    gap: 0.8rem; /* Spațiu mai mic între imagini pe mobil */
  }
  
  .galerie-mica img {
    border-radius: 12px; /* Colțuri mai puțin rotunjite pe mobil */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Umbră mai subtilă */
  }
}

@media (min-width: 769px) {
  .galerie-mica {
    gap: 2rem; /* Spațiu mai mare între imagini pe desktop */
    max-width: 1200px;
    margin: 3rem auto;
  }
  
  .galerie-mica img {
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5); /* Umbră mai pronunțată */
  }
}

.galerie-mica img:hover {
  transform: scale(1.1);
}
/* Lightbox efect */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 25px #fff;
}

#lightbox.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  /* Ajustăm wrapper-ul pentru a fi coloană pe mobil */
 .despre-wrapper img {
    width: auto !important; /* Forțăm lățimea să fie automată */
    max-width: 300px !important; /* Limităm lățimea maximă */
    margin-bottom: 1rem;
  }
  /* Reversăm ordinea în mod similar pe mobil */
  .despre-wrapper.reverse {
    flex-direction: column;
  }

  .despre-wrapper img {
    width: 100%; /* Imaginea va ocupa întreaga lățime pe mobil */
    max-width: 300px; /* Lățimea maximă a imaginii */
    margin-bottom: 1rem; /* Adăugăm un spațiu între imagine și text */
  }

  .despre-text {
    text-align: center; /* Centrarea textului pe mobil */
    max-width: 90%; /* Asigurăm că textul ocupă mai mult spațiu pe mobil */
  }
}

.reveal {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.reveal.slide-left { transform: translateX(-50px); }
.reveal.slide-right { transform: translateX(50px); }
.reveal.fade { transform: none; }




/* Lightbox improvements */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}
.nav-btn.prev { left: 20px; }
.nav-btn.next { right: 20px; }
.nav-btn:focus {
    outline: 2px solid white;
}





/* Responsive */
@media (max-width: 768px) {
  /* Ajustăm wrapper-ul pentru a fi coloană pe mobil */
  .despre-wrapper {
    flex-direction: column;
    align-items: center; /* Asigură centrul total pe mobil */
    text-align: center; /* Centrarea textului pe mobil */
  }

  /* Reversăm ordinea în mod similar pe mobil */
  .despre-wrapper.reverse {
    flex-direction: column;
  }

  .despre-wrapper img {
    width: auto; /* Oferim imaginii lățime automată */
    max-width: 300px; /* Limităm lățimea imaginii la maxim 300px */
    margin-bottom: 1rem; /* Adăugăm un spațiu între imagine și text */
  }

  .despre-text {
    text-align: center; /* Centrarea textului pe mobil */
    max-width: 90%; /* Asigurăm că textul ocupă mai mult spațiu pe mobil */
  }
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
  box-shadow: 0 0 25px #fff;
}

#lightbox.show {
  display: flex;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000; /* Asigură-te că este deasupra imaginii */
  transition: 0.3s;
}

.close-btn:hover {
  color: #ff69b4; /* Culoare de hover (roz) */
}






































/* ========== PACHETE SECTION ========== */
/* Secțiunea Pachete */
.candywall-packages {
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5vw, 2rem); /* Padding fluid */
    background: linear-gradient(135deg, var(--roz-bonbon) 0%, var(--turcoaz) 100%);
    color: white;
    border-radius: 3rem;
    max-width: 90%;
    margin: auto; /* Corrected: 0 or a specific rem value */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}


.candywall-packages h2 {
  font-size: 3rem;
  color: var(--alb);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.candywall-packages > p { /* Selector specific pentru paragraful imediat sub h2 */
    font-size: clamp(1.2rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
    max-width: 900px; /* Limitează lățimea pentru lizibilitate */
    margin-left: auto;
    margin-right: auto;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Grilă flexibilă */
    gap: clamp(1.5rem, 4vw, 2rem); /* Spațiu fluid */
    justify-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
    max-width: 90%;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.package-card {  background-color: #fff;
  transform-style: preserve-3d;
  color: #333;
  padding: 2.5rem 2rem; /* Mai consistent */
  margin: 0.5rem;
  --contrast-ratio: 4.5;
  border-radius: 76px;
  box-shadow:  6px 6px rgba(255, 110, 190, 0.35);
  text-align: center;
  width: 100%;
  min-height: auto;
  height: auto;
  max-width: auto;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Eticheta "Popular" */
.package-card.featured-package .package-tag {
    position: absolute;
    top: -15px;
    right: clamp(10px, 5vw, 20px);
    background-color: #ffc107;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 10;
}

.package-card.featured-package {
    border: 3px solid #ffc107;
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.3);
}

.package-card.featured-package:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.4);
}

/* Iconița pachetului */
.package-card .package-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--roz-bonbon);
    margin-bottom: 1rem;
}

/* Titlul pachetului */
.package-card h3 {
    font-size: clamp(1.6rem, 4vw, 1.9rem);
    color: var(--roz-bonbon);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Wrapper pentru detalii */
.package-card .package-details-wrapper {
    flex-grow: 1;
  min-height: auto;
}

/* Lista de itemi inclusi în pachet */
.package-card .package-items {
    list-style: none;
    padding: 0;
  
    margin-bottom: 1.8rem;
    text-align: left;
    padding-left: 0;
}

.package-card .package-items li {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #666;
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Quicksand', sans-serif;
}

/* Ascunde bifa implicită */
.package-card .package-items li::before {
    content: none;
}

/* Bifa Verde */
.package-card .package-items li:not(.item-description):not(.negative-item):not(.expandable-list-item)::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--turcoaz);
}

/* Bifa Roșie */
.package-card .package-items li.negative-item::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--roz-bonbon);
}

/* Stil pentru descriere (fără bifă) */
.package-card .package-items li.item-description {
    font-weight: normal;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 0;
}
.package-card .package-items li.item-description::before {
    content: none !important;
}

/* Stil pentru elementul care conține butonul de toggle (fără bifă) */
.package-card .package-items li.expandable-list-item {
    padding-left: 0;
    margin-bottom: 0;
}
.package-card .package-items li.expandable-list-item::before {
    content: none !important;
}

/* Butonul de deschidere/închidere a listei de dulciuri */
.toggle-list-btn {
    background-color: var(--turcoaz);
    color: white;
    padding: 8px 16px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-list-btn:hover {
    background-color: var(--roz-bonbon);
}

/* Lista de dulciuri (ascunsă inițial) */
.sweet-list {
    font-size: 1rem;
    color: #555;
    display: none;
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 1rem;
    max-height: none;
    overflow: hidden;
}

/* Clasa pentru a arăta lista (activată cu JS) */
.sweet-list.active {
    display: block;
    max-height: none; /* Remove fixed height */
    overflow: visible; /* Make content fully visible */
    padding: 0 1rem 1rem; /* Adjust padding as needed */
}

.sweet-list li {
    color: #333;
    font-size: clamp(0.85rem, 2.3vw, 1rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    padding-left: 0;
}
.sweet-list li::before {
    content: none !important;
}
.sweet-list li::marker {
    color: #ff89b0;
}

/* Wrapper pentru prețuri și buton "Rezervă" */
.package-pricing-wrapper {
    width: 100%;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin: 1.5rem 0;
}

.price-container .old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 500;
}

.price-container .current-price {
    font-size: clamp(1.8rem, 4.5vw, 2rem);
    color: #333;
    font-weight: 700;
}

/* Butonul "Rezervă" din carduri */
.package-pricing-wrapper .cta-button {
    display: inline-block;
    background-color: #f6a0b7;
    color: white;
    padding: 10px 20px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    border-radius: 25px;
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.package-pricing-wrapper .cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Media Queries pentru Secțiunea Pachete */
@media (max-width: 1200px) {
    .package-list {
        grid-template-columns: repeat(2, 1fr); /* 2 coloane pe ecrane medii */
    }
}

@media (max-width: 768px) {
    .candywall-packages {
        border-radius: 2rem;
        margin: 2rem auto;
    }
    .package-list {
        grid-template-columns: 1fr; /* O singură coloană pe mobil */
        gap: 1.5rem;
    }
    .package-card {
        padding: 1.5rem;
        max-width: 100%; /* Lățime mai mare pe mobil */
        margin-left: auto;
        margin-right: auto;
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .candywall-packages {
        padding: 1.5rem 0.5rem;
        border-radius: 1.5rem;
        margin: 1rem auto;
    }
    .package-card {
        padding: 1rem;
        border-radius: 30px;
    }
}

/* Banner de Promoție */
.promotion-banner {
    background: linear-gradient(90deg, var(--turcoaz) 0%, var(--roz-bonbon) 100%);
    color: var(--alb);
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.8rem, 2vw, 1rem); /* Padding fluid */
    border-radius: 20px;
    margin: 3rem auto 4rem auto;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    animation: fadeInSlide 0.8s ease-out forwards;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.promotion-banner .discount-value {
    font-size: 1.3em;
    color: var(--alb);
    font-weight: 900;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.promotion-banner .promotion-details {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Carduri cu Reducere */
.package-card.has-discount {
    border: 2px solid var(--roz-bonbon);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    overflow: hidden;
}

/* Panglică "OFERTĂ SPECIALĂ!" */
.package-card.has-discount::before {
    content: "OFERTĂ SPECIALĂ!";
    position: absolute;
    top: clamp(10px, 3vw, 15px);
    right: clamp(-60px, -15vw, -50px);
    background-color: var(--roz-bonbon);
    color: var(--alb);
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 600;
    padding: clamp(3px, 1.5vw, 5px) clamp(30px, 10vw, 50px);
    transform: rotate(27deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.package-card.has-discount .price-container .old-price {
    color: #a0a0a0;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.package-card.has-discount .price-container .current-price {
    color: var(--turcoaz);
    text-shadow: 0 0 8px rgba(102, 217, 232, 0.7);
    font-size: clamp(2.2rem, 5.5vw, 2.8rem);
    font-weight: 900;
}











/* Contact Section */


/* Contact Section */
#contact {
  max-width: 90%;
  margin: 4rem auto;
  backdrop-filter: blur(20px);
  padding: 2rem;
  background-color: rgba(255, 240, 245, 0.79);
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  font-size: 3rem;
  color: var(--roz-bonbon);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.contact-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #5a3e3e;
  text-align: left;
  max-width: 60%;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.contact-subtitle p {
  margin-bottom: 1.5rem;
}
.contact-container {
  max-width: 400px;
  margin: 0 auto;
}

/* Social Frame Styling */
.social-frame {
  background: linear-gradient(145deg, #fff0f5, #f8dfdf);
  border-radius: 42px;
  padding-left: 3.1rem;
  padding-right: 3.1rem;
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
  box-shadow: 0 20px 30px rgba(255, 153, 204, 0.3), inset 0 0 15px rgba(255, 204, 221, 0.5);
  border: 2px solid #ffccdd;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 15px; /* Spatiu între butoane */
  flex-wrap: wrap; /* Permite butoanelor să se împartă pe mai multe linii pe mobil */
  justify-content: space-evenly; /* Asigură că butoanele se împart uniform */
}

/* Social Buttons */
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 50%;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 50px; /* Dimensiune fixă pentru butoane */
  height: 50px; /* Dimensiune fixă pentru butoane */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: white; /* Culoare albă pentru text */
}

/* Hover Effects */
.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Mai multă umbră la hover */
}

/* Individual Button Colors */
.whatsapp {
  background-color: #25D366;
}

.whatsapp:hover {
  background-color: #128C7E;
}

.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.instagram:hover {
  background: linear-gradient(45deg, #FF4D70, #FF8C00, #FF2A7F);
}

.tiktok {
  background-color: #000000;
}

.tiktok:hover {
  background-color: #333333;
}

.facebook {
  background-color: #1877F2;
}

.facebook:hover {
  background-color: #166FE5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-frame {
    padding: 1.5rem;
    flex-direction: row;
    justify-content: center;
  }
  
  /* Responsive Design */
@media (max-width: 768px) {
  .social-frame {
    padding: 1.5rem;
    flex-direction: row;
    justify-content: space-evenly; /* Menține distanțarea uniformă între butoane pe mobil */
  }
}
  
  #contact h2 {
    font-size: 3rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
    max-width: 90%;
    text-align-last: left;
  }
}

@media (max-width: 480px) {
  #contact h2 {
    font-size: 3rem;
  }
  
  
  .social-frame {
    padding: 1rem;
    border-radius: 20px;
  }
  
  .social-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}



/* buton telefon din contact*/

.contactcall-button {
    display: block;
    background-color: #ffccd5;
    color: #5a3e3e;
    /* Folosim clamp() pentru padding pentru a asigura o dimensiune fluidă */
    /* Folosim clamp() pentru font-size pentru a asigura o dimensiune fluidă */
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;

    text-align: center; /* Am schimbat de la 'left' la 'center' pentru text */
    margin-bottom: 80px;
    margin-top: 40px;
    border-radius: 30px;
    text-decoration: none;
    width: 90%; /* Lățime fluidă, dar cu o limită max-width */
    max-width: 60%; /* Limită maximă de lățime pentru desktop */
    margin-left: auto; /* Adăugat pentru centrare */
    margin-right: auto; /* Adăugat pentru centrare */
    /* Centrare orizontală și o margine fixă sus/jos */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contactcall-button:hover {
    background-color: #ffb3cc;
    transform: scale(1.05);
}

/* --- */

/* Media Queries pentru ajustări fine pe diverse dimensiuni */
@media (max-width: 768px) {
    .contactcall-button {
        width: 95%; /* Mărim lățimea pe ecrane mai mici pentru a ocupa mai mult spațiu */
        padding: clamp(0.8rem, 2.5vw, 1.2rem) clamp(1rem, 4vw, 1.5rem); /* Ajustăm padding-ul */
        font-size: clamp(0.9rem, 2.2vw, 1.1rem); /* Ajustăm dimensiunea fontului */
        margin: 15px auto; /* Poate fi necesară o mică ajustare a marginilor */
    }
}

@media (max-width: 480px) {
    .contactcall-button {
      margin-top: 20px;
      margin-bottom: 40px;
        width: 95%; /* Asigurăm o lățime generoasă pe cele mai mici ecrane */
        padding: clamp(2rem, 2.2vw, 1rem) clamp(0.1rem, 3.5vw, 1.2rem); /* Padding și mai mic */
        font-size: 20px; /* Font și mai mic pentru lizibilitate */
        border-radius: 25px; /* Colțuri ușor mai puțin rotunjite */

    
    }
}




























/* ========== formular de rezervare  ========== */





.rezervare-form {
  max-width: 60%;
  margin: 4rem auto;
  backdrop-filter: blur(20px);
  padding: 2rem;
  background-color: rgba(255, 240, 245, 0.79);
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rezervare-form h2 {
  font-size: 3rem;
  color: var(--roz-bonbon);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: inline-block;
}

.rezervare-form p {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #5a3e3e;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.rezervare-form input,
.rezervare-form select,
.rezervare-form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.rezervare-form button {
  background-color: #ff6f61;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.rezervare-form button:hover {
  background-color: #ff4f3a;
}

.rezervare-form input:focus,
.rezervare-form select:focus {
  border-color: #ff6f61;
  outline: none;
}
.rezervare-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    resize: vertical; /* Permite doar redimensionarea verticală */
    min-height: 100px;
    transition: border-color 0.3s ease;
}

.rezervare-form textarea:focus {
    border-color: #ff69b4;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}





html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Înălțimea navbar-ului */
}

/* ========== conirmare rezervare - cod mutat in conf rez.html ========== */



















/* ========== FOOTER ========== */

footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--roz-bonbon);
  color: var(--alb);
}


/* Poziționare fixă a butonului WhatsApp în colțul din dreapta jos */
/* Poziționare fixă a butonului WhatsApp în colțul din dreapta jos */
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Poziționează butonul la 20px de la marginea de jos */
  right: 20px; /* Poziționează butonul la 20px de la marginea dreaptă */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 7000;
}

/* Asigură-te că butonul nu iese din pagină pe mobil */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 10px; /* Mai aproape de partea de jos */
    right: 10px;  /* Mai aproape de marginea dreaptă */
    padding: 0.8rem 1rem; /* Redu dimensiunea butonului pe mobil */
    font-size: 1rem; /* Font mai mic */
    width: auto; /* Adaptează dimensiunile butonului */
  }

  .whatsapp-button i {
    font-size: 18px; /* Dimensiune mai mică pentru iconiță pe mobil */
  }
}

/* Responsivitate - pentru ecrane mici */
@media (max-width: 768px) {
  #whatsapp-button {
    bottom: 15px; /* Micșorăm distanța de jos pe mobil */
    right: 15px;  /* Micșorăm distanța de dreapta pe mobil */
  }
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {
  .blurred-box {
    padding: 2.5rem;
    border-radius: 15px;
    min-height: 50vh;
    width: 95%;
  }
  .rezervare-form {
    max-width: 90%;}
  
  .blurred-box h1 {
    font-size: 2.8rem;
    -webkit-text-stroke-width: 2px;
  }
  
  .blurred-box p {
    font-size: 1.1rem;
  }
  
  @media (max-height: 500px) and (orientation: landscape) {
  .hero { height: auto; min-height: 100vh; }
}
  
  .section {
    padding: 3rem 1rem;
  }
  
  .pachet-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .blurred-box {
    padding: 2rem 1.5rem;
  }
  .rezervare-form {
    max-width: 90%;}
  
  .blurred-box h1 {
    font-size: 2.2rem;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}