/* GENERAL STYLES */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    background: #ffffff;
    color: #1e293b; /* Tailwind slate-900 */
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* NAVIGATION */
.nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}
.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav .menu a {
    margin-left: 15px;
    font-weight: bold;
}

/* HAMBURGER */
.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .menu-desktop { display: none; }
    .hamburger { display: block; }
    .menu-mobile {
        display: none;
        flex-direction: column;
        margin-top: 10px;
    }
    .menu-mobile.show {
        display: flex;
    }
    .menu-mobile a {
        margin: 10px 0;
    }
}

/* HERO */
header {
    padding-top: 8rem;
    padding-bottom: 10rem;
    text-align: center;
    background: #f8fafc; /* Tailwind slate-50 */
    position: relative;
    overflow: hidden;
}

/* BUTTONS */
button, .btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.btn-primary {
    background: #2563eb;
    color: white;
}
.btn-secondary {
    background: white;
    border: 1px solid #ddd;
    color: #1e293b;
}

/* BOXES */
.box {
    max-width: 500px;
    margin: 60px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* ERRORS */
.error {
    color: red;
    margin-bottom: 10px;
}