/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul li, ol li {
    /* отступ для списков */
    margin-left: 20px;
}

html {
    /* Плавная прокрутка (для браузеров, которые поддерживают) */
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #111;
}


/* Подключение шрифтов */
.header .logo-text,
.slogan {
    font-family: 'Cormorant Unicase', cursive;
}

/* ШАПКА — ОБЩИЙ БЛОК */
.header {
    background-color: #000;
    position: relative;
    width: 100%;
    height: 447px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* ЛОГОТИП */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-img {
    width: 175px;
    height: 175px;
    object-fit: contain;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}

/* Скрытие мобильных надписей по умолчанию */
.logo-top-mobile,
.logo-bottom-mobile {
    display: none;
}

.slogan {
    font-size: 1.9rem;
    color: #ccc;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

/* === МЕНЮ — БАЗОВЫЕ СТИЛИ (ПК И ПЛАНШЕТ) === */
.main-nav {
    display: flex;
    align-items: end;
    justify-content: center;
    background-color: #000;
    border-top: 1px solid #464646;
    height: 82px;
    width: 100%;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-list li a {
    color: #fff; /* Белый по умолчанию */
    text-decoration: none;
    font-size: 0.95rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #ccc; /* При наведении — серый */
}

/* === АДАПТИВНОСТЬ === */

/* СМАРТФОНЫ (< 768px) */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .header-content {
        padding: 0 15px;
    }

    .logo-wrapper {
        flex-direction: column;
        gap: 5px;
    }

    .logo-left,
    .logo-right {
        display: none;
    }

    .logo-top-mobile,
    .logo-bottom-mobile {
        display: block;
        font-size: 2rem;
    }

    .logo-top-mobile {
        order: -1;
    }

    .slogan {
        display: none;
    }

    /* Меню скрыто по умолчанию */
    .main-nav {
        display: none;
        height: auto;
        padding: 15px 0;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-list li a {
        text-align: center;
        width: 100%;
        padding: 8px 0;
    }

    /* Бургер */
    .mobile-menu-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 20;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .burger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: all 0.3s ease;
    }
}

/* ПЛАНШЕТЫ (769–1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .header {
        height: auto;
        padding: 20px 0;
    }

    .logo-img {
        width: 150px;
        height: 150px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.6rem;
    }

    .nav-list {
        gap: 20px;
    }
}

/* ПК (>1200px) */
@media (min-width: 1201px) {
    .header {
        height: 447px;
    }

    .logo-img {
        width: 175px;
        height: 175px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .nav-list {
        gap: 30px;
    }
}

/* === СЕКЦИЯ: НАШ САЛОН === */
.salon-section {
    background-color: #d5d5d5;
    padding: 28px 0;
}

/* Градиентная полоса с заголовком */
.salon-header-wrapper {
    width: 100%;
    height: 110px;
    background: linear-gradient(to left, #000000, #e94e77); /* чёрный → красный */
    display: flex;
    align-items: center;
    justify-content: center;
}

.salon-header-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
}

.salon-title {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Галерея */
/* Галерея */
.salon-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 28px;
}

.salon-gallery-item {
    position: relative;
}

.salon-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 550 / 500;
    overflow: hidden;
    border-radius: 4px;
}

.salon-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* SVG-рамка */
.salon-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('frame.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none; /* чтобы не мешала hover */
    z-index: 2;
}

/* Эффект при наведении — затемнение + увеличение */
.salon-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.salon-gallery-item:hover .salon-image-wrapper img {
    transform: scale(1.03);
}

.salon-gallery-item:hover .salon-image-wrapper::before {
    background: rgba(0, 0, 0, 0.3);
}

/* === АДАПТИВНОСТЬ === */

/* СМАРТФОНЫ (< 768px) */
@media (max-width: 768px) {
    .salon-header-wrapper {
        height: 70px; /* уменьшаем высоту полосы */
    }

    .salon-title {
        font-size: 24px;
    }

    .salon-gallery {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 28px;
    }

    .salon-gallery-item {
        aspect-ratio: 1 / 1; /* квадрат на мобилке, или можно оставить 550/500 */
    }
}

/* ПЛАНШЕТЫ (769–1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .salon-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .salon-gallery-item {
        aspect-ratio: 550 / 500;
    }
}


/* === СЕКЦИЯ: НАШИ СПЕЦИАЛИСТЫ === */
.specialists-section {
    width: 100%;
    overflow: hidden;
}

.specialists-bg {
    background: linear-gradient(to bottom, #d5d5d5, #111);
    padding-bottom: 28px;
}

/* Заголовок на всю ширину */
.specialists-header-wrapper {
    width: 100%;
    height: 110px;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialists-header-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
}

.specialists-title {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 36px;
    color: #000;
    text-align: center;
    margin: 0;
}

/* Контейнер карточек */
.specialists-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 0 28px;
    justify-items: center; /* центрирует неполные ряды */
}

/* Карточка специалиста */
.specialist-card {
    width: 100%;
    max-width: 422px; /* чтобы не превышать макет */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.card-top,
.card-bottom {
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 12px 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.card-photo {
    width: 100%;
    aspect-ratio: 422 / 444;
    overflow: hidden;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === АДАПТИВНОСТЬ === */

/* СМАРТФОНЫ (< 768px) */
@media (max-width: 768px) {
    .specialists-header-wrapper {
        height: 80px;
    }

    .specialists-title {
        font-size: 24px;
    }

    .specialists-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 28px;
    }

    .specialist-card {
        max-width: none;
    }
}

/* ПЛАНШЕТЫ (769–1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .specialists-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === СЕКЦИЯ: ФОТОГАЛЕРЕЯ === */
.gallery-links-section {
    width: 100%;
    position: relative;
    overflow: visible;
    background-color: #111; /* фон секции */
    padding-top: 28px; /* отступ после заголовка */
}

/* Заголовок */
.gallery-header-wrapper {
    width: 100%;
    height: 110px;
    background-color: #464646;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.gallery-header-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
}

.gallery-title {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Обёртка для полос — на всю ширину */
.gallery-link-wrapper {
    position: relative;
    width: 100%;
    height: 268px; /* 120px * 2 + 28px gap */
    overflow: hidden;
    margin: 28px 0;
}

/* Общие стили полос */
.gallery-link {
    position: absolute;
    height: 120px;
    width: calc(50% + 300px); /* больше половины экрана */
    background-color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 5;
    /* Начальное состояние — за пределами экрана */
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.5s ease;
}

.gallery-link--left {
    top: 0;
    left: 0;
    transform: translateX(-50%);
}

.gallery-link--right {
    top: 148px; /* 120 + 28 */
    right: 0;
    transform: translateX(50%);
}

/* Контент полос — ограничиваем 1200px */
.gallery-link-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
    margin: 0 auto;
}

.gallery-link span {
    color: #e94e77;
    font-family: 'Cormorant Unicase', cursive;
    font-size: 32px;
    font-weight:bold;
    display: block;
}

/* Границы через псевдоэлемент */
.gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #bcbcbc;
    pointer-events: none;
}

.gallery-link--left::before {
    border-left: none;
}
.gallery-link--right::before {
    border-right: none;
}
.gallery-link--left span {
    text-align: right;
}
.gallery-link--right span {
    text-align: left;
}

/* Анимация */
.gallery-link.animate {
    transform: translateX(0);
    opacity: 1;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .gallery-link {
        width: 100%;
        transform: translateX(-50%);
    }

    .gallery-link--right {
        transform: translateX(50%);
    }

    .gallery-link--left span, .gallery-link--right span {
        text-align: center;
    }

    /* На мобилках — полная рамка */
    .gallery-link::before {
        border-left: 2px solid #bcbcbc;
        border-right: 2px solid #bcbcbc;
    }
}

/* === СЕКЦИЯ: АДРЕС === */
.address-section {
    background-color: #111;
    width: 100%;
    overflow: hidden;
}

/* Разделительная полоса */
.address-divider {
    height: 2px;
    background-color: #464646;
    width: 100%;
}

/* Заголовок "Адрес" */
.address-title-wrapper {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: center;
}

.address-title-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
}

.address-title {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Градиентная полоса с адресом */
.address-header-wrapper {
    width: 100%;
    background: linear-gradient(to left, #000000, #e94e77);
    padding: 14px 0;
}

.address-header-content {
    /* max-width: 1200px; */
    width: 100%;
    padding: 0 28px;
}

.address-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Основной контент: сетка карта + текст */
.address-content-wrapper {
    width: 100%;
    padding: 28px 0;
}

.address-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
    margin: 0 auto;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.address-map,
.address-info {
    display: flex;
    flex-direction: column;
}

.address-info {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

.address-info p,
.address-info strong {
    color: #fff;
    margin: 0 0 12px 0;
    display: block;
}

.address-schedule,
.address-prices {
    margin-bottom: 16px;
}

.address-prices ul {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 0 0;
}

.address-prices li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

/* Декоративная точка вместо маркера */
.address-prices li::before {
    content: '○';
    color: #e94e77;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
}

/* === АДАПТИВНОСТЬ === */

@media (max-width: 768px) {

    .address-text {
        font-size: 24px;
    }

    .address-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .address-map iframe {
        height: 400px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .address-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .address-map iframe {
        height: 500px;
    }
}

/* === МОДАЛЬНОЕ ОКНО ОТЗЫВОВ === */
.reviews-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(215, 215, 215, 0.9);
    z-index: -1;
}

.reviews-frame {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 750px;
    max-height: 750px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Кнопка "Назад" */
.reviews-back-btn {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 12px 24px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.reviews-back-btn:hover {
    background-color: #f5f5f5;
}

/* Заголовок */
.reviews-header {
    width: 100%;
    height: 110px;
    background-color: #de454c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-header h3 {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}
/* Стили для заголовка отзывов */
.reviews-title {
    margin: 0;
    position: relative;
}

.reviews-title-full,
.reviews-title-short {
    display: none;
}

/* Контейнер слайдера */
.reviews-slider-container {
    position: relative;
    padding: 28px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Навигационные кнопки */
.slider-nav {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.2s ease;
}

.slider-nav:hover {
    opacity: 0.8;
}

.slider-prev {
    left: 28px;
}

.slider-next {
    right: 28px;
}

/* Слайдер отзывов */
.reviews-slider {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.review-item, .adds-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 28px;
    background-color: #f3f3f3;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    flex-direction: column;
}

.review-item.active, .adds-item.active {
    opacity: 1;
    transform: translateX(0);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #333;
    margin: 0 0 12px 0;
}

.review-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* === АДАПТИВНОСТЬ === */

/* По умолчанию — полный текст (для больших экранов) */
@media (min-width: 460px) {
    .reviews-title-full {
        display: block;
    }
}

/* На узких экранах — короткий текст */
@media (max-width: 459px) {
    .reviews-title-short {
        display: block;
    }
}

@media (max-width: 1024px) {
    .reviews-frame {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }

    .reviews-back-btn {
        top: 28px;
        left: 28px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .reviews-header {
        height: 80px;
    }

    .reviews-header h3 {
        font-size: 24px;
    }

    .reviews-slider-container {
        padding: 20px;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .review-item, .adds-item {
        padding: 20px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .review-content h4 {
        font-size: 18px;
    }

    .review-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .reviews-back-btn {
        top: 16px;
        left: 16px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .reviews-header {
        height: 60px;
    }

    .reviews-header h3 {
        font-size: 20px;
    }

    .reviews-slider-container {
        padding: 16px;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        top:90%;
    }

    .slider-prev {
        left: 16px;
    }

    .slider-next {
        right: 16px;
    }

    .review-item, .adds-item {
        padding: 16px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-content h4 {
        font-size: 16px;
    }

    .review-content p {
        font-size: 14px;
    }
}

/* === СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА ОБЪЯВЛЕНИЙ === */
/* Используем общий класс .reviews-modal — он уже есть */

/* Содержимое объявления (текст + картинка) */
.add-content {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
}

.add-text {
    flex: 1;
}

.add-text h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #333;
    margin: 0 0 12px 0;
}

.add-text p, .add-text ul {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.ad-image {
    flex-shrink: 0;
    width: 33%; /* ~1/3 ширины контента */
    max-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 0;
}

.ad-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* === АДАПТИВНОСТЬ === */

@media (max-width: 1024px) {
    .add-content {
        flex-direction: column;
        gap: 20px;
    }

    .ad-image {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .add-content {
        gap: 16px;
    }

    .add-text h4 {
        font-size: 18px;
    }

    .add-text p {
        font-size: 14px;
    }

    .ad-image {
        width: 100%;
    }
}


/* === ФУТЕР === */
.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 40px 0 20px;
    width: 100%;
    text-align: right; /* для ПК: контакты по правому краю */
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 28px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    justify-self: start; /* логотип — по левому краю сетки */
}

.footer-contacts {
    justify-self: end; /* контакты — по правому краю сетки */
}

.footer-logo-text {
    font-family: 'Cormorant Unicase', cursive;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
}

.footer-logo-text a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.footer-contacts p {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.5;
}

.footer-copyright {
    max-width: 1200px;
    width: 100%;
    padding: 20px 28px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #464646;
}

/* Кнопки в футере */
.footer-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-end; /* выравнивание по правому краю на ПК */
}

.footer-btn {
    background-color: transparent;
    color: #e94e77;
    border: 1px solid #e94e77;
    padding: 6px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none; /* ← важно для ссылок */
    display: inline-block; /* ← чтобы padding работал */
}

.footer-btn:hover,
.footer-btn:focus {
    background-color: #e94e77;
    color: #fff;
    outline: none;
}



/* === АДАПТИВНОСТЬ === */

@media (max-width: 768px) {
    .site-footer {
        text-align: center;
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-logo,
    .footer-contacts {
        justify-self: center;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-contacts p {
        font-size: 15px;
    }

    .footer-buttons {
        justify-content: center;
        gap: 10px;
    }

    .footer-btn {
        font-size: 14px;
        padding: 6px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-logo-text {
        font-size: 24px;
    }

    .footer-contacts p {
        font-size: 15px;
    }
}