* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body { 
    background: #f8f3ee;
    color: #333; 
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #f8f3ee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h2 {
    color: #e76807;
    font-size: 20px;
}

.logo img {
    width: 100px; 
    height: 100px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li {
    transition: 0.3s;
}

nav ul li:hover {
    transform: translateY(-3px);
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #e76807;
}

.pesan {
    background: #6b3f21;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.pesan:hover {
    background: #e76807;
    transform: translateY(-2px);
}

/* Hero Section */
.tampilan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    background: linear-gradient(rgba(239, 229, 220, 0), rgba(239, 229, 220, 0.85)), url('banner pantai.png');
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    margin: 20px 8%;
    border-radius: 20px;
}

.tampilan-text {
    width: 60%;
}

.label {
    background: #e76807;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.tampilan-text h1 {
    font-size: 45px;
    color: #6b3f21;
    margin: 20px 0;
    line-height: 1.2;
}

.tampilan-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.manfaat {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tag-manfaat {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b3f21;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tampilan-image {
    width: 35%;
}

/* Benefit Section */
.benefits {
    padding: 60px 8%;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #6b3f21;
}

.benefit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.card h3 {
    margin-bottom: 10px;
    color: #e76807;
    font-size: 18px;
}

.card p {
    color: #666;
    font-size: 14px;
}

/* Menu Section */
.menu {
    padding: 60px 8%;
    background: #fff;
}

.menu h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #6b3f21;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 25px;
}

.menu-card {
    background: #f8f3ee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.04);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
    color: #6b3f21;
}

.menu-card p {
    padding: 0 15px 10px;
    color: #666;
    font-size: 14px;
    flex-grow: 1;
}

.menu-card h4 {
    padding: 0 15px 15px;
    color: #e76807;
    font-size: 18px;
}

.btn-beli {
    display: block;
    text-align: center;
    margin: 0 15px 20px;
    padding: 10px;
    background: #6b3f21;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-beli:hover {
    background: #e76807;
}

/* Footer Section */
footer {
    background: #f1e7dc;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 8%;
    color: #444;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #6b3f21;
    border-bottom: 2px solid #e76807;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-box p {
    line-height: 1.6;
    font-size: 12px;
}

.footer-box ul {
    list-style: none;
}

.footer-box li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--cream-dark);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

/* Responsive / Media Queries */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .tampilan-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .tampilan {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .tampilan-text {
        width: 100%;
    }

    .tampilan-image {
        width: 100%;
        margin-top: 30px;
    }
}

