﻿:root {
    --primary-color: #3a7bd5; /* Brand blue - accents only */
    --secondary-color: #29c796; /* Green accent */
    --accent-color: #ff5a5f;
    --background-color: #fafafa;
    --background-alt: #f5f5f5;
    --text-color: #111;
    --border-radius: 4px;
    --default-font: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    font-family: var(--default-font);
    background: var(--background-color);
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 90vh;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    color: var(--text-color);
}

.hero-content {
    max-width: 550px;
    animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #333;
}

.hero .btn-primary {
    background: var(--text-color);
    color: white;
    padding: 14px 36px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius);
    transition: background 0.3s ease;
}

    .hero .btn-primary:hover {
        background: var(--primary-color);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SECTIONS ================= */
.section {
    padding: 90px 8%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 18px;
}

.section-intro {
    font-size: 1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

/* ================= PRODUCT GRID ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-info {
    margin-top: 15px;
}

    .product-info h3 {
        font-weight: 300;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .product-info .price {
        font-weight: 500;
        font-size: 1rem;
        color: var(--primary-color);
    }

/* ================= HIGHLIGHT ================= */
.highlight {
    background: var(--background-alt);
    padding: 80px 8%;
    text-align: center;
}

.highlight-content {
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
    color: #333;
}

/* ================= BENEFITS ================= */
.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.benefit-item {
    max-width: 250px;
}

    .benefit-item i {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .benefit-item h4 {
        font-weight: 400;
        margin-bottom: 8px;
    }

/* ================= CTA ================= */
.cta {
    padding: 80px 8%;
    background: white;
    text-align: center;
}

    .cta h2 {
        font-weight: 300;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta .btn-primary {
        background: var(--text-color);
        color: white;
        padding: 14px 36px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .cta .btn-primary:hover {
            background: var(--primary-color);
        }
