body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    border-bottom: 1px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 45px;
    margin-right: 10px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-links a:hover {
    color: #d4af37;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.banner {
    max-width: 900px;
    width: 95%;
    border: 2px solid #d4af37;
    border-radius: 12px;
    margin: 20px auto;
    display: block;
}

/* SECTIONS */
.section {
    padding: 70px 20px;
    text-align: center;
}

.section-title {
    color: #d4af37;
    margin-bottom: 30px;
    font-size: 28px;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: #151515;
    border: 1px solid #d4af37;
    padding: 25px;
    border-radius: 10px;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px rgba(212, 175, 55, 0.4);
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: #d4af37;
    color: black;
    padding: 14px 28px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    background: #f0c95d;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #d4af37;
    margin-top: 40px;
}

.socials a {
    margin: 0 12px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.socials a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}