/* ===== ENTERTAINMENT SECTION ===== */

.entertainment-section {
    padding: 120px 20px;
    background: #0f0f0f;
    color: #fff;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}


/* ===== CARD ===== */

.ent-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all .4s ease;
    position: relative;
}

.ent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}


/* ===== IMAGE SLIDER ===== */

.ent-slider {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.ent-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.ent-slider img.active {
    opacity: 1;
    transform: scale(1.02);
}


/* cinematic gradient */

.ent-slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}


/* ===== CONTENT ===== */

.ent-content {
    padding: 28px;
}

.ent-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.ent-content p {
    color: #cfcfcf;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 18px;
}


/* ===== BUTTON ===== */

.ent-btn {
    background: linear-gradient(135deg, var(--primary-green), #3a7a34);
    border: none;
    padding: 10px 26px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: .4px;
    transition: all .3s ease;
}

.ent-btn:hover {
    background: linear-gradient(135deg, var(--gold), #ffcf40);
    transform: translateY(-2px);
}


/* ===== TITLES ===== */

.section-title {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 12px;
    color: white;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    color: #aaa;
    line-height: 1.7;
}


/*Derails section*/

.ent-details {
    padding: 100px 20px;
    background: #f9f9f9;
}

.ent-detail-block {
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
    text-align: center;
}

.ent-detail-block h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.ent-detail-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}


/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 992px) {
    .entertainment-section {
        padding: 100px 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }
    .entertainment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .ent-slider {
        height: 300px;
    }
}


/* ===== TABLET SMALL ===== */

@media (max-width:768px) {
    .entertainment-section {
        padding: 80px 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }
    .entertainment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ent-card {
        border-radius: 14px;
    }
    .ent-slider {
        height: 260px;
    }
    .ent-content {
        padding: 22px;
    }
    .ent-content h3 {
        font-size: 1.3rem;
    }
    .ent-content p {
        font-size: 0.9rem;
    }
    .ent-btn {
        padding: 9px 22px;
        font-size: 0.9rem;
    }
}


/* ===== SMALL MOBILE ===== */

@media (max-width:480px) {
    .entertainment-section {
        padding: 70px 18px;
    }
    .section-title {
        font-size: 1.7rem;
        padding-top: 5%;
    }
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 35px;
    }
    .ent-slider {
        height: 220px;
    }
    .ent-content {
        padding: 20px;
    }
    .ent-content h3 {
        font-size: 1.2rem;
    }
    .ent-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .ent-btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: 0.85rem;
    }
}


/* ===== DETAILS SECTION MOBILE ===== */

@media (max-width:768px) {
    .ent-details {
        padding: 80px 20px;
    }
    .ent-detail-block {
        margin-bottom: 60px;
    }
    .ent-detail-block h2 {
        font-size: 1.7rem;
    }
    .ent-detail-block p {
        font-size: 0.95rem;
    }
}

@media (max-width:480px) {
    .ent-detail-block h2 {
        font-size: 1.5rem;
    }
    .ent-detail-block p {
        font-size: 0.9rem;
    }
}