/* ======================
   BASE
====================== */
body {
    margin: 0;
    font-family: Georgia, serif;
    background: #f5efe6;
    color: #1f1f1f;
    line-height: 1.7;
}

/* ======================
   NAVIGATION
====================== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(245,239,230,0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 500;
}

.menu a {
    margin-left: 30px;
    text-decoration: none;
    color: #1f1f1f;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.6;
}

.menu a.active {
    border-bottom: 2px solid #1f1f1f;
}

/* ======================
   HERO BANNER
====================== */
.hero {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================
   SECTIONS
====================== */
.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ======================
   HIGHLIGHT BLOCK
====================== */
.highlight {
    background: #e9e2d6;
    border-radius: 16px;
    padding: 60px 40px;
}

/* ======================
   PRODUCT GRID
====================== */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* ======================
   PRODUCT CARD
====================== */
.product {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE (FIXED PROPERLY) */
.product img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* TEXT */
.product h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product p {
    font-size: 16px;
}

/* HOVER EFFECT */
.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ======================
   BUTTONS
====================== */
.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #1f1f1f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.buy-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #1f1f1f;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* ======================
   EMAIL INPUT
====================== */
input[type="email"] {
    padding: 12px;
    width: 260px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ======================
   FOOTER
====================== */
footer {
    text-align: center;
    padding: 60px;
    font-size: 14px;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {

    .nav {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .menu a {
        margin: 0 10px;
    }

    .hero {
        height: 50vh;
        min-height: 300px;
    }

    .section {
        padding: 60px 15px;
    }

    .section h1 {
        font-size: 34px;
    }

    .section h2 {
        font-size: 26px;
    }

    .products {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product img {
        max-height: 300px;
    }
}