@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 1180px;
    margin: 0 auto;
    background: #f8f9fa;
}

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

/* Typography */
h1 {
    font-family: 'Crimson Text', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Block 1: Hero Section - Deep Forest Green */
#hero {
    background: linear-gradient(135deg, #1e3c28 0%, #2d5a3d 50%, #1e3c28 100%);
    color: #ffffff;
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 60px 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

#hero h1 {
    color: #f1c40f;
    margin-bottom: 0.5rem;
}

#hero h2 {
    color: #ecf0f1;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

/* Block 2: Subscribe Section - Warm Autumn Orange */
#subscribe {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 50%, #d35400 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

#subscribe h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

#subscribe p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.subscribe-button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

/* Block 3: Products Section - Mountain Blue */
#products {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 50%, #2980b9 100%);
    color: #ffffff;
    padding: 80px 0;
}

#products h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

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

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

.product:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product h3 {
    color: #f1c40f;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem !important;
}

.product ul {
    list-style: none;
    margin-top: 1.5rem;
}

.product li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.product li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

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

.article h3 {
    font-family: 'Crimson Text', serif;
    color: #1e3c28;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

/* Block 4: Specialists Section - Deep Purple */
#specialists {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #8e44ad 100%);
    color: #ffffff;
    padding: 80px 0;
}

#specialists h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

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

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

.specialist:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.specialist h3 {
    color: #f1c40f;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.specialist strong {
    color: #ecf0f1;
    font-size: 1.1rem;
}

/* Block 5: Reviews Section - Earthy Brown */
#reviews {
    background: linear-gradient(135deg, #795548 0%, #8d6e63 50%, #795548 100%);
    color: #ffffff;
    padding: 80px 0;
}

#reviews h2 {
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.review {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.review::before {
    content: '"';
    font-size: 4rem;
    color: #f1c40f;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Crimson Text', serif;
}

.review:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review h4 {
    color: #f1c40f;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.review p:last-child {
    color: #ecf0f1;
    font-style: italic;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Block 6: Contact Section - Forest Green */
#contact {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #27ae60 100%);
    color: #ffffff;
    padding: 60px 0;
}

#contact h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

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

.contact-info strong {
    color: #f1c40f;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

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

/* Block 7: Footer */
#copyright {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 30px 0;
    text-align: center;
}

#copyright p {
    margin: 0;
    font-size: 0.9rem;
}

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    #hero h2 {
        font-size: 1.5rem;
    }

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

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

    .subscribe-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

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

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

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

    .article p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .price {
        font-size: 1.5rem;
    }

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

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

    h2 {
        font-size: 1.7rem;
    }

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

    .subscribe-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

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

    #hero {
        min-height: 400px;
    }
}
