body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: #2c5f2d;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ⬇️ Новая панель */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
}

.logo {
    height: 80px;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switch {
    display: flex;
    gap: 8px;
}

.language-switch button {
    background: none;
    border: 1px solid #2c5f2d;
    padding: 4px 10px;
    border-radius: 4px;
    color: #2c5f2d;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.language-switch button:hover,
.language-switch button.active {
    background-color: #2c5f2d;
    color: white;
}

.language-switch button.active {
    background-color: #2c5f2d;
    color: white;
    border-radius: 5px;
    padding: 6px 12px;
}


.navbar a {
    font-weight: 500;
    color: #2c5f2d;
}

/* Адаптив для панели */
@media (max-width: 768px) {
    .navbar-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .nav-left,
    .nav-right,
    .logo-wrapper,
    .language-switch {
        justify-content: center;
    }

    .logo {
        height: 70px;
    }

    .language-switch {
        margin-top: 10px;
    }
}

/* ⬇️ Остальной стиль */
.hero {
    background: url('../img/klyuchevoe_bck.JPG') 50% 30%/cover no-repeat;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    padding: 100px 20px;
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.photo-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.photo-card {
    width: 500px;
    /* было 300px — теперь шире */
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: 300px;
    /* выше, но не квадрат */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.photo-caption h3 {
    font-size: 30px;
    margin: 12px 0 5px;
    color: #2c5f2d;
}

.photo-caption p {
    font-size: 16px;
    color: #555;
}

.btn {
    background: #2c5f2d;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.section {
    padding: 60px 20px;
}

.section.gray {
    background: #f8f8f8;
}

.grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 250px;
}

.card img {
    height: 60px;
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

.footer {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.language-switch {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.language-switch button {
    padding: 6px 12px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.language-switch button:hover {
    background: #244c22;
}
