/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* HEADER */
header {
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

nav a {
    margin-left: 35px;
    text-decoration: none;
    font-size: 16px;
    color: black;
    font-weight: 500;
}

nav a:hover {
    color: orange;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 90vh;
    background: url('../images/banner-01.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* efek gelap tipis */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.location {
    font-size: 18px;
    margin-bottom: 15px;
}

.location span {
    color: orange;
}

.title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
}
.produk-container {
    max-width: 1300px;
    margin: 20px auto;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.produk-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: .3s;
    border: 1px solid #eee;
}

.produk-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.produk-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.produk-box h3 {
    font-size: 16px;
    margin: 8px 0;
    height: 40px;
}

.produk-box p {
    color: #444;
    font-weight: bold;
    margin-bottom: 8px;
}

.produk-box .btn {
    display: block;
    background: #001aff;
    color: #fff;
    padding: 8px 0;
    border-radius: 5px;
    text-decoration: none;
    transition: .3s;
}

.produk-box .btn:hover {
    background: #001aff;
}
.floating-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff5722;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    z-index: 9999; /* WAJIB */
}

.floating-booking:hover {
    background: #e64a19;
    padding-right: 30px;
}
.produk-box {
    width: 250px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin: 10px;
    text-align: center; /* Semua teks di tengah */
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.produk-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.produk-harga {
    font-weight: bold;
    font-size: 17px;
    margin-top: 5px;
}

.produk-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.jumlah {
    text-align: center;
}
/* Wrapper agar semua kotak benar-benar di tengah */
.contact-wrapper {
    display: flex;
    justify-content: center;   /* tengah horizontal */
    align-items: center;       /* tengah vertical */
    width: 85%;
}

/* Grid 2 baris × 2 kolom */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 450px;          /* biar ukuran kotak konsisten */
}

/* Kotak kontak */
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 18px 26px;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    height: 80px;          /* tinggi semua kotak sama */
    text-decoration: none;
    color: #000;
    transition: 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.contact-card:hover {
    background: #f7f7f7;
}

.contact-card i {
    font-size: 22px;
}

<style>
/* Perbaikan Header Mobile */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    gap: 5px;
}

.nav-menu {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 16px;
}

/* Kartu Produk Rapi di HP */
.product-card {
    width: 100%;
    max-width: 360px;
    margin: auto;
    border-radius: 12px;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

body {
    padding: 0;
    margin: 0;
}
</style>
input[type=time]::-webkit-datetime-edit-seconds-field {
  display: none;
}
.desc-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 18px;
}