* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background: #fff;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%; /* Hapus jika logonya bukan lingkaran */
}

.logo h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #333;
}

.btn {
    padding: 12px 24px;
    background: #ff5722;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 90vh;

    display: flex;
    align-items: center;
    padding: 0 10%;

    overflow: hidden;
}

/* Gambar dari HTML */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay agar teks mudah dibaca */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Konten */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ff5a1f;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e64a19;
}

.menu {
    padding: 60px 10%;
    background: #fafafa;
}

.menuSwiper {
    margin-top: 50px;
}

.swiper-slide {
    height: auto;
}

.menu h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #222;
}
.menu p.section-desc {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

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

.card h3 {
    font-size: 22px;
    margin: 18px 20px 10px;
}

.card p {
    margin: 0 20px 20px;
    color: #ff5a1f;
    font-size: 18px;
    font-weight: 600;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px;
}

.social {
    margin-top: 20px;
}

.social i {
    font-size: 25px;
    margin: 0 10px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

.mobile-btn {
    display: none;
}

.card-image {
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.card:hover img {
    transform: scale(1.08);
}

.card-body {
    padding: 22px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-body p {
    color: #ff5a1f;
    font-size: 18px;
    font-weight: 600;
}

.services {
    padding: 90px 10%;

    background: #fff;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
}

.section-title p {
    color: #666;
    line-height: 1.8;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    transition: 0.35s;

    border: 1px solid #eee;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;

    margin: auto;

    border-radius: 50%;

    background: #fff3ee;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 40px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;

    margin-bottom: 15px;
}

.service-card p {
    color: #666;

    line-height: 1.8;
}
.menu-action {
    margin-top: 50px;
    text-align: center;
}

.btn-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 35px;

    background: #ff5a1f;
    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.btn-menu:hover {
    background: #e64a19;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(255, 90, 31, 0.35);
}

.btn-menu i {
    transition: 0.3s;
}

.btn-menu:hover i {
    transform: translateX(5px);
}

.deskripsi {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.harga {
    font-weight: bold;
    color: #d35400;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

.menu-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    min-height: 45px;
    margin-bottom: 15px;
}

.menu-price {
    display: inline-block;
    background: #ff7a00;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 992px) {
    nav {
        padding: 0 5%;
    }

    .logo h2 {
        font-size: 20px;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero {
        padding: 0 5%;
    }

    .hero-content {
        max-width: 550px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .menu {
        padding: 60px 5%;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .menu h2 {
        font-size: 32px;
    }

    .card img {
        height: 210px;
    }

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

@media (max-width: 768px) {
    .menu-action {
        margin-top: 35px;
    }

    .btn-menu {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    .desktop-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #333;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        left: -280px;

        width: 260px;
        height: 100vh;

        background: white;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        padding: 90px 25px;

        gap: 25px;

        transition: 0.35s;

        box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);

        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        list-style: none;
        width: 100%;
    }

    .nav-menu a {
        text-decoration: none;
        color: #222;
        font-size: 18px;
        font-weight: 500;
    }

    .mobile-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    .menu {
        padding: 60px 20px;
    }

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

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card img {
        height: 220px;
    }

    .services {
        padding: 70px 25px;
    }

    .section-title h2 {
        font-size: 32px;
    }

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

    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 45px;
    }

    .logo h2 {
        font-size: 18px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero {
        min-height: 100vh;

        padding: 160px 20px 50px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;

        line-height: 1.8;
    }

    .hero .btn {
        padding: 14px 20px;
    }

    .menu {
        padding: 50px 15px;
    }

    .menu h2 {
        font-size: 24px;
    }

    .card {
        border-radius: 15px;
    }

    .card img {
        height: 200px;
    }

    .card h3 {
        font-size: 20px;
    }

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