/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Dancing+Script:wght@400;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: #2c1810;
    background-color: #fff5f0;
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Hero Section - Block 1 */
.hero-section {
    min-height: 430px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc371 25%, #ff9068 50%, #ff6b9d 75%, #c44569 100%);
    background-size: 400% 400%;
    animation: candyGradient 8s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(255,255,255,0.1) 3px, transparent 3px);
    background-size: 50px 50px, 30px 30px, 80px 80px;
    pointer-events: none;
}

@keyframes candyGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-section .lead {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff4757, #ff6348);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    border: 2px solid rgba(255,255,255,0.3);
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
    background: linear-gradient(45deg, #ff3742, #ff5533);
}

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

.reviews-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c1810;
}

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

.review {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid rgba(255,184,0,0.3);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review h3 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.rating {
    color: #f8b500;
    font-size: 1.3rem;
    margin-top: 15px;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    padding: 80px 0;
    color: white;
}

.products-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

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

.product {
    background: rgba(255,255,255,0.95);
    color: #2c1810;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.product h3 {
    color: #6c5ce7;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4757;
    margin-bottom: 15px;
}

/* Article Styling */
.article {
    background: rgba(255,255,255,0.95);
    color: #2c1810;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-left: 5px solid #ff6b9d;
    position: relative;
}

.article::before {
    content: '📝';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    background: #ff6b9d;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.article h3 {
    color: #6c5ce7;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.article p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #00cec9 0%, #55a3ff 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter-form button {
    background: linear-gradient(45deg, #ff4757, #ff6348);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

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

.specialists-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.specialist {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid rgba(253, 121, 168, 0.3);
    transition: transform 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.specialist h3 {
    color: #fd79a8;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.specialist .role {
    color: #fdcb6e;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    padding: 80px 0;
    color: white;
}

.contact-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.address {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.address h3 {
    color: #ff6b9d;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 100%);
    padding: 30px 0;
    text-align: center;
    color: #f8b500;
}

.footer p {
    margin-bottom: 10px;
}

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

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

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

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

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

    .reviews-section,
    .products-section,
    .newsletter-section,
    .specialists-section,
    .contact-section {
        padding: 50px 0;
    }

    .reviews-section h2,
    .products-section h2,
    .newsletter-section h2,
    .specialists-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .newsletter-form button {
        width: 100%;
        max-width: 250px;
    }

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

    .article {
        padding: 25px;
    }

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

    .product .price {
        font-size: 1.7rem;
    }
}

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

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

    .reviews-section h2,
    .products-section h2,
    .newsletter-section h2,
    .specialists-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

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

    .article {
        padding: 20px;
    }
}
