* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2E2E2E;
    background-color: #F8F5F2;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #6B8E6B;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #D8A7B1;
}

/* HERO */
.hero {
    background: url('hero.jpg') center/cover no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #D8A7B1;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #6B8E6B;
}

/* SECTION */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    font-size: 32px;
}

/* PRODUK */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    padding: 20px;
    text-align: center;
}

/* GALERI */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

/* CONTACT */
.contact {
    background: white;
    text-align: center;
}

/* FOOTER */
footer {
    background: #2E2E2E;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h2 {
        font-size: 28px;
    }
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
}

.box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.proses .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    text-align: center;
}

.step {
    background: #D8A7B1;
    color: white;
    padding: 25px;
    border-radius: 10px;
    font-weight: 500;
}

.harga .price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #6B8E6B;
}

.highlight {
    border: 2px solid #D8A7B1;
}

.testimoni .card {
    padding: 30px;
}

.area {
    background: #F1ECE8;
}

.cta {
    background: #6B8E6B;
    text-align: center;
    color: white;
    padding: 60px 0;
}

.cta .btn {
    background: white;
    color: #6B8E6B;
    margin-top: 20px;
}
/* ============================= */
/* RESPONSIVE BREAKPOINT SYSTEM */
/* ============================= */

/* Large Desktop ( >1400px ) */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .hero h2 {
        font-size: 54px;
    }
}

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .hero h2 {
        font-size: 42px;
    }

    .container {
        width: 92%;
    }
}

/* Tablet */
@media (max-width: 992px) {

    header .nav {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero {
        height: 75vh;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile Besar */
@media (max-width: 768px) {

    section {
        padding: 60px 0;
    }

    .hero {
        height: 70vh;
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

}

/* Mobile Kecil */
@media (max-width: 480px) {

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 13px;
    }

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

    nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

}