
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --main-bg: linear-gradient(135deg, #f6f1e3 0%, #e5dfd0 100%);
    --brand-green: #3e5e44;
    --text-dark: #1a1a1a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--main-bg);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 60px 40px;
    text-align: center;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out;
}

.logo {
    width: 320px;
    margin-bottom: 40px;
}

h1 {
    display: none;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

strong {
    color: var(--brand-green);
    font-weight: 700;
}

hr {
    border: none;
    border-top: 1px solid #aaa;
    margin: 30px auto;
    width: 50%;
}

.contact a {
    display: inline-block;
    background-color: var(--brand-green);
    color: #fff;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.contact a:hover {
    background-color: #2e4a36;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .logo {
        width: 220px;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding: 40px 20px;
    }
}

.products {
    margin-top: 60px;
}
.products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.product {
    width: 250px;
    background-color: #ffffffcc;
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}
.product h3 {
    font-size: 1.2rem;
    color: var(--brand-green);
    margin: 10px 0;
}
.product p {
    font-size: 0.95rem;
    color: #333;
}
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
