/* Стили для раздела с пленками */
.films-section {
    margin: 40px 0;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 5px;
}

.films-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.films-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.film-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.film-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.film-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.film-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.film-card:hover .film-image img {
    transform: scale(1.05);
}

.film-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.film-content {
    padding: 20px;
}

.film-content h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #333;
}

.film-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.film-features li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.film-features i {
    color: green;
    margin-right: 8px;
    font-size: 16px;
}

.film-price {
    font-size: 24px;
    font-weight: bold;
    color: green;
    margin: 20px 0;
    text-align: center;
}

.film-buttons {
    display: flex;
    flex-direction: column; /* Кнопки в столбик на мобильных */
    gap: 10px; /* Отступ между кнопками */
    margin-top: 15px;
}

.film-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.film-button i {
    margin-right: 5px;
    font-size: 16px;
}

.film-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background-color: #25D366;
}

.telegram-btn {
    background-color: #0088cc;
}

/* Увеличиваем карточки на мобильных */
@media (max-width: 768px) {
    .film-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px; /* Добавляем отступ между карточками */
    }

    /* Увеличиваем область с контентом */
    .film-content {
        padding: 25px;
    }

    /* Делаем кнопки крупнее */
    .film-button {
        padding: 15px;
        font-size: 16px;
        margin: 5px 0;
    }

    /* Увеличиваем изображение */
    .film-image {
        height: 250px; /* Было 200px */
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .film-image {
        height: 200px;
    }
    
    .film-button {
        padding: 12px;
        font-size: 14px;
    }
}