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

body {
    font-family: "Helvetica Neue", sans-serif;
    color: white;
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: #6e7729;
    padding: 1rem 0;
    text-align: center;
}

.site-header h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background-image: url("./imgs/1.png"); /* Замени на путь к фото */
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #6e7729;
    color: white;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #58601f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

.articles {
    background-color: #f7f7f7;
    padding: 4rem 1rem;
}

.article {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.article:last-child {
    border-bottom: none;
}

.article .text {
    flex: 1 1 60%;
}

.article .text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #111;
}

.article .text p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.article .text em {
    font-size: 0.85rem;
    color: #666;
}

.article .image {
    flex: 1 1 30%;
    max-width: 200px;
}

.article .image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .article {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .article .image {
        max-width: 100%;
        margin-top: 1rem;
    }
}

.contact {
    background-color: #6e7729;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    width: 100%;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    background-color: white;
    color: #000;
    font-weight: bold;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #ddd;
}

/* Footer */
.site-footer {
    background-color: #fff;
    color: #111;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: #666;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 30%;
    text-align: center;
}

@media (max-width: 768px) {
    .contact h2 {
        font-size: 1.5rem;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex: 1 1 100%;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem 1rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background-color: #6e7729;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-buttons button:hover {
    background-color: #58601f;
}

.thank-you {
    padding: 6rem 1rem;
    text-align: center;
    background-color: #fff;
    color: #111;
}

.thank-you h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you .cta-button {
    display: inline-block;
    background-color: #6e7729;
    color: white;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.thank-you .cta-button:hover {
    background-color: #58601f;
}
