*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#fff7fa;
    color:#444;
    overflow-x:hidden;
}

section{
    padding:90px 10%;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#ff4f81;
    margin-bottom:60px;
    font-weight:800;
}
.opening{
    max-width:650px;
    margin:auto;
    text-align:center;
    line-height:2;
    font-size:18px;
}
/* NAVBAR */

nav{
    width:100%;
    padding:18px 8%;
    background:rgba(255,255,255,0.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
}

/* LOGO NAVBAR */

.navbar-logo{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:50%;
}

/* LOGO HERO */

.hero-logo{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:25px;
    border:5px solid white;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.logo-text{
    font-size:28px;
    font-weight:800;
    color:#ff4f81;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

nav ul li a:hover{
    color:#ff4f81;
}

/* HERO */

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(255,143,177,0.70),
    rgba(255,79,129,0.70)),
    url('images/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 10%;
    color:white;
}

.hero-content h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

/* BUTTON */

.btn{
    display:inline-block;
    padding:15px 35px;
    background:white;
    color:#ff4f81;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
    margin:8px;
}

.btn:hover{
    transform:translateY(-6px);
}

.btn-pink{
    background:#ff4f81;
    color:white;
}

/* GRID */

.products,
.benefits,
.testimonials,
.favorite-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */

.card,
.benefit,
.testi,
.favorite-box{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

/* ETALASE */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:40px;
}

.gallery img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.5s;
    cursor:pointer;
}

.gallery img:hover{
    transform:scale(1.05);
}
/* EFEK SAAT DISENTUH KURSOR */

.card:hover,
.benefit:hover,
.testi:hover,
.favorite-box:hover{
    transform:translateY(-12px) scale(1.03);
}

/* GAMBAR */

.card img,
.favorite-box img,
.testi img{
    width:100%;
    height:330px;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

/* ZOOM GAMBAR */

.card:hover img,
.favorite-box:hover img,
.testi:hover img{
    transform:scale(1.08);
}

/* TEXT */

.card-content{
    text-align:center;
}

.favorite-content{
    text-align:center;
}

.favorite-content ul{
    list-style:none;
    padding:0;
}

.testi{
    text-align:center;
}

/* PRICE */

.price{
    color:#ff4f81;
    font-weight:700;
    margin-top:15px;
}

/* BENEFIT */

.benefit{
    padding:35px;
    text-align:center;
}

.benefit h3{
    color:#ff4f81;
    margin-bottom:15px;
}
.testi{
    text-align:center;
    padding:25px;
}

/* URGENCY */

.urgency-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.urgency-item{
    background:white;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.urgency-item:hover{
    transform:translateY(-10px);
}

.urgency-item h3{
    color:#ff4f81;
    margin-bottom:15px;
    font-size:22px;
}

.urgency-item p{
    line-height:1.8;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#ff8fb1,#ff4f81);
    border-radius:35px;
    text-align:center;
    color:white;
    padding:80px 10%;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
}

/* SCROLL ANIMATION */

.reveal{
    position:relative;
    transform:translateY(120px);
    opacity:0;
    transition:all 1s ease;
}

.reveal.active{
    transform:translateY(0);
    opacity:1;
}

/* FOOTER */

footer{

    background:
    linear-gradient(rgba(255,79,129,0.85),
    rgba(255,79,129,0.85)),
    url('images/footer-bg.jpg');

    background-size:cover;
    background-position:center;

    margin-top:70px;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.footer-logo{
    width:90px;
    height:90px;
    border-radius:50%;
    margin-bottom:20px;
}

.footer-overlay h3{
    font-size:35px;
    margin-bottom:15px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    nav ul{
        display:none;
    }

    .section-title{
        font-size:34px;
    }

}