
body {
    margin: 0;
    font-family: Segoe UI;
    background: #081b2d;
    color: white;
}

/* NAVBAR */

.header {
    background: #0c2238;
    border-bottom: 2px solid gold;
}

.nav {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

nav a:hover {
    color: gold;
}

.btn-gold {
    background: linear-gradient(45deg, #cfa12f, #f5d87b);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* FOOTER */

footer {
    background: #020b16;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

ul {
    padding: 0;
    list-style: none;
}

/* -------------------------------------------------------------------------------------------------------- */

.header {
    background: #0c2238;
    border-bottom: 2px solid gold;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

nav a:hover {
    color: gold;
}

.btn-login {
    background: linear-gradient(45deg, #cfa12f, #f5d87b);
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* hamburger */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* MOBILE */

@media (max-width:900px) {

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c2238;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
    }

    nav.active {
        max-height: 400px;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .btn-login {
        display: none;
    }

}

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */