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

body {
    font-family: Arial, sans-serif;
    background: #f5f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: #1e3d2f;
    color: white;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    height: 80vh;
    background: url('https://source.unsplash.com/1600x900/?park,landscape') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 40px;
}

.btn {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.about, .parks {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.lazy-img {
    width: 100%;
    filter: blur(15px);
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.lazy-img.loaded {
    filter: blur(0);
    transform: scale(1);
}

.gallery {
    padding: 60px 20px;
    background: #e9efe9;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.cta {
    text-align: center;
    padding: 60px 20px;
    background: #1e3d2f;
    color: white;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #aaa;
}

/* 📱 адаптив */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 26px;
    }

    .header .container {
        flex-direction: column;
        gap: 10px;
    }
}
