﻿/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #fffaf5;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* Header */
header {
    background-color: #6e1e24;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 60px;
        margin-right: 0.5rem;
    }

    .logo span {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
    }

.hero img {
    max-width: 580px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
/* Navigation */
nav {
    display: flex;
    gap: 1.5rem;
}

    nav a {
        color: #fff;
        font-weight: bold;
        font-size: 1.1rem; /* desktop */
        font-family: 'Open Sans', sans-serif;
    }

        nav a:hover {
            text-decoration: underline;
        }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .menu-toggle span {
        height: 3px;
        background: white;
        margin: 4px 0;
        width: 25px;
    }

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 1rem;
}

    .hero h1 {
        margin: 1rem 0;
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #6e1e24;
    }

    .hero p {
        font-size: 1.2rem;
        margin: 0.5rem 0 1rem;
    }

/* Sections */
.section {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
}

    .section.bg-light {
        background-color: #fdf4f1;
    }

    .section h1 {
        font-size: 2.5rem;
        text-align: center;
        color: #6e1e24;
    }

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

    .two-column img {
        max-width: 450px;
    }

    .two-column .text {
        flex: 1;
        min-width: 280px;
        font-size: 1.2rem;
    }

/* Buttons */
.cta-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #6e1e24;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
}
/* Section Container */
.product-section {
    padding: 2rem 1rem;
    background-color: #fdf7f2;
    overflow-x: hidden;
}

.product-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #000;
}

    .product-title img {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .product-title h2 {
        font-size: 2rem;
        color: #000;
        margin: 1rem 0 0.5rem;
    }

.product-title-sub {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #000;
}
/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
    overflow-x: hidden;
}

.product-card {
    background: #faf6f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
    height: 220px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-details {
    padding: 1rem;
    text-align: center;
}

.product-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #783137;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1rem;
    color: #a04a49;
}

@media (max-width: 600px) {
    .product-image-container {
        height: 160px;
    }

    .para {
        max-width: 95%;
    }
}
/* Footer */
footer {
    background-color: #6e1e24;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

.footer-column {
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding: 0 1rem;
}

    .footer-column:last-child {
        border-right: none;
    }

    .footer-column > * {
        text-align: center;
        width: 100%;
    }

    .footer-column h4, .footer-column h2 {
        margin-bottom: 1rem;
    }

    .footer-column a {
        color: #fff;
        margin-bottom: 0.5rem;
    }

/* Responsive Styles */
@media (max-width: 850px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #6e1e24;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }

        nav.active {
            display: flex;
        }

    .menu-toggle {
        display: flex;
    }

    nav a {
        font-size: 1rem; /* mobile */
    }
}

@media (max-width: 600px) {
    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero img {
        max-width: 90%;
    }

    /* Sections */
    .two-column {
        flex-direction: column;
        gap: 1rem;
    }

        .two-column img {
            max-width: 100%;
            height: auto;
        }

        .two-column .text {
            font-size: 1rem;
            text-align: left;
            margin: 0 auto;
        }

    /* Buttons */
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    /* Header */
    header {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }

    /* Footer */
    footer {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        max-width: none;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
        border-right: none;
    }

        .footer-column:last-child {
            border-bottom: none;
        }
}
