/* app/static/css/chess.css */
body{
background-image: url('../media/chess/background-chess.png');
}

/* --- СТИЛИ ДЛЯ БЛОКА ПРЕПОДАВАТЕЛЕЙ --- */
.teacher-card {
    background-color: white;
    border: 3px solid black;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 0px var(--accent-color, black);
}
.teacher-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color, #0d6efd);
    margin-left: auto;
    margin-right: auto;
}

/* --- СТИЛИ ДЛЯ КАРУСЕЛИ ОТЗЫВОВ --- */
#testimonialsCarousel .testimonial-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}
#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

/* --- СТИЛИ ДЛЯ БЛОКА ОБРАТНОЙ СВЯЗИ --- */
.contact-card {
    background-color: white;
    border: 3px solid black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.contact-card i {
    color: var(--accent-color);
}