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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, #d4572a 0%, #f4511e 50%, #ff7043 100%);
    color: #ffffff;
    min-height: 430px;
    display: flex;
    align-items: 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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff3e0;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffb74d, #ffa726);
    color: #2c2c2c;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 183, 77, 0.6);
    background: linear-gradient(45deg, #ffa726, #ff9800);
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: #ffffff;
    padding: 80px 0;
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

.review {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.review h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff3e0;
}

.review p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rating {
    font-size: 1.2rem;
    color: #ffeb3b;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
    color: #ffffff;
    padding: 80px 0;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

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

.product h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e1bee7;
}

.product .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.product p:not(.price) {
    font-size: 1rem;
    line-height: 1.6;
}

/* Article Section - Special Styling */
.article-section {
    background: rgba(255, 255, 255, 0.25);
    padding: 3rem;
    border-radius: 25px;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff3e0;
    text-align: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
}

.article-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
    color: #ffffff;
    padding: 80px 0;
}

.specialists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

.specialist {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.specialist h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffccbc;
}

.specialist .title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff3e0;
    margin-bottom: 1rem;
    font-style: italic;
}

.specialist p:not(.title) {
    font-size: 1rem;
    line-height: 1.6;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135d, #ffb300 0%, #ff8f00 100%);
    color: #2c2c2c;
    padding: 80px 0;
    text-align: center;
}

.subscribe-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

.subscribe-section > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.subscribe-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: #ffffff;
    color: #2c2c2c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.subscribe-button {
    background: linear-gradient(45deg, #4caf50, #388e3c);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-button:hover {
    background: linear-gradient(45deg, #388e3c, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #795548 0%, #5d4037 100%);
    color: #ffffff;
    padding: 80px 0;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #212121 0%, #424242 100%);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

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

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

    .hero-section {
        min-height: 500px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

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

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

    section h2 {
        font-size: 2rem !important;
    }

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

    .product,
    .review,
    .specialist {
        padding: 1.5rem;
    }

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 60px 0 !important;
    }

    section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }

    .article-section {
        padding: 1.5rem;
    }

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