/* Сброс базовых отступов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    font-weight: 550;
    color: #333;
    background-image: url('./assets/wood-background.png');
    background-position: center; /* центрируем изображение */
    background-repeat: no-repeat; /* исключаем повторение изображения */
    background-size: cover;
}

/* 1. Базовый стиль хедера */
.header {
    /* Пусть будет позиция фиксированная, чтобы всегда оставался наверху */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 5.3rem;

    /* Прозрачный фон по умолчанию */
    background-color: rgba(255, 255, 255, 0.6);

    /* Переход, чтобы при добавлении класса был плавный эффект */
    transition: background-color 0.4s ease;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 5rem;
}


/* Бургер-меню */
.burger-menu {
    display: none; /* Скрыто по умолчанию */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #000; /* Цвет полосок */
    border-radius: 2px;
}


/* Скрытие навигации для мобильных устройств */
.nav {
    transition: all 0.3s ease-in-out;
}

.nav.hidden {
    display: none; /* При скрытом состоянии */
}

.nav.visible {
    display: flex !important; /* Показывается (для мобильных устройств) */
    flex-direction: column; /* Вертикальное отображение */
    gap: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Для экранов до 768px */
@media (max-width: 768px) {
    .burger-menu {
        display: flex; /* Показываем бургер */
    }

    /* Скрываем навигацию по умолчанию */
    .nav {
        display: none !important;
    }

    .logo img {
        height: 40px; /* Уменьшаем логотип */
    }

    .nav-btn {
        font-size: 14px;
    }

    .header {
        flex-wrap: nowrap;
    }
}

/* Класс, который будем подставлять скриптом, когда проскроллили */
.header.scrolled {
    /* Белый фон */
    background-color: rgba(255, 255, 255, 1);
}

/* Логотип просто для примера */
.logo img {
    max-width: 120px;
}

/* Навигация */
.nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.5rem;
    display: inline-block;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    text-decoration: none; /* Убираем стандартное подчеркивание ссылки */
    color: rgb(0,0,0); /* Цвет текста */
    border-radius: 5px; /* Закруглённые края */
    text-align: center;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: mintcream; /* Более тёмный цвет при наведении */
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Чтобы можно было анимировать прозрачность секции целиком */
    transition: opacity 1s, background-image 1s ease-in-out;
}


/* Когда хотим "спрятать" секцию для плавной смены */
.hero.fade-out {
    opacity: 0;
}

.hero-text {
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: #000;
    text-align: center;
    max-width: 80%;
    background-color: rgba(255, 255, 255, 0.6);
    padding : 1rem;
    border-radius: 10px;
}

main {
    margin: 0 2rem 0 2rem;
}

section {
    margin-bottom: 2rem;
    height: auto;
    background-color: rgba(128, 128, 128, 0.15);
    border-radius: 10px;
    padding: 5rem;
}

h2 {
    margin-bottom: 1rem;
}

/* 4. Подвал */
.footer {
    padding: 1rem;
    text-align: center;
    background-color: #f8f8f8;
    font-size: 0.9rem;
}

/* Контейнер для трёх блоков */
.info-blocks {
    display: flex; /* Располагаем элементы в ряд */
    justify-content: space-between; /* Равномерное распределение */
    gap: 1rem; /* Расстояние между блоками */
    margin-top: 2rem; /* Отступ сверху от параграфа */
}

/* Отдельный блок */
.info-block {
    flex: 1; /* Все элементы равной ширины */
    padding: 1rem;
    background-color: rgba(192,192,192, 0.6);
    border-radius: 8px; /* Скругленные углы */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Тень для визуальной отделённости */
    text-align: center; /* Центрирование содержимого */
}

.info-block h3 {
    margin-bottom: 0.5rem;
}

.info-block p {
    color: black;
    line-height: 1.5;
}

h1 {
    font-family: Playfair Display, serif;
    font-size: 30px;
}

h2 {
    font-family: Playfair Display, serif;
    font-size: 30px;
}

h3 {
    font-family: Playfair Display, serif;
    font-size: 30px;
}

p {
    font-family: opensans, sans-serif;
    font-size: 18px;
}

.gallery {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5rem;
}

.carousel {
    display: none; /* Изначально скрыта */
    padding: 1rem 1rem;
    overflow: hidden;
}
.carousel-text {
    margin-bottom: 20px; /* Отступ между текстом и изображениями */
    color: #333; /* Цвет текста */
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.carousel-images {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
}

.carousel-images::-webkit-scrollbar {
    display: none; /* Скрыть скроллбар */
}

.carousel.active {
    display: flex; /* Показываем при активации */
    gap: 10px;
    flex-direction: column;
}

.image-container {
    flex: 0 0 auto;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 200px;
    border-radius: 5px;
}

.image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 1rem;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0rem;
}

.gallery-header h2 {
    margin: 0;
}

.arrow-down {
    width: 2rem;
    height: 2rem;
    color: #000; /* Цвет стрелки */
    margin-left: 10px;
    cursor: pointer;
}

.carousel-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 5px 10px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    user-select: none;
}

.carousel-button.left {
    left: 5px;
}

.carousel-button.right {
    right: 5px;
}

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contacts {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5rem;
}

.contact-info {
    max-width: 50%;

}

.contact-info-details {
    padding: 0.5rem 0;
}

.contact-map {
    width: 45%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
}

.ask-us-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form-message {
    min-height: 5rem;
    min-width: 100%;
    max-width: 100%;
}

.form-button {
    width: 30%;
    margin-left: auto;
    margin-right: auto;

}

.form-form {
    padding: 0;
}

.gallery-section-header {
    width: 100%;
    horiz-align: center;
}

.about-us-textblock{
    text-align: justify;
}

/* Блок по умолчанию (для широких экранов) */
.info-blocks {
    display: flex; /* Показывать на широких экранах */
}

.info-blocks-small {
    display: none; /* Скрыть на широких экранах */
}

/* Медиазапрос для экранов шириной менее 860px */
@media (max-width: 860px) {
    .info-blocks {
        display: none; /* Скрыть стандартный блок */
    }

    .info-blocks-small {
        display: block; /* Показать альтернативный блок */
    }
}

.adv-btn {
    background-color: rgba(192, 192, 192, 0.6) !important;
}

/* Медиа-запрос для экранов до 1100px */
@media (max-width: 1100px) {
    .header {
        padding: 0.1rem 2rem;
        height: 80px; /* Уменьшенная высота хедера */
    }

    .logo img {
        height: 50px; /* Уменьшение логотипа */
    }

    .nav-btn {
        font-size: 16px; /* Уменьшение текста кнопок */
    }
}

/* Медиа-запрос для экранов до 768px */
@media (max-width: 768px) {
    .header {
        display: flex;
        flex-direction: row; /* Хедер становится вертикальным */
        align-items: center;
        padding: 0.2rem 2rem;
        height: auto; /* Высота адаптируется под контент */
    }

    .logo img {
        height: 40px; /* Еще меньше логотип */
    }

    .nav {
        flex-direction: column; /* Вертикальное выравнивание ссылок */
        gap: 10px;
    }

    .nav-btn {
        font-size: 14px; /* Размер шрифта кнопок еще меньше */
    }
}



@media (max-width: 1650px) {
    .hero-text {
        position: absolute;
        top: 80%;
        left: 30%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px; /* Уменьшенные отступы */
        text-align: center; /* Центрирование текста */
        height: 30vh;
    }

    .hero-text h1 {
        font-size: 1.5rem; /* Уменьшить размер заголовка */
    }

    .hero-text p {
        font-size: 1rem; /* Уменьшить размер текста */
    }
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
    }
}