:root {
    --primary-color: #d64c7f;
    --secondary-color: #4a4a4a;
    --accent-color: #f8e5e5;
    --gold: #bf9b30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/bouquet9roses.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 2rem;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Artisan Section */
.artisan-section {
    padding: 5rem 2rem;
    background-color: var(--accent-color);
    text-align: center;
}

.artisan-content {
    max-width: 800px;
    margin: 0 auto;
}

.artisan-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: bold;
}

.handmade-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Single Rose Section */
.single-rose {
    background-color: var(--accent-color);
    padding: 5rem 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

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