/* style.css */

/* Общие настройки */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Заголовки секций */
section h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* Карточки услуг и отзывов */
.card {
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Иконки в карточках услуг */
.card .fs-1 {
    color: #0d6efd;
}

/* Стили для блока "Не нашли что искали?" */
#extra .bg-light {
    background: linear-gradient(145deg, #ffffff, #f1f3f5) !important;
    border: 1px solid #dee2e6;
}

/* Аватарки в отзывах */
.rounded-circle {
    object-fit: cover;
    border: 2px solid #0d6efd;
    padding: 2px;
}

/* Кнопки транскрипции */
.btn-outline-secondary {
    border-width: 1px;
}

/* Адаптивность для маленьких экранов */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    #about .col-lg-4 {
        margin-bottom: 1.5rem;
    }
}

/* Дополнительно: стили для аудио плеера */
audio {
    border-radius: 30px;
    background-color: #f1f3f5;
}

/* Стили для ссылок контактов */
.btn-outline-primary i, .btn-outline-success i, .btn-outline-secondary i, .btn-outline-dark i {
    margin-right: 5px;
}