/* Скидання базових відступів */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #F1F1F1;
    font-family: 'Montserrat', sans-serif;
}

/* Базові стилі для контейнера */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Стилі для самої шапки */
.site-header {
    padding: 1rem 0;
    /* верх і низ */
}

/* Організація розташування в три «зони» за допомогою Grid */
.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    /* вирівнює по вертикалі по центру */
    gap: 1rem;
    /* відступ між «колонками» */
}

/* Клікабельна назва (лого) */
h1 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

h1 a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Навігація (по центру) */
nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    /* додайте перехід, щоб було плавніше */
}

nav a:hover {
    color: orange;
    transition: color 0.3s ease;
    /* або #FFA500, чи будь-який інший відтінок */
}

/* #Перемикач мови */
.lang-switch {
    /* Якщо потрібно якісь відступи чи інше оформлення блоку */
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    gap: 0.5rem;
    align-items: center;
    justify-content: flex-end;
    /* Наприклад, якщо треба праворуч */
    /* або інші стилі */
    transition: color 0.3s ease;
}

.lang-option {
    /* Стиль неактивної мови */
    color: rgb(0, 0, 0);
    /* чорний */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    /* «тонкий» або нормальний */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* При ховері можна підсвічувати, якщо хочете */
.lang-option:hover {
    color: orange;
    transition: color 0.3s ease;
}

/* Активна (вибрана) мова */
.lang-option.active {
    color: orange;
    /* оранжевий шрифт */
    font-weight: 700;
    transition: color 0.3s ease;
    /* жирний */
}

/* Основна секція з двома колонками */
.hero-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 80px 0 120px;
        /* Відступ зверху: 4rem, знизу: 3.5rem */
}

/* Ліва колонка (текст + кнопки) */
.hero-content {
    font-family: Montserrat;
    flex: 0 0 50%;
    /* 50% ширини (можна регулювати) */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content .title {
    font-size: 36px;
    font-family: Montserrat;
    font-weight: 700;
    padding-bottom: 16px;
}

.highlight {
    color: orange;
}

.typing-line {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    padding-bottom: 32px;
}

/* Помаранчевий текст + ефект мерехтливої каретки */
#typing-text {
    font-family: 'Azeret Mono', monospace;
    font-size: 24px;
    color: orange;
    border-right: 2px solid orange;
    padding-right: 4px;
    animation: blink 0.8s infinite step-start;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-description {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* аби не розтягувалося надто */
    padding-bottom: 40px;
}

/* Блок із кнопками */
.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Базова кнопка */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36%;
    height: 50px;
    border-radius: 15px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Кнопка «Add Contact» (градієнтна) */
.contact-button {
    font-family: Montserrat;
    background: linear-gradient(91.99deg, #FF9500 8.06%, #FFB54F 75.84%);
    box-shadow: 0px 4px 45.2px 9px rgba(255, 157, 18, 0.40);
    color: #ffffff;
    font-weight: 700;
    min-width: 200px;
}

.contact-button:hover {
    background: linear-gradient(92deg, #F08C00 8.06%, #E6A448 75.84%);
}

.cv-button {
    position: relative;
    /* Додаємо для коректного позиціонування псевдоелемента */
    background: #F1F1F1;
    border: 2px solid #000;
    color: #000;
    font-family: Montserrat;
    font-weight: 500;
    width: 250px;
    overflow: hidden;
}

.cv-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000;
    z-index: 0;
    transition: height 0.3s ease;
}

.cv-button:hover::before {
    height: 100%;
}

.cv-button:hover {
    color: #fff;
}

.cv-button span {
    position: relative;
    z-index: 1;
}

/* Права колонка (фото + фон) */
.hero-visual {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vector-background {
    position: absolute;
    width: 72%;
    height: 92%;
    z-index: 1;
    /* за потреби top, left, transform тощо */
}

.sticker-photo {
    position: relative;
    margin-right: 10%;
    margin-bottom: 5%;
    width: 50%;
    height: 50%;
    z-index: 2;
}

/* Адаптив на вузьких екранах */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content,
    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-visual {
        margin-top: 2rem;
        justify-content: center;
    }
}

/* Чорна бігуча лінія (Ticker) */
.ticker-wrap {
    width: 100%;
    background-color: #000;
    overflow: hidden;
    height: 100px;
    padding: 30px 0px;
}

/* Сам «контейнер», що містить текст і анімацію */
.ticker {
    display: flex;
    /* Дублікація контенту для безшовного циклу */
    animation: ticker 20s linear infinite;
}

/* Кожен «елемент» нашої стрічки */
.ticker__item {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    color: #F3F3F3;
    text-align: center;
    font-family: "Azeret Mono";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    padding: 0px 0px 75px 75px;
}

/* Ключові кадри анімації */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Зупинка анімації при наведенні */
.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

/* Секція Останні Проекти */
.latest-projects {
    text-align: center;
    padding: 50px 0;
}

.section-title {
    color: #FF9501;
    text-align: center;
    font-family: "Azeret Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 50px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    color: #000;
    margin-bottom: 85px;
    margin-top: 20px;
}

.projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Щоб проекти переносилися, якщо не вміщаються в ряд */
}

.project-block {
    position: relative;
    z-index: 3;
    width: calc((1200px - 2 * 20px) / 3);
    height: 500px;
    box-shadow: 0px 4px 23.3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.project-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(158.25deg, #EBFBFF 4.29%, #C1EFFC 33.04%, #E3F7FD 79.87%);
    border-radius: 25px;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    position: absolute;
    width: 90%;
    /* Початковий розмір */
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.project-label {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgb(0, 0, 0);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 29px;
    border-radius: 25px 25px 0 0;
    z-index: 1;
    transition: transform 0.8s ease, top 0.8s ease;
    cursor: pointer;
    padding-top: 15px;
}

.project-title {
    position: absolute;
    bottom: 10px;
    left: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 29px;
    color: #31AED0;
    z-index: 12;
}

.project-content:hover .project-image img {
    transform: translate(-50%, -50%) scale(1.30) rotate(6deg);
    filter: grayscale(0%);
    z-index: 10;
}

.project-block:hover {
    filter: grayscale(0%);
}

.project-label.active {
    top: -11%;
}

/* Індивідуальні стилі для кожного проекту */
.project-1 {
    background: linear-gradient(158deg, #EBFBFF 4.29%, #C1EFFC 33.04%, #E3F7FD 79.87%);
}

.project-1 .project-title {
    color: #31AED0;
}

.project-1 .project-image img {
    width: 90%;
}

.project-2 {
    background: linear-gradient(162deg, #D50000 -2.6%, #932C2C 37.02%, #AD0A0A 68.61%, #8A3434 104.49%);
}

.project-2 .project-title {
    color: #FFF;
}

.project-2 .project-image img {
    width: 45%;
}

.project-3 {
    background: linear-gradient(200deg, #71D29A 2.41%, #8EB49E 37.19%, #96E7B8 104.71%);
}

.project-3 .project-title {
    color: #276C0E;
}

.project-3 .project-image img {
    width: 80%;
}

/* Секція "Get in Touch" */
.get-in-touch {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
        /* Розтягнути елементи по висоті */
    /* Вирівнювання по верхньому краю */
    padding: 100px 0 50px 0;
    flex-wrap: wrap;
}

.contact-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.section-title-contact {
    color: #FF9501;
    text-align: left;
    font-family: "Azeret Mono", monospace;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
    /* Видалення зайвого відступу зверху */
}

.section-subtitle-contact {
    font-family: Montserrat;
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    color: #000;
    margin-bottom: 24px;
    margin-top: 12px;
}

.contact-description {
    font-family: Montserrat;
    width: 430px;
    font-weight: 500;
    font-size: 20px;
    color: #000;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3F3F3F;
    font-family: "Azeret Mono";
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 16px;
}

.contact-info a {
    display: inline-block;
    color: #3F3F3F;
    text-decoration: none;
    transition: color 0.3s ease;
    vertical-align: middle;
    line-height: 1;
    font-family: "Azeret Mono";
    font-size: 16px;
    font-weight: 600;
}

.contact-info a:hover {
    color: orange;
}

.contact-info img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    vertical-align: middle;
}

.contact-form {
    position: relative;
    right: -25px;
    width: 450px;
    background: #f2f1ee;
    border: 3px solid #d5cec1;
    backdrop-filter: blur(60px);
    border-radius: 25px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-self: flex-start;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Загальні стилі для груп форм */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Мітки */
.form-group label {
    display: none;
}

/* Поля вводу та текстові області */
.form-group input,
.form-group textarea {
    padding: 10px 15px;
    border: 2px solid #D5CEC1;
    border-radius: 10px;
    background: #F3F2EF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000;
    outline: none;
    resize: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: orange;
}

/* Кнопка відправки */
.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.send-button button {
    position: relative;
    width: 100%;
    height: 50px;
    background: #F3F2EF;
    border: 2px solid #000;
    color: #000;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    /* Збереження тексту на верхньому шарі */
}

.send-button button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000;
    z-index: -1;
    /* Фон кнопки під текстом */
    transition: height 0.3s ease;
}

.send-button button:hover::before {
    height: 100%;
}

.send-button button:hover {
    color: #fff;
}

.send-button button span {
    position: relative;
    z-index: 2;
    /* Текст над чорним залиттям */
}

.contact-badge {
    height: auto;
    /* Автоматична висота */
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 0 25px 25px 0;
    transition: transform 0.3s ease;
}

.contact-badge span {
    position: relative;
    transform: rotate(90deg);
    /* Поворот тексту */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #F1F1F1;
    white-space: nowrap;
    line-height: 1;
    right: -10px;
}

/* Адаптивність */
@media (max-width: 768px) {
    .contact-form {
        width: 100%;
        max-width: 500px;
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .send-button button {
        font-size: 18px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f2f1ee;
    font-family: "Montserrat", sans-serif;
}

/* Контейнер */
.faq-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
    position: relative;
}

/* Ліва колонка - Список запитань */
.faq-list {
    flex: 1 1 65%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 2px solid #d5cec1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    text-align: left;
    position: relative;
    background-color: #F3F2EF;
    width: 100%;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #3F3F3F;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    z-index: 4;
}

.faq-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    position: relative;
    max-height: 500px;
    padding: 0 15px 15px 15px;
    z-index: 0;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* Права колонка - Блок з фото */
.faq-photo-block {
    flex: 1 1 35%;
    border: 2px solid #d5cec1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.faq-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-title {
    color: #ff9501;
    text-align: center;
    font-family: "Azeret Mono", monospace;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    color: #000;
}

/* Фон із закругленням */
.faq-photo-block::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, #ff9501, #ffd600);
    z-index: -1;
    border-radius: 30px;
    transform: rotate(-3deg);
}

/* Адаптивність */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        gap: 20px;
    }

    .faq-list {
        flex: 1 1 auto;
    }

    .faq-photo-block {
        flex: 1 1 auto;
        padding: 20px;
    }

    .faq-image {
        max-width: 200px;
    }

    .faq-title {
        font-size: 20px;
    }

    .faq-subtitle {
        font-size: 28px;
    }
}

/* Стилізація треку (доріжки) повзунка */
::-webkit-scrollbar-track {
  background: transparent; /* Прозорий фон треку */
}

.footer {
    background-color: #000;
    padding: 40px 0px 20px 0px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    /* Для адаптивності */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    color: white;
}

.footer-rights {
    flex: 1 1 100%;
    position: relative;
    text-align: center;
    color: #C8C8C8;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
}

.footer-maincolumn {
    width: 40%;
}

.footer-maintitle {
    color: #E0E0E0;
    font-family: "Azeret Mono";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-maincolumn a {
    color: #E0E0E0;
    text-decoration: none;
    font-family: "Azeret Mono";
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-maincolumn a:hover {
    color: white;
    transition: color 0.3s ease;
}

.footer-maincolumn p {
    width: 80%;
    margin-top: 20px;
    color: #ACACAC;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal
}

.footer-column {
    flex: 1 1 200px;
    margin-bottom: 20px;
}

.footer-title {
    color: rgba(255, 255, 255, 0.798);
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.footer-links,
.footer-socials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-socials li {
    margin-bottom: 8px;
}

.footer li {
    color: #C3C3C3;    
    font-family: "Azeret Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.footer-links a,
.footer-socials a {
    text-decoration: none;
    color: #C3C3C3;
    font-family: "Azeret Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column,
    .footer-maincolumn {
        flex: 1 1 100%;
    }

    .footer-rights {
        margin-top: 30px;
    }
}


/* Мобільна адаптація */
@media (max-width: 768px) {
    .cv-button .cv-text {
        display: none;
        /* Приховує повний текст */
    }

    .cv-button::after {
        content: "CV";
        /* Додає "CV" через псевдоелемент */
        display: inline-block;
    }

    /* Опціонально: зменшення ширини кнопки */
    .cv-button {
        width: auto;
        /* Спеціально для цієї кнопки */
        padding: 0 15px;
    }
        
    .mobile-menu-toggle {
        display: block;
        /* Показуємо кнопку бургер-меню */
    }

    /* Шапка */
    .header-grid {
        grid-template-columns: 1fr auto;
        padding: 10px 0;
    }

    .desktop-menu {
        display: none;
        /* Приховуємо десктопне меню */
    }

    .lang-switch {
        display: none;
    }

    /* Герой-секція */
    .hero-section {
        padding: 40px 0;
        flex-direction: column;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-visual {
        order: 1;
        justify-content: center;
        margin-bottom: 30px;
    }

    .title {
        font-size: 28px !important;
    }

    .hero-description {
        padding: 0 5% 5%;
    }

    .hero-buttons {
        flex-direction: row;
        /* Забезпечує горизонтальне розташування */
        flex-wrap: wrap;
        /* Дозволяє переносити кнопки при нестачі місця */
        justify-content: center;
       /* Вирівнювання по центру (опціонально) */
    } 

    .typing-text {
        font-size: 18px;
    }

    .typing-line {
        content: "I craft11 /n";
    }


    /* Контактна форма */
    .get-in-touch {
        flex-direction: column;
        padding: 50px 0;
    }

    .contact-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-description {
        width: auto !important;
        padding: 0 15px;
    }

    .contact-form {
        width: 100% !important;
        right: 0 !important;
    }

    /* FAQ */
    .faq-container {
        flex-direction: column;
        padding: 3%;
    }

    .faq-photo-block {
        order: -1;
        padding: 40px 0 40px 0;
    }

    .faq-question {
        font-size: 16px;
        padding: 10px;
    }

    /* Футер */
    .footer-maincolumn {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-maincolumn p {
        width: 100% !important;
        padding: 0 10% 0 10%;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-badge span {
        order: -1;
        transform: rotate(0deg);
    }

    .contact-badge {
        height: 100%;
        width: auto;
        border-radius: 25px 25px 0 0;
    }

    .vector-background {
        width: 100%;
        height: 100%;
    }

    .sticker-photo {
        margin-right: 0px;
        margin-bottom: 0px;
    }
    
    .section-title-contact {
        text-align: center;
    }

    .contact-info a {
        display: none;
    }
        
    .contact-info {
        display: inline;
    }

}

@media (max-width: 480px) {

    .section-subtitle {
        font-size: 28px !important;
        margin-bottom: 40px !important;
    }

    /* Форма */
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
}

/* CSS */
/* Бургер-кнопка */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    position: relative;
}

.burger-line {
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Мобільне меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Оверлей */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: inline-block;
}

/* Стилі для блокування скролу */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Навігація */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.mobile-nav-list li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s;
}

.mobile-menu.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-list a {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.mobile-nav-list a:hover {
    color: #FF9500;
}

/* Перемикач мов */
.mobile-lang-switch {
    display: flex;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.lang-option.active {
    color: #FF9500 !important;
    font-weight: 600;
}

/* Анімація бургера */
.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }
}