html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f1eb;
    color: #3b241f;
    text-align: center;
}

h1 {
    color: #5a2f28;
    font-size: 52px;
    margin-top: 120px;
}

p {
    font-size: 20px;
}

.navbar {
    width: 100%;
    padding: 18px 40px;
    background: rgba(248, 241, 235, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(90, 47, 40, 0.06);
}
/* logo */

/*logo besar*/
.hero-logo{
    width: 135px; /*ukuran logo */
    height: auto;
    margin-bottom: -18px; /* jarak logo dengan tulisan */
    opacity: .95;
}
/*logo besar*/
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    text-align: left;
}

.logo-text h3 {
    margin: 0;
    color: #5a2f28;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
}

.logo-text span {
    font-size: 11px;
    color: #7a6259;
    letter-spacing: 1px;
}
/* logo */

.menu a {
    text-decoration: none;
    color: #5a2f28;
    margin-left: 25px;
    font-weight: bold;
}

.tombol {
    height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        180deg,
        #f8f1eb,
        #ead8cc
    );
}

.tombol h1 {
    font-size: 72px;
    margin: 0;
}

.tombol p {
    margin-top: 15px;
    margin-bottom: 30px;
}

.btn {
    text-decoration: none;
    background: #5a2f28;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
}

.katalog {
    padding: 80px 20px;
    background: #fffaf6;
}

.katalog h2 {
    font-size: 36px;
    color: #5a2f28;
    margin-bottom: 10px;
}

.subjudul {
    color: #7a6259;
    margin-bottom: 40px;
}

.katalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(90, 47, 40, 0.12);
}

.card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 15px;
}

.card h3 {
    color: #5a2f28;
    margin-bottom: 8px;
}

.card p {
    color: #6d5a54;
    font-size: 15px;
}

.btn-card {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    background: #5a2f28;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
}

.btn-wa {
    display: inline-block;
    margin-top: 10px;
    margin-left: 5px;
    text-decoration: none;
    background: #25D366;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
}

/* section harga */
.harga {
    padding: 100px 20px;
    background: #f4ebe4;
    text-align: center;
}

.harga-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.harga-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.harga-card h1 {
    color: #5a2f28;
    margin: 20px 0;
}

.harga-card ul {
    list-style: none;
    padding: 0;
}

.harga-card li {
    margin: 12px 0;
}

.premium {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5a2f28;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}
/* section harga */

/* bagian kontak*/

.kontak {
    padding: 80px 20px;
    text-align: center;
    background: #f8f1eb;
}

.kontak h2 {
    color: #5a2f28;
    font-size: 36px;
}

.kontak p {
    margin: 15px 0 30px;
}

.btn-wa-besar {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
}

/* akhir bagian kontak*/

/* footer */
.footer {
    background: #5a2f28;
    color:#f3dfd4;
    padding: 35px 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-logo h3 {
    margin: 0;
    font-size: 28px;
}

.footer-desc {
    font-size: 14px;
    margin-top: 10px;
    color: #f3dfd4;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-social a {
    color: #f3dfd4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-social a i {
    font-size: 20px;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 13px;
    color: #f3dfd4;
}

/*statistik*/

.statistik {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px;
    background: white;
}

.statistik h2 {
    color: #5a2f28;
    margin-bottom: 10px;
}

/*statistik*/


/* responsif */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .menu a {
        margin-left: 12px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .katalog-grid {
        grid-template-columns: 1fr;
    }

    .harga-grid {
        grid-template-columns: 1fr;
    }

    .premium {
        transform: scale(1);
    }

    .statistik {
        flex-direction: column;
        gap: 30px;
        padding: 50px 20px;
    }

    .order-grid {
    grid-template-columns: 1fr;
}
}

/* responsif */

/*filter katalog*/
.filter-katalog {
    margin-bottom: 35px;
}

.filter-katalog button {
    border: none;
    background: #ead8cc;
    color: #5a2f28;
    padding: 10px 22px;
    border-radius: 30px;
    margin: 5px;
    font-weight: bold;
    cursor: pointer;
}

.filter-katalog button:hover {
    background: #5a2f28;
    color: white;
}
/*filter katalog */

/* cara order */
.cara-order {
    padding: 100px 20px;
    background: #fffaf6;
    text-align: center;
}

.order-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.order-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(90, 47, 40, 0.1);
}

.order-card span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #5a2f28;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.order-card h3 {
    color: #5a2f28;
    margin-bottom: 10px;
}

/* cara order */

/* faq */
.faq {
    padding: 100px 20px;
    background: #f8f1eb;
    text-align: center;
}

.faq-box {
    max-width: 850px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin-bottom: 18px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(90, 47, 40, 0.08);
}

.faq-item h3 {
    color: #5a2f28;
    margin-bottom: 8px;
}

.faq-item p {
    color: #6d5a54;
    font-size: 15px;
}
/* faq */

/* hero tag */

.hero-tag{
    display:inline-block;
    background:#ffffff80;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:20px;
    color:#5a2f28;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

/* tombol lihat harga */
.btn-outline {
    text-decoration: none;
    background: #5a2f28;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
}
/* tombol lihat harga */

/* hero tag */

/*hover card katalog supaya lebih hidup.*/
.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* tombol card ikut halus */
.btn,
.btn-outline,
.btn-card,
.btn-wa,
.btn-wa-besar {
    transition: 0.3s;
}

.btn:hover,
.btn-outline:hover,
.btn-card:hover,
.btn-wa:hover,
.btn-wa-besar:hover {
    transform: scale(1.05);
}
/* card halus */

/* atur font */
.logo,
.tombol h1,
.katalog h2,
.harga h2,
.cara-order h2,
.faq h2,
.kontak h2,
.keunggulan h2 {
    font-family: 'Playfair Display', serif;
}
/* tutup */

/* floating WA */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    z-index: 999;

    transition: .3s;
}

.floating-wa i {
    font-size: 34px;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes waPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}

.floating-wa {
    animation: waPulse 2s infinite;
}
/* floating wa */

