/* Entertainment Section Styles */
.de-team-list {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    height: 600px;
}

.team-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-desc-wrapper {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    transition: transform 0.3s ease;
}

.team-desc {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: white;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.de-team-list:hover .team-desc-wrapper {
    transform: translateY(-100%);
}

.team-desc h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
}

.team-desc .lead {
    color: #17a2b8;
    font-size: 1.1em;
    margin-bottom: 8px;
    position: relative;
    z-index: 3;
}

.team-desc p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.small-border {
    width: 40px;
    height: 2px;
    background: #17a2b8;
    margin: 8px 0;
    position: relative;
    z-index: 3;
}

.social {
    position: relative;
    z-index: 3;
}

.social a {
    color: white;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.social a:hover {
    color: #17a2b8;
}

/* Mobile touch functionality */
@media (max-width: 768px) {
    .de-team-list {
        height: 450px;
        cursor: pointer;
        margin-bottom: 0;
    }

    .team-desc {
        padding: 20px;
    }

    .de-team-list.active .team-desc-wrapper {
        transform: translateY(-100%);
    }

    .team-desc h3 {
        font-size: 1.2em;
    }

    .team-desc .lead {
        font-size: 1em;
    }

    .team-desc p {
        font-size: 0.9em;
    }
    
    /* Bootstrap Carousel Customization */
    #entertainmentCarousel {
        margin-bottom: 30px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    #entertainmentCarousel .carousel-inner {
        border-radius: 15px;
    }
    
    #entertainmentCarousel .carousel-item {
        padding: 15px;
    }
    
    #entertainmentCarousel .carousel-indicators {
        bottom: -30px;
    }
    
    #entertainmentCarousel .carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    #entertainmentCarousel .carousel-indicators li.active {
        background-color: #17a2b8;
        transform: scale(1.2);
    }
    
    #entertainmentCarousel .carousel-control-prev,
    #entertainmentCarousel .carousel-control-next {
        width: 10%;
        opacity: 0.7;
    }
    
    #entertainmentCarousel .carousel-control-prev-icon,
    #entertainmentCarousel .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        padding: 10px;
    }
    
    /* Swipe hint */
    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 10px;
        font-size: 0.9em;
        margin-bottom: 15px;
        opacity: 0.8;
    }
    
    .swipe-hint i {
        margin-left: 5px;
        animation: swipeHint 2s infinite;
    }
    
    @keyframes swipeHint {
        0% {transform: translateX(0);}
        25% {transform: translateX(10px);}
        50% {transform: translateX(0);}
        75% {transform: translateX(10px);}
        100% {transform: translateX(0);}
    }
} 