/* General Styles */
:root {
    --primary-color: #f8e1e1; /* Light Pink */
    --secondary-color: #e1f8f8; /* Light Blue */
    --accent-color: #f8f8e1; /* Light Yellow */
    --text-color: #555;
    --heading-color: #777;
    --light-text-color: #aaa;
    --white: #ffffff;
    --black: #333333;
}

body {
    font-family: 'Playfair Display', serif; /* Elegant font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--heading-color);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-family: 'Roboto', sans-serif; /* More readable for navigation */
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--heading-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--heading-color);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--heading-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--black);
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.product-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: bold;
    color: var(--heading-color);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--light-text-color);
    padding: 3rem 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: var(--light-text-color);
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons a {
    color: var(--light-text-color);
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

.social-icons a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
}