/* Общие стили для всего сайта */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Ink Free';
    src: url('../fonts/ink-free.woff2') format('woff2'),
         url('../fonts/ink-free.woff') format('woff'),
         url('../fonts/ink-free.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Рекомендуется использовать swap */
}

h1, h2, h3 {
    font-family: 'NeonFont', sans-serif;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff;
    color: #fff;
}

h4 {
    font-family: 'Ink Free', serif, sans-serif; /* Ink Free, serif, затем sans-serif */
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff;
    color: #fff;
}

a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Контейнер для страниц */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
    box-sizing: border-box;
}

/*Неоновый шрифт (подключите свой)*/
@font-face {
    font-family: 'NeonFont';
    src: url('fonts/NeonFont.woff2') format('woff2'),
         url('fonts/NeonFont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Шапка */
header {
    background-color: #000000;
    color: #00ffff;
    padding: 1em 0;
    display: flex;
    justify-content: center; /* Центрируем элементы по горизонтали */
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.logo img {
    max-height: 100px;
    margin-right: 43em; /* Добавляем отступ справа для логотипа */
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

nav li {
    margin: 0 1em;
}

nav a {
    color: #00ffff;
    text-decoration: none;
}

nav a:hover {
    color: #abffff;
}

/* Медиа-запрос для экранов меньше 768px (мобильные устройства) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 0.5em 0;
    }

    .logo img {
        max-height: 80px;
        margin: 0.5em 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 0.5em 0;
    }

    nav a {
        font-size: 1.2em;
    }

    h1 {
      font-size: 2.5em;
    }

    h2 {
      font-size: 2em;
    }

    h3 {
      font-size: 1.5em;
    }
}


.faq {
    margin: 20px;
    color: white; /* Изменяем цвет текста на белый, чтобы было видно на черном фоне */
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Сетка для двух колонок */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Отступы между элементами */
}

/* Адаптивность сетки */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Одна колонка на мобильных */
    }
}

.faq-item {
    position: relative;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #333; /* Темно-серый фон */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); /* Светящаяся граница */
}

.faq-question {
    background-color: transparent; /* Прозрачный фон для кнопки */
    color: #fff;
    padding: 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    position: relative;
    font-weight: bold;
    font-size: 1.1em;
    min-height: 60px;
    box-sizing: border-box;
    z-index: 1;
}

.faq-question::after {
    content: "\25B8";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.faq-answer {
    padding: 15px;
    background-color: #222; /* Более темный фон для ответа */
    display: none;
    border-top: 1px solid #444; /* Более темная граница между вопросом и ответом */
}

.faq-item.active .faq-answer {
    display: block;
    background-color: rgba(0, 255, 255, 0.2); /* Голубая подсветка при открытом ответе */
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

/* Убираем подсветку при наведении */
/*Убрана подсветка для .faq-question:hover::before*/

/* Псевдоэлемент для светящейся границы (вместо обычной) */
.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Изначально прозрачный */
    z-index: 0;
}

body {
    font-family: Arial, sans-serif;
}

.photo-reports {
    text-align: center;
    margin: 20px;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery {
    display: flex;
    overflow-x: hidden;
    width: 300px; /* Задайте ширину контейнера */
}

.photo-item {
    min-width: 700px; /* Задайте ширину отдельных элементов */
    transition: transform 0.5s ease;
}

.arrow {
    background-color: #00ffff;
    border: none;
    border-radius: 50%;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-arrow {
    left: 40px; /* Расстояние от края контейнера */
}

.right-arrow {
    right: 40px; /* Расстояние от края контейнера */
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    color: white;
    margin: 0 auto;
    padding: 50px;
}

.footer-text {
    text-align: center;
    flex-grow: 1;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    color: #00ffff; /* Цвет иконок */
    text-decoration: none; /* Убираем подчеркивание */
}

.social-icons a:hover {
    color: #ccc; /* Цвет при наведении */
}
