*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

:root{
  --pink:#f4b6cc;
  --soft-pink:#fff3f7;
  --purple:#dccbff;
  --text:#51434b;
  --white:#ffffff;
  --shadow:0 15px 35px rgba(0,0,0,0.08);
}

body{
  background:linear-gradient(to bottom,#fff8fb,#fff2f7);
  color:var(--text);
  overflow-x:hidden;
}



/* ================= HEADER ================= */

header{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(15px);
  transition:.4s;
}

header.scrolled{
  background:white;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.logo{
  font-size:32px;
  font-weight:700;
  color:var(--pink);
}

.logo span{
  color:var(--purple);
}

nav ul{
  display:flex;
  list-style:none;
  gap:35px;
}

nav ul li a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  transition:.3s;
  position:relative;
}

nav ul li a::after{
  content:'';
  width:0;
  height:2px;
  background:var(--pink);
  position:absolute;
  left:0;
  bottom:-5px;
  transition:.3s;
}

nav ul li a:hover::after{
  width:100%;
}

.menu-btn{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:var(--pink);
}



/* ================= BUTTON ================= */

.btn{
  padding:15px 32px;
  border-radius:50px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:white;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:.4s;
  box-shadow:var(--shadow);
}

.btn:hover{
  transform:translateY(-5px);
}

.btn-outline{
  background:white;
  color:var(--text);
}



/* ================= HERO ================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:130px 8%;
  background:linear-gradient(135deg,#fff7fb,#ffeef5);
  position:relative;
  overflow:hidden;
}

/* LEFT */

.hero-left h1{
  font-size:75px;
  line-height:1.1;
  margin-bottom:25px;
  color:var(--text);
}

.hero-left p{
  font-size:16px;
  line-height:1.8;
  color:#777;
  max-width:500px;
}

.hero-mini{
  color:var(--pink);
  font-weight:600;
  margin-bottom:15px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.hero-btn{
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:35px;
}

.explore-btn{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
}

.explore-btn:hover{
  color:var(--pink);
}



/* RIGHT */

.hero-right{
  position:relative;
  width:100%;
  height:550px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-card{
  background:white;
  border-radius:25px;
  overflow:hidden;
  position:absolute;
  box-shadow:var(--shadow);
  transition:.4s;
}

.hero-card:hover{
  transform:translateY(-10px);
}

.card-label{
  position:absolute;
  top:15px;
  left:15px;
  background:var(--pink);
  color:white;
  padding:6px 15px;
  border-radius:30px;
  font-size:12px;
  z-index:2;
}

.small-card{
  width:220px;
  height:220px;
}

.small-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.big-card{
  width:320px;
  height:430px;
  right:70px;
}

.big-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-content{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:30px;
  background:linear-gradient(to top,
  rgba(0,0,0,0.75),
  transparent);
  color:white;
}

.card-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.card-content p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:20px;
}

.card-content a{
  text-decoration:none;
  background:white;
  color:var(--text);
  padding:10px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
}

.top-card{
  left:0;
  top:0;
}

.bottom-card{
  left:40px;
  bottom:0;
}



/* ================= SECTION ================= */

section{
  padding:100px 8%;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:40px;
  color:var(--text);
}

.section-title a{
  text-decoration:none;
  color:var(--pink);
  font-weight:600;
}



/* ================= OPENING ================= */

.opening-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.opening-box{
  background:white;
  padding:40px 30px;
  border-radius:25px;
  box-shadow:var(--shadow);
  transition:.4s;
}

.opening-box:hover{
  transform:translateY(-10px);
}

.icon-box{
  width:70px;
  height:70px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  display:flex;
  justify-content:center;
  align-items:center;
  color:white;
  font-size:28px;
  margin-bottom:20px;
}

.opening-box h3{
  margin-bottom:15px;
  font-size:22px;
}

.opening-box p{
  color:#777;
  line-height:1.8;
}



/* ================= FEATURED ================= */

.product-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.product{
  background:white;
  border-radius:25px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.4s;
}

.product:hover{
  transform:translateY(-10px);
}

.product img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.product h3{
  padding:20px 20px 10px;
  font-size:24px;
}

.product p{
  padding:0 20px;
  color:var(--pink);
  font-weight:600;
  margin-bottom:20px;
}

.product button{
  margin:0 20px 25px;
  padding:12px 20px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.product button:hover{
  transform:scale(1.05);
}



/* ================= TESTIMONI ================= */

.testimoni{
  background:var(--soft-pink);
}

.testi-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.testi-card{
  background:white;
  padding:40px 30px;
  border-radius:25px;
  box-shadow:var(--shadow);
  transition:.4s;
}

.testi-card:hover{
  transform:translateY(-10px);
}

.testi-card i{
  font-size:35px;
  color:var(--pink);
  margin-bottom:20px;
}

.testi-card p{
  line-height:1.8;
  color:#666;
  margin-bottom:20px;
}

.testi-card h4{
  color:var(--pink);
}



/* ================= GALLERY ================= */

.gallery-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.gallery-container img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:25px;
  transition:.4s;
  box-shadow:var(--shadow);
}

.gallery-container img:hover{
  transform:scale(1.03);
}



/* ================= CTA ================= */

.cta{
  background:linear-gradient(135deg,var(--pink),var(--purple));
  border-radius:40px;
  margin:100px 8%;
  text-align:center;
  color:white;
}

.cta-content h2{
  font-size:50px;
  margin-bottom:20px;
}

.cta-content p{
  font-size:18px;
  margin-bottom:35px;
}

.cta .btn{
  background:white;
  color:var(--text);
}



/* ================= FOOTER ================= */

footer{
  padding:50px 8%;
  text-align:center;
  background:white;
}

.footer-text h2{
  font-size:35px;
  margin-bottom:15px;
  color:var(--pink);
}

.footer-text p{
  color:#777;
}



/* ================= RESPONSIVE ================= */

@media(max-width:991px){

  .hero{
    grid-template-columns:1fr;
    gap:80px;
    padding-top:150px;
  }

  .hero-left h1{
    font-size:55px;
  }

  .hero-right{
    height:600px;
  }

  nav{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    background:white;
    padding:30px;
    transition:.4s;
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
  }

  nav.active{
    left:0;
  }

  nav ul{
    flex-direction:column;
    gap:20px;
  }

  .menu-btn{
    display:block;
  }

}

@media(max-width:600px){

  .hero-left h1{
    font-size:42px;
  }

  .hero-btn{
    flex-direction:column;
    align-items:flex-start;
  }

  .big-card{
    width:250px;
    height:360px;
    right:0;
  }

  .small-card{
    width:160px;
    height:160px;
  }

  .section-title h2{
    font-size:30px;
  }

  .cta-content h2{
    font-size:35px;
  }

  .gallery-container img{
    height:250px;
  }

}