/* Import Google Fonts - Parisian elegant style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;500&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1180px;
    margin: 0 auto;
    background-color: #f8f6f3;
}

.container {
    padding: 0 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Block 1: Hero Section - Parisian elegance */
#hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #f8f6f3;
    text-align: center;
    padding: 80px 0;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zM10 10c11.046 0 20 8.954 20 20s-8.954 20-20 20-20-8.954-20-20S-1.046 10 10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1 {
    color: #f8f6f3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 25px;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: #ecf0f1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button - Parisian style */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Block 2: Reviews - Soft cream background */
#reviews {
    background-color: #fef9e7;
    padding: 80px 0;
    color: #2c3e50;
}

#reviews h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-item {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #e74c3c;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.review-item p {
    color: #5d6d7e;
    font-style: italic;
    line-height: 1.7;
}

/* Block 3: Subscription Form - Deep blue */
#subscribe {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

#subscribe h2 {
    color: #fff;
    margin-bottom: 20px;
}

#subscribe p {
    color: #ecf0f1;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

#subscribe form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

#subscribe input[type="email"] {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #2c3e50;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#subscribe input[type="email"]:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#subscribe button {
    padding: 18px 35px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#subscribe button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Block 4: Specialists - Elegant gold */
#specialists {
    background-color: #f4f1eb;
    padding: 80px 0;
    color: #2c3e50;
}

#specialists h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.specialist-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #f39c12;
}

.specialist-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(44, 62, 80, 0.12);
}

.specialist-item h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.specialist-item p {
    color: #5d6d7e;
    line-height: 1.8;
}

/* Block 5: Products - Rich burgundy */
#products {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    padding: 80px 0;
    color: #fff;
}

#products h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.product-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.product-item p {
    color: #ecf0f1;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #f1c40f !important;
    font-family: 'Playfair Display', serif !important;
    margin-top: 20px !important;
}

/* Article styling - Highlighted */
.article {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 50px;
    border-radius: 25px;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-left: 8px solid #e74c3c;
}

.article h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2rem;
    text-align: center;
}

.article p {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Block 6: Contact - Clean white */
#contact {
    background-color: #fff;
    padding: 80px 0;
    color: #2c3e50;
}

#contact h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    text-align: center;
    padding: 30px 0;
}

footer p {
    font-size: 1rem;
    color: #bdc3c7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }

    #hero {
        padding: 60px 0;
        min-height: 350px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .reviews-grid,
    .specialists-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-item,
    .specialist-item,
    .product-item {
        padding: 25px;
    }

    #subscribe form {
        flex-direction: column;
        align-items: center;
    }

    #subscribe input[type="email"] {
        width: 100%;
        min-width: unset;
        margin-bottom: 15px;
    }

    #subscribe button {
        width: 100%;
        max-width: 250px;
    }

    .article {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .article h3 {
        font-size: 1.6rem;
    }

    .article p {
        text-align: left;
    }

    .price {
        font-size: 1.6rem !important;
    }

    section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .article {
        padding: 20px 15px;
    }

    .contact-info p {
        font-size: 1rem;
    }

    section {
        padding: 40px 0 !important;
    }
}

/* Special hover effects for Parisian elegance */
@media (hover: hover) {
    .review-item:hover,
    .specialist-item:hover,
    .product-item:hover {
        box-shadow: 0 25px 50px rgba(44, 62, 80, 0.15);
    }
}
