/* Базовые настройки */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #eae6df; /* светлый бежево-серый */
    color: #3a3a3a;
}

/* Центральная колонка для больших экранов */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px;
}

/* Шапка */
header {
    margin-bottom: 60px;
}

h1 {
    font-size: 42px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.subtitle {
    margin-top: 10px;
    color: #7a7a7a;
    font-size: 16px;
}

/* Заголовки секций */
h2 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 22px;
    border-bottom: 1px solid #cfcac2;
    padding-bottom: 10px;
}

/* Сетка фотографий */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.photo-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d8d4cc;
    transition: transform 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.03);
}

/* Видео */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

video {
    width: 100%;
    background-color: #d8d4cc;
}

/* Футер */
footer {
    margin-top: 80px;
    color: #7a7a7a;
    font-size: 14px;
}
/* Lightbox */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(40, 40, 40, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
}

.close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    color: #eae6df;
    cursor: pointer;
    font-weight: 300;
}

.close:hover {
    opacity: 0.7;
}


