@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Общие стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fd8438, #c70039);
    color: white;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
    /*overflow: hidden;*/
}

/* Заголовок */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%; /* Уменьшено с 20px */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    height: 60px; /* Ограничиваем высоту */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px; /* Уменьшено с 50px */
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg);
}

.site-title {
    font-size: 1.5rem; /* Уменьшено с 2rem */
    font-weight: bold;
    color: white;
    text-shadow: 0px 2px 8px rgba(255, 255, 255, 0.7);
}

/* Навигация */
.navigation {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    font-size: 1rem;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #fd8438;
    transform: scale(1.1);
}


/* Стили для заблокированных пунктов */
.nav-link.disabled {
    cursor: not-allowed; /* Блокируем курсор */
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5); /* Бледный цвет */
    pointer-events: none; /* Отключаем взаимодействие */
    position: relative;
}

.nav-link.disabled:hover {
    background: rgba(255, 255, 255, 0.1); /* Без эффекта при наведении */
    transform: none; /* Убираем увеличение */
}

/* Добавим лёгкую анимацию на блок */
.nav-link.disabled::after {
    content: "🚧"; /* Добавляем иконку или символ */
    position: absolute;
    right: -20px;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}





/* Социальные кнопки */
.social-buttons {
    display: flex;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button:hover {
    background: #fd8438;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 132, 56, 0.6);
}

/* Видео на фоне */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Основная секция */
.description-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    min-height: 75vh;
}

.text-container {
    max-width: 50%;
}

.text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.5);
}

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.3);
}

/* Информационный блок */
.info-section {
    padding: 60px 10%;
    background: linear-gradient(135deg, #000, #fd8438);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.info-text {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: left;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.info-banner {
    flex: 1 1 500px;
    text-align: center;
}

.info-banner img {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.5s ease-out;
}

/* Чат */
.chat-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 10%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 40px auto;
    max-width: 800px;
}

.chat-header h2 {
    font-size: 2rem;
    text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.6);
}

.chat-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.chat-window {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow-y: auto;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Сообщения */
.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message.user {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.message.ai {
    background: rgba(72, 199, 116, 0.2);
    color: #fff;
}

.tag {
    background: #555;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
}

/* Ввод */
.chat-input {
    display: flex;
    gap: 10px;
    width: 100%;
}

.chat-input input {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.chat-input button {
    padding: 10px 20px;
    border-radius: 10px;
    background: #fd8438;
    color: white;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

/* Галерея */
.gallery-section {
    height: 100vh; /* Высота экрана */
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.9); /* Тёмный фон галереи */
    color: white;
    position: relative;
    overflow: hidden; /* Обрезаем лишний контент */
}

.gallery-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.gallery-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    height: 80vh; /* Фиксированная высота галереи */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden; /* Убираем лишний контент */
}

.gallery-card img {
    max-width: 100%;
    max-height: 60%; /* Ограничиваем высоту изображения */
    object-fit: contain; /* Сохраняем пропорции */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.gallery-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-card p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    padding: 10px;
    overflow: hidden;
}

.gallery-btn {
    padding: 15px 25px;
    background: #fd8438;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-btn:hover {
    background: #ff5733;
    transform: scale(1.1);
}




/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 15px;
    color: white;
    font-size: 0.9rem;
}

.site-footer a {
    color: #fd8438;
    text-decoration: none;
    font-weight: bold;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Анимация */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
