* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0d0d0d;
    color: white;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111;
    position: sticky;
    top: 0;
}

.nav h1 {
    color: #ff2e2e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#000, #1a0000);
    text-align: center;
}

.hero span {
    color: #ff2e2e;
}

.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff2e2e;
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #cc0000;
}

/* SECTIONS */
section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

h3 {
    color: #ff2e2e;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.highlight {
    border: 2px solid #ff2e2e;
}

.price {
    font-size: 2rem;
    color: #ff2e2e;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    opacity: 0.6;
}

/* MOBILE */
@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}