@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f9f7f4 0%, #f4f1eb 100%);
}

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

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

h1 {
    font-size: 3rem;
    color: #8b1538;
    text-shadow: 2px 2px 4px rgba(139, 21, 56, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: #c17817;
}

h3 {
    font-size: 1.8rem;
    color: #2c1810;
}

h4 {
    font-size: 1.4rem;
    color: #2c1810;
}

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #8b1538 0%, #c17817 50%, #d4af37 100%);
    color: #fff;
    min-height: 430px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

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

.hero-section h1 {
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.hero-section h2 {
    color: #f9d71c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f9d71c);
    color: #2c1810;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(45deg, #f9d71c, #d4af37);
}

/* Products Section - Block 3 */
.products-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fef5e7 100%);
    padding: 80px 0;
    color: #2c1810;
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b1538;
}

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

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b1538, #c17817, #d4af37);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
    border-color: #d4af37;
}

.product-card h3 {
    color: #8b1538;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c17817;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.product-card ul {
    list-style: none;
    text-align: left;
}

.product-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.product-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b1538;
    font-weight: bold;
}

/* Article Section */
.article-section {
    background: linear-gradient(135deg, #8b1538 0%, #c17817 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.3);
}

.article-section h3 {
    color: #f9d71c;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Reviews Section - Block 5 */
.reviews-section {
    background: linear-gradient(135deg, #c17817 0%, #d4af37 100%);
    padding: 80px 0;
    color: #2c1810;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(44, 24, 16, 0.3);
}

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

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 24, 16, 0.3);
}

.review-card h4 {
    color: #8b1538;
    margin-bottom: 1rem;
}

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

.rating {
    color: #d4af37;
    font-size: 1.5rem;
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    padding: 80px 0;
    color: #fff;
}

.specialists-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #f9d71c;
}

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

.specialist-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.specialist-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.specialist-card h4 {
    color: #f9d71c;
    margin-bottom: 0.5rem;
}

.specialist-card .title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Subscribe Section - Block 2 */
.subscribe-section {
    background: linear-gradient(135deg, #f9d71c 0%, #d4af37 100%);
    padding: 80px 0;
    text-align: center;
    color: #2c1810;
}

.subscribe-section h2 {
    color: #8b1538;
    margin-bottom: 1rem;
}

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

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

.subscribe-form input[type="email"] {
    flex: 1;
    min-width: 280px;
    padding: 15px 20px;
    border: 3px solid #8b1538;
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    color: #2c1810;
    transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: #c17817;
    box-shadow: 0 0 15px rgba(193, 120, 23, 0.3);
}

.subscribe-button {
    padding: 15px 40px;
    background: linear-gradient(45deg, #8b1538, #c17817);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.3);
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.4);
    background: linear-gradient(45deg, #c17817, #8b1538);
}

/* Contact Section - Block 6 */
.contact-section {
    background: linear-gradient(135deg, #fff 0%, #f9f7f4 100%);
    padding: 80px 0;
    color: #2c1810;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #8b1538;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-info strong {
    color: #8b1538;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
}

.map-container iframe {
    border-radius: 20px;
}

/* Footer - Block 7 */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: #d4af37;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    font-size: 0.9rem;
}

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        min-height: 430px;
        padding: 40px 0;
    }

    .hero-section h2 {
        font-size: 1.4rem;
    }

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

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

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

    .product-card,
    .review-card,
    .specialist-card {
        padding: 20px;
    }

    .price {
        font-size: 2rem;
    }

    .article-section {
        padding: 25px;
        margin-top: 2rem;
    }

    .article-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .article-section p {
        font-size: 1rem;
    }

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

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

    .subscribe-button {
        width: 100%;
        max-width: 300px;
    }

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

    .map-container iframe {
        height: 300px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 430px;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .products-section,
    .reviews-section,
    .specialists-section,
    .subscribe-section,
    .contact-section {
        padding: 60px 0;
    }

    .article-section {
        padding: 20px;
    }

    .article-section h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }
}
