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

/* CSS 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-color: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

/* Block 1: Hero Section - Mountain Sky */
#hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, transparent 100%);
    clip-path: polygon(0 100%, 10% 80%, 20% 90%, 30% 70%, 40% 85%, 50% 60%, 60% 75%, 70% 65%, 80% 80%, 90% 70%, 100% 85%, 100% 100%);
}

#hero h1 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

#hero h2 {
    color: #e8f4f8;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

#hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #e8f4f8;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Block 4: Specialists - Forest Green */
#specialists {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 50%, #4a7c28 100%);
    color: #ffffff;
    padding: 60px 20px;
}

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

.specialist {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.specialist h3 {
    color: #d4af37;
    font-size: 1.6rem;
}

.specialist p {
    color: #e8f4f8;
    line-height: 1.7;
}

/* Block 3: Products - Snow White */
#products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 60px 20px;
}

#products h2 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.product {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.product p {
    color: #495057;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-top: 1rem;
}

/* Article Styling */
.info-article {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 40px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(30, 60, 114, 0.3);
    border: 3px solid #d4af37;
}

.info-article h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-article p {
    color: #e8f4f8;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

/* Block 5: Reviews - Mountain Stone */
#reviews {
    background: linear-gradient(135deg, #5a6a7a 0%, #6b7b8c 50%, #7c8c9d 100%);
    color: #ffffff;
    padding: 60px 20px;
}

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

.review {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.review:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.review h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.review p {
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
}

/* Block 2: Subscribe Form - Lake Blue */
#subscribe {
    background: linear-gradient(135deg, #4a90a4 0%, #5fa3b8 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

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

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

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"] {
    padding: 16px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    color: #2c3e50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

input[type="email"]::placeholder {
    color: #6c757d;
}

button[type="submit"] {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3c72;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* Block 6: Contact - Light Mountain */
#contact {
    background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%);
    color: #2c3e50;
    padding: 60px 20px;
}

#contact h2 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 2rem;
}

#contact p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

#contact strong {
    color: #1e3c72;
    font-weight: 600;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: block;
    margin-top: 2rem;
}

/* Block 7: Footer - Deep Mountain */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    color: #e8f4f8;
    margin: 0.5rem 0;
}

.domainName {
    color: #d4af37;
    font-weight: 600;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    #hero {
        min-height: 430px;
        padding: 60px 15px;
    }

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

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

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

    #specialists,
    #products,
    #reviews,
    #subscribe,
    #contact {
        padding: 40px 15px;
    }

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

    .info-article {
        padding: 25px;
    }

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

    .info-article p {
        font-size: 1rem;
        text-align: left;
    }

    .price {
        font-size: 1.6rem;
    }

    form {
        padding: 0 15px;
    }

    input[type="email"],
    button[type="submit"] {
        padding: 14px 20px;
        font-size: 1rem;
    }

    iframe {
        height: 300px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    #hero {
        padding: 50px 10px;
    }

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

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

    .info-article {
        padding: 20px;
    }
}
