:root {
    --primary: #c42c2c;
    --primary-dark: #8f1f1f;
    --text-dark: #222;
    --text-light: #fff;
    --bg-light: #fafafa;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    position: relative;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar img {
    height: 50px;
}

.navbar h1 {
    font-size: 1.4rem;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(to bottom right, #c42c2c, #e65c5c);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 15px 0 30px;
}

.btn {
    background: white;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* PRODUCTS */
.products {
    padding: 60px 10%;
    background: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

/* ABOUT & CONTACT */
.about,
.contact {
    padding: 60px 10%;
    text-align: center;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: var(--primary-dark);
    color: white;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 5%;
        background: var(--primary);
        width: 90%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}