
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Playfair Display', serif;
        background-color: #f6f6f6;
    }

    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        background-color: #f3f3f3;
    }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('img/icon/bg.png');
    background-size: 300px;
    background-repeat: repeat;

    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
    .hero img {
        width: 60px;
        margin-bottom: 20px;
    }

    .title-main {
        font-size: 64px;
        letter-spacing: 4px;
        color: #0f3b2e;
    }

    .title-sub {
        font-size: 48px;
        margin-top: -10px;
        color: #0f3b2e;
    }

    .title-sub span {
        font-family: 'Great Vibes', cursive;
        color: #b04a5a;
        font-size: 70px;
        margin-right: 5px;
    }

    .desc {
        margin-top: 30px;
        font-size: 12px;
        letter-spacing: 2px;
        color: #0f3b2e;
        text-transform: uppercase;
    }

    .divider {
        margin-top: 40px;
        color: #b04a5a;
        font-size: 24px;
    }

    /* div ke dua */

.section-two {
    position: relative;
    height: 100vh;
    background-color: #FADADD;; /* pink soft elegan */
    overflow: hidden;
}

/* konten tengah */
.section-two .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* gambar produk */
.product-img {
    width: 400px;
    max-width: 90%;
    margin-bottom: 20px;
}

/* teks bawah */
.caption {
    color: #000000;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
}

/* ===== WAVE ATAS ===== */
.wave-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background: #0f3b2e;
    z-index: 3;

    clip-path: polygon(
        0% 100%, 5% 80%, 10% 100%, 15% 80%, 20% 100%, 
        25% 80%, 30% 100%, 35% 80%, 40% 100%, 
        45% 80%, 50% 100%, 55% 80%, 60% 100%, 
        65% 80%, 70% 100%, 75% 80%, 80% 100%, 
        85% 80%, 90% 100%, 95% 80%, 100% 100%, 100% 0%, 0% 0%
    );
}

/* ===== WAVE BAWAH ===== */
.wave-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: #0f3b2e;
    z-index: 3;

    clip-path: polygon(
        0% 0%, 5% 20%, 10% 0%, 15% 20%, 20% 0%, 
        25% 20%, 30% 0%, 35% 20%, 40% 0%, 
        45% 20%, 50% 0%, 55% 20%, 60% 0%, 
        65% 20%, 70% 0%, 75% 20%, 80% 0%, 
        85% 20%, 90% 0%, 95% 20%, 100% 0%, 100% 100%, 0% 100%
    );
}
 /* div ketiga */

 .section-three {
    padding: 100px 20px;
    background-color: #FFF5F7;;
    position: relative;
}

/* background floral */
.section-three::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/img/icon/bg.png'); /* sama seperti hero */
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: 0;
}

.details-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* icon atas */
.icon-top {
    width: 40px;
    margin-bottom: 10px;
}

/* title */
.title {
    font-size: 14px;
    letter-spacing: 4px;
    color: #b04a5a;
    margin-bottom: 40px;
}

/* list */
.details-list {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.details-list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 25px;
    color: #0f3b2e;
    font-size: 14px;
    line-height: 1.6;
}

/* icon hati */
.details-list li::before {
    content: "♡";
    position: absolute;
    left: 0;
    top: 0;
    color: #b04a5a;
}

/* div keempat */

.section-four {
    padding: 100px 20px;
    background: #faf8f8;
    text-align: center;
}

/* header */
.section-four .icon-top {
    width: 40px;
    margin-bottom: 10px;
}

.section-four h2 {
    font-size: 14px;
    letter-spacing: 4px;
    color: #0f3b2e;
}

.section-four p {
    margin-top: 10px;
    color: #e06b8b;
    letter-spacing: 2px;
    font-size: 12px;
}

/* grid gallery */
.gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

/* hover efek */
.gallery img:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* button */
.btn-wrapper {
    margin-top: 50px;
}

.btn-demo {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #0f3b2e;
    color: #0f3b2e;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.3s;
}

.btn-demo:hover {
    background: #0f3b2e;
    color: #fff;
}

.section-five {
    padding: 100px 20px;
    background-color: #f3f3f3;
    position: relative;
    text-align: center;
}

.section-five::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFE4E6; /* pink lembut */
    opacity: 0.6;
    top: 0;
    left: 0;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: auto;
}

.icon-top {
    width: 40px;
    margin-bottom: 10px;
}

.section-five h2 {
    font-size: 14px;
    letter-spacing: 4px;
    color: #0f3b2e;
}

.subtitle {
    margin-top: 10px;
    font-size: 12px;
    color: #b04a5a;
    letter-spacing: 2px;
}

/* contact list */
.contact-list {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-item {
    padding: 10px 20px;
    border: 1px solid #0f3b2e;
    text-decoration: none;
    color: #0f3b2e;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* hover beda warna */
.contact-item:hover {
    background: #0f3b2e;
    color: #fff;
}

/* payment */
.payment {
    margin-top: 50px;
}

.payment p {
    font-size: 12px;
    margin-bottom: 10px;
}

.btn-payment {
    display: inline-block;
    padding: 12px 30px;
    background: #b04a5a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-payment:hover {
    opacity: 0.8;
}

/* note */
.note {
    margin-top: 30px;
    font-size: 12px;
    color: #555;
}

/* footbar */
.footer {
    padding: 40px 20px; /* dari 60 → 40 */
    text-align: center;
    background:  #FFF5F7;
}

/* text kecil */
.footer .made {
    font-size: 9px; /* dari 10 → 9 */
    letter-spacing: 2px;
    color: #b04a5a;
    margin-bottom: 8px;
}

/* brand */
.brand .main {
    font-size: 22px; /* dari 28 → 22 */
    letter-spacing: 3px;
    color: #0f3b2e;
}

/* bagian studio */
.brand .studio {
    font-size: 18px; /* dari 24 → 18 */
    color: #0f3b2e;
}

/* huruf S script */
.brand .s {
    font-family: 'Great Vibes', cursive;
    color: #b04a5a;
    font-size: 28px; /* dari 36 → 28 */
    margin-right: 2px;
}

/* animasi */

/* ===== ANIMATION BASE ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* HERO ANIMATION */
.hero-content {
    animation: fadeHero 1.5s ease;
}

@keyframes fadeHero {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TEXT ANIMATION */
.title-main {
    animation: slideDown 1.2s ease;
}

.title-sub {
    animation: slideUp 1.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* IMAGE HOVER */
.gallery img {
    transition: all 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* BUTTON EFFECT */
.btn-demo, .btn-payment {
    transition: all 0.3s ease;
}

.btn-demo:hover, .btn-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ICON FLOAT */
.icon-top {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}