/* Общие стили */
body {
  margin: 0;
}

/* Хедер */
header {
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 16px;
    font-weight: 550;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #240d04; /* Тёмно-коричневый */
}

.header-top .right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top .right-section a {
    text-decoration: none;
    font-size: 16px;
    color: #dfc39b;
}

.header-top .right-section a:hover {
    color: #dfc39b; /* Светло-жёлтый */
}

.header-top .contact {
    font-size: 14px;
    color: #dfc39b;
}

/* Навигация */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    flex-wrap: wrap;
}

.nav a {
    color: #dfc39b;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
}

.nav a:hover {
    background-color: #b58e60; /* Светло-коричневый */
}

/* Подменю */
.submenu {
    display: flex;
    justify-content: center;
    background-color: #dfc39b; /* Светло-коричневый */
}

.submenu a {
    color: #240d04;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
}

.submenu a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 800px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav {
        justify-content: center;
    }
    
    .submenu {
        flex-wrap: wrap;
    }
    
    .submenu a {
        flex: 1 1 50%;
        text-align: center;
        border-bottom: 1px solid #fff;
    }
}

/* Контентная часть */
.events {
    text-align: center;
}

.events__list {
    display: flex;
    justify-content: center;
}

/* Футер */
.footer {
display: grid;
grid-template-columms: 1fr 1fr;
    background-color: #3b2113; /* Цвет фона футера */
    color: #c9a689; /* Цвет текста */
    padding: 40px 20px;
}

.footer-container {
    max-width: 1100px; /* Максимальная ширина контейнера */
    margin: 0 auto; /* Центрируем содержимое */
    display: flex;
    flex-wrap: wrap; /* Адаптация для маленьких экранов */
    justify-content: space-between;
}

.footer-menu {
    flex: 1; /* Занимает равную ширину в контейнере */
    margin: 20px; /* Отступ между элементами */
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    color: #c9a689;
    text-decoration: none;
}

.footer-menu ul li a:hover {
    text-decoration: underline;
}

.footer-contacts {
    flex: 1; /* Занимает равную ширину в контейнере */
    text-align: right;
    margin: 20px; /* Отступ между элементами */
}

.footer-contacts h4 {
    margin-bottom: 10px; /* Отступ под заголовком */
}

.footer-contacts .phone {
    font-size: 1.5em;
    font-weight: bold;
}

.footer-contacts .social-icons {
    margin-top: 10px;
}

.footer-contacts .social-icon {
    margin-right: 10px;
    color: #c9a689;
    text-decoration: none;
    font-weight: bold;
}

.footer-contacts .social-icon:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #8e7359;
    flex: 1; /* Занимает равную ширину в контейнере */
}

.footer-bottom p {
    margin: 5px 0;
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    .footer-container {
        align-items: center;
        text-align: center;
    }
    
    .footer-contacts {
        margin-top: 20px;
        text-align: center;
    }
}