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

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f4f0e8 0%, #e8dcc6 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

.container {
    padding: 0 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

/* Hero Section - Block 1 */
#hero {
    background: linear-gradient(45deg, #8b4513 0%, #d2691e  50%, #cd853f 100%);
    color: #fff;
    min-height: 430px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

#hero p {
    font-size: 1.3rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8c42 0%, #ffa500 100%);
}

/* Reviews Section */
#reviews {
    background: linear-gradient(135deg, #2f1b14 0%, #8b4513 100%);
    color: #f4f0e8;
    padding: 4rem 0;
}

#reviews h2 {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.review {
    background: rgba(244, 240, 232, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #d2691e;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.review h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Products Section */
#products {
    background: linear-gradient(135deg, #f4f0e8 0%, #deb887 100%);
    color: #2c1810;
    padding: 4rem 0;
}

#products h2 {
    color: #8b4513;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}

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

.product {
    background: linear-gradient(145deg, #fff 0%, #f8f5f0 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    border: 3px solid #d2691e;
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

/* Article Styling */
article {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4f0e8;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 3px solid #d2691e;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

article h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

/* Specialists Section */
#specialists {
    background: linear-gradient(135deg, #cd853f 0%, #daa520 100%);
    color: #2c1810;
    padding: 4rem 0;
}

#specialists h2 {
    color: #8b4513;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.3);
}

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

.specialist {
    background: linear-gradient(145deg, #fff 0%, #f8f5f0 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
    border: 2px solid #8b4513;
    transition: transform 0.3s ease;
}

.specialist:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.3);
}

.specialist h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.specialist p:first-of-type {
    color: #d2691e;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Subscribe Section */
#subscribe {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#subscribe h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#subscribe p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c1810;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

input[type="email"]:focus {
    outline: none;
    background: #fff;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

button[type="submit"] {
    background: linear-gradient(45deg, #8b4513 0%, #a0522d 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: linear-gradient(45deg, #a0522d 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.6);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #2f1b14 0%, #3e2723 100%);
    color: #f4f0e8;
    padding: 4rem 0;
}

#contact h2 {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.address h3 {
    color: #d2691e;
    margin-bottom: 1rem;
}

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

.map iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    color: #f4f0e8;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #d2691e;
}

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

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

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

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

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    form {
        flex-direction: column;
        gap: 1rem;
    }

    input[type="email"],
    button[type="submit"] {
        width: 100%;
    }

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

    article h3 {
        font-size: 1.8rem;
    }

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

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

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

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    #hero {
        padding: 1.5rem 0;
    }

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

    .product,
    .review,
    .specialist {
        padding: 1rem;
    }

    article {
        padding: 1.5rem;
    }

    article p {
        font-size: 1rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hover effects for better interactivity */
section {
    transition: all 0.3s ease;
}

/* Custom selection colors */
::selection {
    background: #d2691e;
    color: #fff;
}

::-moz-selection {
    background: #d2691e;
    color: #fff;
}
