.big-button{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 20px 40px;
    font-size: 25px;
    border-radius: 100px;
    margin: 20px auto;
}
.main-title{
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 100px !important;
}
.big-button svg{
    margin-left: 10px;
    transition: ease 0.3s;
    stroke: #fff !important;
}

.big-button:hover{
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.big-button:hover svg{
    stroke: #000 !important;
    rotate: 45deg;
}

nav.navbar{
    background: linear-gradient(
        90deg,
        #282828 0%,
        #2D5CC2 20%,
        #020408 40%,
        #000102 60%,
        #39528D 80%,
        #282828 100%
        ) !important;
}

.banner{
    padding: 100px 0px;
}

.video-container{
    padding: 50px 0px;
}

/* ===== VIDEO PLAYER COMPONENT ===== */
.video-player-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 6s ease-out;
    transform: scale(1);
    z-index: 1;
}

.video-player-wrapper:hover .video-thumbnail {
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* --- Floating Play Button --- */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.4s ease,
                background 0.3s ease,
                box-shadow 0.4s ease;
    box-shadow:
        0 0 0 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.video-play-btn svg {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    margin-left: 4px; /* optical centering for play icon */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 0 0 14px rgba(255, 255, 255, 0.08),
        0 0 0 28px rgba(255, 255, 255, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.5);
}

.video-play-btn:hover svg {
    transform: scale(1.08);
}

.video-play-btn:active {
    transform: translate(-50%, -50%) scale(0.96);
}

/* --- Shine / Reflection Sweep --- */
.play-btn-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.play-btn-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.45) 48%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.45) 52%,
        transparent 70%
    );
    animation: playBtnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes playBtnShine {
    0% {
        left: -60%;
    }
    40% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}

/* --- Pulse ring around button --- */
.video-play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: playBtnPulse 2.5s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes playBtnPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* --- Video element itself --- */
.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* --- Responsive --- */
@media only screen and (max-width: 768px) {
    .video-play-btn {
        width: 76px;
        height: 76px;
    }
    .video-play-btn svg {
        width: 36px;
        height: 36px;
    }
    .video-player-wrapper {
        border-radius: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    .video-play-btn svg {
        width: 28px;
        height: 28px;
    }
    .video-player-wrapper {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
}

.featured-img-container{
    position: relative;
}

.featured-img-container .big-button{
    position: absolute;
    bottom: 0px;
    right: 30px
}

.featured-events-section{
    padding: 100px 0px;
}

.featured-events-section h3{
    font-size: 40px;
}

.featured-events-section p{
    font-size: 25px;
    line-height: 25px;
}
.residents-section{
    position: relative;
    margin-top: 100px;
}
.residents-title{
    font-size: 40px;
    margin-bottom: 50px !important;
}

.dj-info-container{
    position: absolute;
    bottom: 50px;
    left: 0px;
    right: 0px;
}   

.dj-info-container h2{
    font-size: 80px;
    font-weight: bold;
}

.dj-info-container h4{
    font-size: 30px;
    line-height: 30px;
    text-decoration: underline;
}

.testimonial-container{
    background-color: #fff;
    border-radius: 40px 150px 40px 40px;
    color: #000 !important;
    overflow: hidden;
    padding: 20px;
}
.testimonial-container img{
    border-radius: 20px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
}

.textimonial-text{
    font-size: 1rem;
    line-height: 1.2rem;
}
.person-info{
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.person-info p{
    line-height: 1rem;
}

/* .swiper-button-next:after, .swiper-button-next:after{
    color: #fff !important;
} */

.swiper-slide-shadow-left{
    background-image: none !important;
}

.swiper-slide-shadow-right{
    background-image: none !important;
}

.special-text{
    font-family: 'Lunar Type', serif;
    font-weight: 400 !important;
    font-style: italic !important;
}

.client-experience-section h2{
    font-size: 40px;
    margin: 80px 0px;
    font-weight: 400;
}
.client-experience-section{
    padding: 100px 0px;
    margin-bottom: 200px;
}


footer .footer-title{
    font-size: 40px;
    margin-bottom: 250px;
    line-height: 50px !important;
    font-weight: 400;
}

footer{
    margin-top: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
}

footer .container{
    position: absolute;
    top: 0px;
    z-index: 10;
    left: 0px;
    right: 0px;
}

footer a.nav-link{
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}

.all-reserver-section p{
    font-size: 20px;
    margin: 10px 0px;
    color: #fff !important
}
.all-reserver-section p a{
    color: #fff !important;
}

.all-reserver-section a{
    color: grey;
    text-decoration: underline;
}


.featured-events-section .main-title{
    font-size: 40px;
    font-family: 'Benzin', sans-serif;
    font-weight: 400;
    margin-bottom: 50px !important;
}

.featured-events-section p{
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.featured-img-container .big-button{
    padding: 10px 20px;
    width: 250px;
}

.featured-events-section .big-button svg{
    width: 40px;
    height: 40px !important;
}

.custom-swiper-btn{
    background:transparent !important;
    border: 0px;
}

.custom-swiper-btn svg{
    width: 80px;
    height: 80px;
}
.swiper-nav-text{
    font-size: 30px;
}

/* Custom Featured Events Swiper Animations */
.featured-swiper {
    padding: 60px 0px !important;
    overflow: visible !important;
}
.featured-events-section{
    overflow: hidden !important;
}

.featured-swiper .swiper-wrapper {
    perspective: 1200px;
    perspective-origin: center;
}

.featured-swiper .swiper-slide {
    opacity: 0;
    transform: translateX(0) translateY(50px) scale(0.85) rotateX(15deg) rotateY(0deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: blur(3px) brightness(0.7);
}

.featured-swiper .swiper-slide-active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
    filter: blur(0px) brightness(1);
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.featured-swiper .swiper-slide-prev {
    opacity: 0.5;
    transform: translateX(-100px) translateY(30px) scale(0.88) rotateX(8deg) rotateY(15deg);
    filter: blur(2px) brightness(0.8);
    z-index: 5;
}

.featured-swiper .swiper-slide-next {
    opacity: 0.5;
    transform: translateX(100px) translateY(30px) scale(0.88) rotateX(8deg) rotateY(-15deg);
    filter: blur(2px) brightness(0.8);
    z-index: 5;
}

.featured-card {
    /* background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); */
    border-radius: 30px;
    border: 0px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.featured-swiper .swiper-slide-active .featured-card {
    /* background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%); */
    /* border: 1px solid rgba(255,255,255,0.2); */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}



.featured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.featured-card .featured-img-container img {
    transition: all 0.6s ease;
}

.featured-swiper .swiper-slide-active .featured-card .featured-img-container img {
    transform: scale(1.05);
}

@media only screen and (max-width: 1024px){
    
    footer .footer-title{
        margin-bottom: 150px;
        font-size: 30px !important;
    }
    .client-experience-section{
        margin-bottom: 100px;
    }
    .navbar-expand-lg .nav-link{
        font-size: 12px;
    }
    
    /* Featured Swiper Responsive */
    .featured-swiper {
        padding: 40px 0px !important;
    }
    
    .featured-swiper .swiper-slide {
        transform: translateX(0) translateY(20px) scale(0.95) rotateX(0deg) rotateY(0deg) !important;
    }
    
    .featured-swiper .swiper-slide-active {
        transform: translateX(0) translateY(0) scale(1) rotateX(0deg) rotateY(0deg) !important;
    }
    
    .featured-swiper .swiper-slide-prev,
    .featured-swiper .swiper-slide-next {
        transform: translateX(0) translateY(15px) scale(0.96) rotateX(0deg) rotateY(0deg) !important;
    }
    
    .featured-card {
        border-radius: 20px;
    }
}

@media only screen and (max-width: 768px){
    .big-button{
        font-size: 20px;
        padding: 10px 30px;
    }
    .client-experience-section{
        margin-bottom: 50px;
        padding: 50px 0px;
    }
    .residents-title{
        font-size: 30px;
    }
    .banner {
        padding: 100px 0px;
    }
    .featured-events-section .main-title{
        font-size: 30px;
    }
    .featured-events-section p{
        font-size: 16px;
        line-height: 18px;
    }
    .featured-events-section{
        padding: 50px 0px;
    }
    .residents-section{
        margin-top: 50px;
    }
    footer .footer-title{
        font-size: 30px !important;
        line-height: normal !important;
        margin-bottom: 60px;
    }
    footer {
        margin-top: 0px;
    }
    .bottom-title{
        /* margin-top: 40px; */
        font-size: 16px;
    }
    footer a.nav-link{
        font-size: 16px;
    }
    .all-reserver-section p{
        font-size: 16px;
    }

    body > footer > div > div:nth-child(1) > div > div:nth-child(1) > p{
        font-size: 14px;
    }

    .navbar-expand-lg .nav-link{
        font-size: 16px;
        padding: 5px 0px !important;
    }
    
    
}

@media only screen and (max-width: 480px){
    .dj-info-container h2{
        font-size: 40px;
    }
    .dj-info-container{
        bottom: unset;
        margin-top: 20px;
    }
    .dj-info-container h4{
        font-size: 20px;
    }
    .testimonial-container{
        padding: 10px;
    }
    .testimonial-container img{
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }
    .textimonial-text{
        font-size: 0.8rem;
        line-height: 1rem;
    }
    .person-info p{
        font-size: 0.8rem;
        line-height: 0.8rem;
    }
    footer .footer-title{
        font-size: 18px !important;
    }
    .footer-bg{
        height: 780px;
        object-fit: cover;
    }
    .banner{
        margin: 90px 0px;
    }
    .main-title{
        font-size: 30px;
    }
    .video-container{
        height: 80vh;
        padding: 0px;
    }
    .featured-events-section{
        height: auto;
        padding: 0px;
    }
    .residents-section{
        height: 80vh;
        padding: 0px;
    }
    .client-experience-section{
        height: 70vh;
        padding: 0px;
        margin: 0px;
    }
    footer ul li{
        margin: 8px 0px;
    }
    .all-reserver-section p{
        font-size: 14px;
    }
    
    /* Featured Swiper Mobile */
    .featured-swiper {
        padding: 20px 0px !important;
        overflow: hidden !important;
    }
    
    .featured-swiper .swiper-slide {
        opacity: 0.3;
        transform: translateY(20px) scale(0.95) rotateX(0deg) rotateY(0deg) !important;
        filter: blur(1px) brightness(0.8);
    }
    
    .featured-swiper .swiper-slide-active {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg) !important;
        filter: blur(0px) brightness(1);
    }
    
    .featured-swiper .swiper-slide-prev,
    .featured-swiper .swiper-slide-next {
        opacity: 0.3;
        transform: translateY(15px) scale(0.95) rotateX(0deg) rotateY(0deg) !important;
        filter: blur(1px) brightness(0.8);
    }
    
    .featured-card {
        border-radius: 15px;
    }
    
    .custom-swiper-btn svg {
        width: 50px;
        height: 50px;
    }
    
    .swiper-nav-text {
        font-size: 20px;
    }
}

/* Pagination Styles */
#pagination-container {
    margin: 40px 0;
}

#pagination-container .pagination {
    gap: 8px;
}

#pagination-container .page-item {
    margin: 0;
}

#pagination-container .page-link {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

#pagination-container button.page-link {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

#pagination-container button.page-link:focus {
    outline: none;
    box-shadow: none;
}

#pagination-container .page-link:hover:not(:disabled) {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

#pagination-container .page-item.active .page-link {
    background-color: #6666cc;
    border-color: #6666cc;
    color: #fff;
    cursor: default;
}

#pagination-container .page-item.disabled .page-link,
#pagination-container .page-item.disabled span,
#pagination-container button.page-link:disabled {
    background-color: transparent;
    border-color: #555;
    color: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

#pagination-container .page-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    #pagination-container .pagination {
        gap: 4px;
    }
    
    #pagination-container .page-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ===== RESIDENTS SWIPER STYLES ===== */
.residents-swiper {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.residents-swiper .swiper-slide {
    overflow: hidden;
}

.resident-slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.resident-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 15s ease-out infinite alternate;
    transform-origin: center center;
}

.resident-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.residents-swiper .dj-info-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out forwards;
}

.dj-genre-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6666cc 0%, #9966ff 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0;
    box-shadow: 0 4px 20px rgba(102, 102, 204, 0.4);
}

.setlist-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.setlist-link:hover {
    transform: translateY(-3px);
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.setlist-link h4 {
    position: relative;
    display: inline-block;
}

.setlist-link h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.setlist-link:hover h4::after {
    transform: scaleX(1);
}

.dj-social-link {
    display: inline-block;
    margin: 0 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
}

.dj-social-link:hover {
    transform: translateY(-5px) scale(1.15);
    opacity: 1;
}

.dj-social-link:hover svg {
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4));
}

.residents-pagination {
    position: absolute !important;
    bottom: 30px !important;
    z-index: 20;
}

.residents-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.residents-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.residents-nav {
    position: relative;
    z-index: 20;
    margin-top: 20px !important;
}

/* Animations */
@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.15) translateX(-2%);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 102, 204, 0.6);
    }
}

/* Swiper Creative Effect Enhancements */
.residents-swiper .swiper-slide-shadow-left,
.residents-swiper .swiper-slide-shadow-right {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent) !important;
}

/* Responsive Residents Swiper */
@media only screen and (max-width: 1024px) {
    .residents-swiper {
        height: 70vh;
        min-height: 500px;
    }
    
    .residents-swiper .dj-info-container h2 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .residents-swiper {
        height: 60vh;
        min-height: 450px;
    }
    
    .residents-swiper .dj-info-container {
        bottom: 60px;
    }
    
    .residents-swiper .dj-info-container h2 {
        font-size: 45px;
    }
    
    .dj-genre-badge {
        font-size: 12px;
        padding: 6px 18px;
    }
    
    .dj-social-link {
        margin: 0 8px;
    }
    
    .dj-social-link svg {
        width: 32px;
        height: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .residents-swiper {
        /* height: auto; */
        min-height: 400px;
    }
    
    .residents-swiper .dj-info-container {
        bottom: 40px;
    }
    
    .residents-swiper .dj-info-container h2 {
        font-size: 32px;
    }
    
    .residents-swiper .dj-info-container h4 {
        font-size: 16px;
    }
    
    .dj-genre-badge {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }
    
    .dj-social-link {
        margin: 0 6px;
    }
    
    .dj-social-link svg {
        width: 28px;
        height: 28px;
    }
    
    .residents-nav .custom-swiper-btn svg {
        width: 40px;
        height: 40px;
    }
    
    .residents-nav .swiper-nav-text {
        font-size: 16px;
    }
}