/* Общие стили */
body {
    font-family: 'Arial', sans-serif;
    background-color: #e8f0f2;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Стили для заголовка (header) */
.page-header {
    background-color: #2a9d8f;
    color: #fff;
    padding: 20px 0;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.header-photo {
    width: 180px;
    height: 240px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 10px;
    border: 5px solid #fff;
}

.header-text h1, .header-text h2, .header-text h3 {
    margin: 10px 0;
}

.header-text h1 {
    font-size: 2.5em;
    font-weight: bold;
}

.header-text h2 {
    font-size: 1.8em;
}

.header-text h3 {
    font-size: 1.2em;
}

.header-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.language-switcher a {
    color: #f4a261;
    text-decoration: none;
    margin: 0 5px;
}

/* Навигационное меню */
.main-navigation {
    background-color: #264653;
    text-align: center;
    padding: 10px 0;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
}

.main-navigation a:hover {
    text-decoration: underline;
}
/* Стили для всплывающего окна фото */
.photo-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.photo-popup-content {
    position: relative;
}

.photo-popup-content img {
    width: 360px;
    height: 480px;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
}



/* Стили для футера */
footer {
    background-color: #264653;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer p {
    margin-top: 10px;
}

footer nav a:hover {
    text-decoration: underline;
}