/* 🌐 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* 🔹 Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #1e3a8a;
    color: white;
}

.logo {
    height: 40px;
}

/* 🔹 Menu Links */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #fbbf24;
}

/* 🔹 Toggle Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 🔹 Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #f3f4f6;
}

.hero h2 {
    font-size: 28px;
    color: #fbbf24;
}

.hero p {
    margin: 15px 0;
    color: #555;
}

.signup-btn {
    padding: 10px 20px;
    background: #1e3a8a;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.signup-btn:hover {
    background: #2563eb;
}

/* 🔹 Keunggulan */
.keunggulan {
    text-align: center;
    padding: 40px 20px;
}

.grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 250px;
}

.card h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* 🔹 Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #1e3a8a;
    color: white;
    margin-top: 30px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #1e3a8a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
/* Tombol Login di Navbar */
.login-btn {
    background: #fbbf24;
    padding: 6px 14px;
    border-radius: 6px;
    color: #1e3a8a;
    font-weight: bold;
}

.login-btn:hover {
    background: #facc15;
    color: #111827;
}
