* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6fc;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #5d3fd3;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
}

.nav-links a.active, .nav-links a:hover {
    color: #00d2ff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10% 8%;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    color: #5d3fd3;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #00d2ff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn:hover {
    background-color: #5d3fd3;
    box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 20px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .navbar {
        padding: 20px;
    }
}






/*menu akun*/



.menu-container {
    padding: 5% 8%;
    text-align: center;
}

.menu-container h2 {
    font-size: 32px;
    color: #5d3fd3;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.menu-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 18px;
    color: #00d2ff;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-beli {
    display: block;
    padding: 10px;
    background-color: #5d3fd3;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

.btn-beli:hover {
    background-color: #00d2ff;
}




/* kontak html */



.contact-container {
    padding: 10% 8%;
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    color: #5d3fd3;
    margin-bottom: 15px;
}

.contact-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    text-align: center;
    /* Menambahkan transisi agar efek hover lebih halus (Opsional, penampilan tetap sama) */
    transition: background-color 0.3s ease; 
}

.contact-btn.wa {
    background-color: #00d2ff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.contact-btn.wa:hover {
    background-color: #5d3fd3;
}

.contact-btn.tt {
    background-color: #5d3fd3;
    box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.contact-btn.tt:hover {
    background-color: #00d2ff;
}

.contact-btn.ig {
    background-color: #5d3fd3;
    box-shadow: 0 4px 15px rgba(93, 63, 211, 0.3);
}

.contact-btn.ig:hover {
    background-color: #00d2ff;
}

/* css login */



.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f6fc;
}

.login-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.login-container h2 {
    color: #5d3fd3;
    margin-bottom: 10px;
    font-size: 26px;
}

.login-container p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

#passwordInput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
}

#passwordInput:focus {
    border-color: #00d2ff;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #5d3fd3;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #00d2ff;
}

.error-text {
    color: #ff4d4d !important;
    margin-top: 15px;
    font-weight: 600;
}