* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #EFE9D5;
    overflow-x: hidden;
    color: #123524; 
    line-height: 1.6;
}

/* ========= NAVBAR ======== */

.navbar {
    background: #123524; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%; 
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15); 
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 24px; 
    color: #EFE9D5; 
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.logo span {
    font-size: 11px;
    color: #A4B494;
    margin-top: 5px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px; 
}

.nav-menu a, .user-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu a {
    text-decoration: none;
    color: #EFE9D5;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(164, 180, 148, 0.15); 
    border: 1px solid rgba(239, 233, 213, 0.1);
}

.nav-menu svg {
    width: 30px; 
    height: 30px;
    fill: #A4B494; 
}

.about-link {
    font-size: 14px;
}

.nav-menu a:hover {
    background: #5D8736;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 135, 54, 0.3);
}

.user-dropdown:hover {
    transform: scale(1.1);
}

/* ========= HERO SECTION ======== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    min-height: 85vh;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-text h2 {
    font-size: 48px;
    color: #123524; 
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: #3e4e3e; 
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 400;
}

.btn-mulai {
    background: #5D8736; 
    color: white; 
    padding: 18px 45px;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(93, 135, 54, 0.2);
    transition: 0.3s;
}

.btn-mulai:hover {
    background: #123524; 
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(18, 53, 36, 0.25);
}

.hero-text small {
    display: block;
    margin-top: 25px;
    font-size: 13px;
    color: #5D8736; 
    font-style: italic;
    opacity: 0.8;
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bowl {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(18, 53, 36, 0.15));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* ========= DROPDOWN ======== */

.user-dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-card {
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: none; 
    flex-direction: column;
    z-index: 100;
    border: 1px solid #eee;
}

.dropdown-card.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-card a {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 0; 
    background: transparent;
    border: none;
}

.dropdown-card a:first-child { color: #123524; border-bottom: 1px solid #f5f5f5; }
.dropdown-card a:last-child { color: #d9534f; } 
.dropdown-card a:hover { background: #f9f9f9; }


/* ========= ABOUT SECTION ======== */

.about {
    padding: 100px 8%;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    color: #123524; 
    margin-bottom: 60px;
    position: relative;
}

.about h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #5D8736;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-box {
    background: #fdfcf8; 
    color: #123524;
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 35px;
    border: 1px solid #EFE9D5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s;
}

.about-box:hover {
    transform: translateY(-10px);
    border-color: #5D8736;
    box-shadow: 0 15px 40px rgba(93, 135, 54, 0.1);
}

.about-box h3 { 
    margin-bottom: 20px; 
    color: #5D8736;
    font-size: 24px;
}

.about-box ul { padding-left: 20px; }
.about-box li { margin-bottom: 12px; }

/* ========= FOOTER ======== */

footer {
    background: #123524; 
    color: #A4B494; 
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ========= RESPONSIVE ======== */

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    .hero-text h2 { font-size: 38px; }
    .hero-img { margin-top: 40px; }
    .bowl { max-width: 320px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%; 
    }

    .logo h1 {
        font-size: 20px; 
    }

    .nav-menu {
        gap: 15px; 
    }

    .nav-menu a {
        padding: 8px 15px;
        font-size: 13px;
    }

    .hero-text h2 {
        font-size: 30px; 
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn-mulai {
        width: 100%; 
    }

    .bowl {
        max-width: 250px; 
    }
}

@media (max-width: 480px) {
    .logo span {
        display: none; 
    }
}

@media (max-width: 480px) {
    
    .container {
        padding: 15px;
    }

    .card, .hero, .about-card {
        width: 100%;
        padding: 15px;
    }

    h1, h2 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
    }

    .btn-mulai, .btn {
        width: 100%;
        font-size: 13px;
        padding: 10px;
    }
}