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

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

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

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

/* Mountain-inspired Color Palette */
:root {
    --mountain-peak: #2c3e50;
    --forest-green: #27ae60;
    --glacier-blue: #3498db;
    --snow-white: #ecf0f1;
    --stone-gray: #95a5a6;
    --deep-pine: #1e3a4f;
    --golden-hour: #f39c12;
    --alpine-mist: #bdc3c7;
    --sunset-red: #e74c3c;
    --morning-sky: #85c1e9;
}

/* Hero Section - Block 1 */
.hero-section {
    background: linear-gradient(135deg, var(--deep-pine) 0%, var(--mountain-peak) 50%, var(--glacier-blue) 100%);
    color: var(--snow-white);
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: 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,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

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

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

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--morning-sky);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--golden-hour), #e67e22);
    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 4px 15px rgba(243, 156, 18, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, #e67e22, var(--golden-hour));
}

/* Reviews Section - Block 5 */
.reviews-section {
    background: var(--snow-white);
    padding: 80px 0;
    color: var(--mountain-peak);
}

.reviews-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-pine);
}

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

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
    border-left: 4px solid var(--forest-green);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.review-item h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--mountain-peak);
}

.rating {
    color: var(--golden-hour);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Products Section - Block 3 */
.products-section {
    background: linear-gradient(135deg, var(--forest-green), #229954);
    color: white;
    padding: 80px 0;
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.product-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--snow-white);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--golden-hour);
    margin-top: 1rem;
}

/* Article Styling */
.article-section {
    background: rgba(255, 255, 255, 0.95);
    color: var(--mountain-peak);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--deep-pine);
    border-bottom: 2px solid var(--golden-hour);
    padding-bottom: 0.5rem;
}

.article-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Specialists Section - Block 4 */
.specialists-section {
    background: var(--mountain-peak);
    color: var(--snow-white);
    padding: 80px 0;
}

.specialists-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--morning-sky);
}

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

.specialist-item {
    background: rgba(133, 193, 233, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glacier-blue);
    transition: all 0.3s ease;
}

.specialist-item:hover {
    background: rgba(133, 193, 233, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.specialist-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--morning-sky);
}

.specialist-item p:first-of-type {
    color: var(--golden-hour);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Form Section - Block 2 */
.form-section {
    background: linear-gradient(135deg, var(--glacier-blue), var(--morning-sky));
    color: white;
    padding: 80px 0;
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--snow-white);
}

input[type="email"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--mountain-peak);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.subscribe-button {
    width: 100%;
    background: linear-gradient(45deg, var(--golden-hour), #e67e22);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    background: linear-gradient(45deg, #e67e22, var(--golden-hour));
}

/* Contact Section - Block 6 */
.contact-section {
    background: var(--stone-gray);
    color: var(--mountain-peak);
    padding: 80px 0;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--deep-pine);
}

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

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

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

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

/* Footer - Block 7 */
.footer-section {
    background: var(--deep-pine);
    color: var(--snow-white);
    padding: 2rem 0;
    text-align: center;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

    section {
        padding: 60px 0 !important;
    }

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

    form {
        padding: 1.5rem;
    }

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

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

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

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

    .review-item,
    .product-item,
    .specialist-item,
    .article-section {
        padding: 1.2rem;
    }

    h2 {
        font-size: 1.7rem !important;
    }

    .price {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Visual Effects */
section {
    position: relative;
}

.hero-section,
.products-section,
.form-section {
    background-attachment: fixed;
    background-size: cover;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--golden-hour);
    outline-offset: 2px;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item,
.product-item,
.specialist-item {
    animation: fadeInUp 0.6s ease-out;
}
