@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fef8f5;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

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

/* Hero Section - Candy Shop Style */
.hero-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa8d5 25%, #ffcce5 50%, #e8f5ff 75%, #b8e6ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    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-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2) 3px, transparent 3px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

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

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

.hero-section h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(44, 24, 16, 0.3);
    position: relative;
    z-index: 2;
}

.hero-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c1810;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.hero-section p {
    font-size: 1.1rem;
    color: #4a2c1a;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff4757, #ff6b9d, #ffa8d5);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    border: 3px solid transparent;
    position: relative;
    z-index: 2;
}

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

.cta-button:active {
    transform: translateY(-1px);
}

/* Section Styling */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #fff5f8;
}

section:nth-child(odd) {
    background-color: #fef8f5;
}

h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d63384;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ffa8d5);
    margin: 15px auto;
    border-radius: 2px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
}

.newsletter-section h2::after {
    background: linear-gradient(90deg, #fff, #ffa8d5);
}

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

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c1810;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: linear-gradient(45deg, #ff4757, #ff6b9d);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: linear-gradient(45deg, #ff3742, #ff5a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.product-card.featured {
    border-color: #ff6b9d;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

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

.product-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 15px;
}

.product-card .price {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4757;
    margin-bottom: 20px;
}

.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;
    top: 5px;
}

/* Article Styling */
.guide-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #ff6b9d;
    position: relative;
}

.guide-article::before {
    content: '📚';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    background: white;
    padding: 0 10px;
}

.guide-article h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 20px;
}

.guide-article p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a2c1a;
}

/* Specialists Section */
.specialists-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

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

.specialist-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.specialist-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: #d63384;
    margin-bottom: 10px;
}

.specialist-card .role {
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #fdcbf1 0%, #e6dee9 100%);
}

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

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff6b9d;
    font-family: 'Fredoka', sans-serif;
    opacity: 0.3;
}

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

.rating {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.review-card cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #d63384;
    font-style: normal;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

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

.address {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.address h3 {
    font-family: 'Fredoka', sans-serif;
    color: #d63384;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
        padding: 40px 0;
        text-align: center;
    }

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

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

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

    h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }

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

    .product-card.featured {
        transform: none;
    }

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

    .guide-article {
        padding: 25px;
        margin: 20px 0;
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }
}

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

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

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

    h2 {
        font-size: 1.7rem;
    }

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

    .product-card .price {
        font-size: 2rem;
    }
}
