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

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

/* Root Variables - Jungle Color Palette */
:root {
    --jungle-primary: #1B4332;
    --jungle-secondary: #2D5A4A;
    --jungle-accent: #52B788;
    --jungle-light: #74C69D;
    --jungle-bright: #95D5B2;
    --jungle-cream: #F8F5E4;
    --jungle-brown: #8B4513;
    --jungle-dark: #081C15;
    --jungle-orange: #FF8500;
    --text-light: #FFFFFF;
    --text-dark: #081C15;
    --shadow: rgba(8, 28, 21, 0.3);
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--jungle-cream);
    max-width: 1180px;
    margin: 0 auto;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px var(--shadow);
}

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

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Block 1 - Hero Section */
#hero {
    background: linear-gradient(135deg, var(--jungle-primary) 0%, var(--jungle-secondary) 50%, var(--jungle-accent) 100%);
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(116, 198, 157, 0.2) 15%, transparent 16%),
        radial-gradient(circle at 80% 70%, rgba(149, 213, 178, 0.15) 10%, transparent 11%),
        radial-gradient(circle at 40% 80%, rgba(82, 183, 136, 0.1) 12%, transparent 13%);
    pointer-events: none;
}

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

#hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--jungle-bright);
    margin-bottom: 2rem;
}

#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.95;
}

/* CTA Button in Hero */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--jungle-orange), #ff9500);
    color: var(--text-light);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 133, 0, 0.4);
    background: linear-gradient(45deg, #ff9500, var(--jungle-orange));
}

/* Block Alternating Colors */
#specialists {
    background: var(--jungle-dark);
    color: var(--text-light);
    padding: 80px 0;
}

#products {
    background: var(--jungle-cream);
    color: var(--text-dark);
    padding: 80px 0;
}

#reviews {
    background: var(--jungle-secondary);
    color: var(--text-light);
    padding: 80px 0;
}

#subscribe {
    background: var(--jungle-accent);
    color: var(--text-light);
    padding: 80px 0;
}

#contact {
    background: var(--jungle-brown);
    color: var(--text-light);
    padding: 80px 0;
}

/* Section Headers */
section h2 {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--jungle-orange);
    border-radius: 2px;
}

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

/* Card Styles */
.specialist,
.product,
.review {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#products .product {
    background: rgba(27, 67, 50, 0.05);
    border: 1px solid rgba(27, 67, 50, 0.1);
}

.specialist:hover,
.product:hover,
.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jungle-orange);
    margin-top: 15px;
}

/* Article Styling */
.guide-article {
    margin-top: 60px;
    background: var(--jungle-primary);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--jungle-orange);
    box-shadow: 0 8px 25px var(--shadow);
}

.guide-article h3 {
    color: var(--jungle-bright);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.guide-article p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
}

form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    margin-bottom: 20px;
    outline: none;
    transition: all 0.3s ease;
}

form input[type="email"]:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

form button {
    background: linear-gradient(45deg, var(--jungle-orange), #ff9500);
    color: var(--text-light);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.3);
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 133, 0, 0.4);
}

/* Contact Section */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

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

/* Footer */
footer {
    background: var(--jungle-dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

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

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

    section {
        padding: 50px 0 !important;
    }

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

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

    .guide-article {
        padding: 25px;
        margin-top: 40px;
    }

    .guide-article h3 {
        font-size: 1.4rem;
    }

    form input[type="email"] {
        padding: 12px 18px;
        font-size: 1rem;
    }

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

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

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

    h2 {
        font-size: 1.6rem;
    }

    #hero {
        text-align: center;
    }

    .specialists-grid,
    .products-grid,
    .reviews-grid {
        gap: 15px;
    }

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

    .guide-article {
        padding: 20px;
    }

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