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




*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fdf6f9;
  color: #2d2d2d;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  background: linear-gradient(to right, #ffffff, #fff5fa);
  box-shadow: 0 4px 12px rgba(248, 160, 190, 0.1);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #d94d91;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.04);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #d94d91;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #d94d91;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #f88dae;
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
}


.hero {
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0.6)),
              url('hero.jpg') center center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #2c2c2c;
  position: relative;
}

.hero-content {
  max-width: 600px;
  background-color: rgba(255,255,255,0.5);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}


.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d94d91;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.hero-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-hero {
  background-color: #f8c8dc;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background-color: #f89bb6;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: radial-gradient(circle at 30% 30%, #f8a3c4, #d94d91);
  color: white;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  z-index: 1000;
  transition: transform 0.3s, background 0.3s;
}

#backToTop:hover {
  transform: scale(1.1);
  background: radial-gradient(circle at 30% 30%, #f17ba3, #d94d91);
}


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

.container-despre {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.despre-text h2 {
  font-size: 2rem;
  color: #f8a3c4;
  margin-bottom: 20px;
}

.despre-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.img-despre {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.container-despre-grid {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.despre-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.despre-block.reverse {
  flex-direction: row-reverse;
}

.despre-block img.img-despre {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.despre-text-left,
.despre-text-right {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.despre-text-right h2 {
  color: #f8a3c4;
  margin-bottom: 20px;
}
/* ANIMATII */
.despre-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.despre-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FUNDAL DECORATIV COLTURI */
#despre {
  position: relative;
  background: linear-gradient(135deg, #fff0f5 0%, #fdf6f9 100%);
  overflow: hidden;
  z-index: 1;
}

#despre::before,
#despre::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f8a3c4 20%, transparent 70%);
  z-index: 0;
  opacity: 0.25;
}

#despre::before {
  top: -60px;
  left: -60px;
}

#despre::after {
  bottom: -60px;
  right: -60px;
}


.contact {
  background: #ffffff;
  padding: 80px 20px;
}

.container-contact {
  max-width: 1000px;
  margin: auto;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  color: #f8a3c4;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}


.contact-info p,
.contact-form input,
.contact-form textarea {
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  background-color: #f8c8dc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #f89bb6;
}

.site-footer {
  background: #ffeef3;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95rem;
  color: #555;
  margin-top: 80px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.servicii {
  background-color: #fff3f7;
  padding: 100px 20px;
  margin: 120px auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.servicii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.serviciu {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.serviciu:hover {
  transform: translateY(-5px);
}

.serviciu h3 {
  color: #f88dae;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.serviciu p {
  font-size: 1rem;
  line-height: 1.6;
}

.serviciu img {
  margin-bottom: 15px;
  height: 48px;
}

.servicii-btn {
  margin-top: 60px;
  text-align: center;
}

.serviciu {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.serviciu.visible {
  opacity: 1;
  transform: translateY(0);
}


.section-title {
  text-align: center;
  font-size: 2rem;
  color: #f8a3c4;
  margin-bottom: 40px;
}

.serviciu {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.serviciu:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.contact-info a {
  color: #d94d91;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #f88dae;
}

.map-wrapper {
  width: 100%;
  max-width: 700px;         /* mai mare pe desktop */
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;            /* ușor mai înaltă pentru proporții frumoase */
  border: 0;
  display: block;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

.social-icon {
  width: 52px;
  height: 52px;
  padding: 6px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}



.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }

  .nav-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    display: inline-block;
  }

  
    .hero {
    padding: 60px 15px;
  }

  .hero-content {
    padding: 30px 20px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-hero {
    width: 100%;
    padding: 14px;
  }


  .despre, .servicii, .contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .despre .img-despre {
    max-width: 70%;
    margin-top: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  .despre-block,
  .despre-block.reverse {
    flex-direction: column !important;
    text-align: center;
  }

  .despre-block img.img-despre {
    max-width: 85%;
    margin: 0 auto;
  }

  .contact form {
    width: 100%;
  }
  .map-wrapper {
    max-width: 100%;
  }
}

.social-icons {
    justify-content: center;
  }
}
  footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
  }

  .container-despre {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .despre-text img.img-despre {
  float: none !important;
  display: block;
  margin: 30px auto 20px auto !important;
  max-width: 90%;
}

}
@media (min-width: 769px) {
  .navbar .logo {
    transform: translateX(-20px);
  }
}

.contact-info iframe {
  width: 100%;
  max-width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  margin-top: 15px;
}

.contact-info a {
  color: #d94d91;
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.1rem;
}

.contact-info a:hover {
  transform: scale(1.05);
  color: #f88dae;
}

.contact-info {
  max-width: 700px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}







.logo-complet {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #d94d91;
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1rem;
  }
}



.citate {
  background: linear-gradient(135deg, #fff0f6, #ffe4ed);
  padding: 120px 20px;
  margin-top: 60px;
  text-align: center;
  position: relative;
}

.citate::before {
  content: "❝";
  font-size: 8rem;
  color: #f17ba3;
  opacity: 0.15;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 0;
  pointer-events: none;
}

.citate-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 1;
  position: relative;
}

blockquote {
  border: 12px solid transparent;
  border-image: url('impletitura-transparenta-roz.png') 30 round;
  background: #fffdfd;
  border-radius: 24px;
  padding: 40px 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  color: #4a4a4a;
  transition: transform 0.3s ease;
}

blockquote:hover {
  transform: translateY(-5px);
}


blockquote p {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

blockquote footer {
  font-size: 1rem;
  color: #d94d91;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
blockquote:hover footer {
  color: #f17ba3;
}


.citat-box {
  background-image: url('impletitura-transparenta-roz.png');
  background-repeat: stretch;
  background-size: 100% 100%;
  padding: 20px;
  border-radius: 32px;
  display: inline-block;
}

.citat-box blockquote {
  background: white;
  padding: 40px 35px;
  border-radius: 24px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #4a4a4a;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.citat-box blockquote:hover {
  transform: translateY(-5px);
}
.citat-box:hover blockquote footer {
  color: #f17ba3;
  transition: color 0.3s ease;
}


.fancy-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #d94d91;
  position: relative;
  letter-spacing: 1px;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.fancy-title .title-left,
.fancy-title .title-right {
  font-size: 1.8rem;
  color: #f8a3c4;
  transform: scale(1.2);
  opacity: 0.8;
}

/* Stiluri vizuale îmbunătățite pentru secțiunea Despre */
.despre-text-right p,
.despre-text-left p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.despre-text-right,
.despre-text-left {
  border-left: 4px solid #f8a3c4;
  padding-left: 20px;
  animation: slideFade 1.4s ease forwards;
  opacity: 0;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #d94d91;
  margin-bottom: 30px;
  border-bottom: 2px dashed #f8a3c4;
  display: inline-block;
  padding-bottom: 10px;
}