
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;
}

/* HERO */

.hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");
    background-size: cover;
}

.hero h1 {
    font-size: 40px;
    color: #ffd700;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.hero p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 20px;
}

/* AMULET */

.amulet-section {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}

.amulet-section h2 {
    text-align: center;
    color: gold;
    margin-bottom: 30px;
}

.amulet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.amulet-card {
    background: #0f2c47;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    transition: .3s;
}

.amulet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.amulet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.price {
    color: gold;
    font-weight: bold;
}

/* NEWS */

.news {
    background: #061422;
    padding: 60px 20px;
}

.news-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    background: #0e2742;
    padding: 20px;
    border-left: 4px solid gold;
}

/* 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;
    }

}

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------------------- */