/* 
    Premium Event Listing Page Styles
    Luxury Event Management Brand
*/

:root {
    --luxury-gold: #b22222;
    --luxury-gold-glow: #b222226e;
    --luxury-amber: #dd1919;
    --matte-black: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

#latest-releases {
    background: var(--matte-black) !important;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Lights Animation */
.bg-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-light 20s infinite alternate;
}

@keyframes float-light {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

/* Section Heading */
.section-title-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-premium span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title-premium h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title-premium h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

/* Card Redesign - Stacked Layout */
.premium-event-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Remove the absolute overlay gradient */
.premium-event-card::before {
    display: none;
}

.premium-event-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Image Presentation - Top Section */
.event-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.event-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-event-card:hover .event-image-box img {
    transform: scale(1.08);
}

/* Content Area - Bottom Section */
.event-content-box {
    position: relative;
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.event-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--luxury-gold);
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
}

.event-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.premium-event-card:hover .event-title {
    color: var(--luxury-gold);
}

.event-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

/* CTA Button Styling */
.event-cta-wrapper {
    margin-top: auto;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--luxury-gold);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.event-cta:hover {
    background: var(--luxury-gold);
    color: #000;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px var(--luxury-gold-glow);
    transform: scale(1.05);
}

.event-cta i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.event-cta:hover i {
    transform: translateX(4px);
}

/* Shimmer Effect for Card */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    z-index: 5;
    pointer-events: none;
}

.premium-event-card:hover .shimmer-effect {
    animation: shimmer-swipe 1.5s ease-in-out;
}

@keyframes shimmer-swipe {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .event-title {
        font-size: 20px;
    }

    .event-content-box {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .premium-event-card {
        margin-bottom: 20px;
    }
}

/* Booking Section Styling */
#booking-section {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/* Ambient Bokeh Lights */
.booking-bg-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bokeh-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: pulse-light 15s infinite alternate;
}

@keyframes pulse-light {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.05;
    }

    100% {
        transform: scale(1.3) translate(50px, 30px);
        opacity: 0.15;
    }
}

.booking-title-area {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.booking-title-area span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-title-area h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.booking-title-area p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* Luxury Form Container */
.luxury-booking-form-wrap {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.luxury-booking-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--luxury-gold-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

/* Form Fields */
.premium-form-group {
    margin-bottom: 30px;
}

.premium-form-label {
    display: block;
    color: var(--luxury-gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    color: #fff;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
}

.premium-select option {
    background: #111;
    color: #fff;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.premium-textarea {
    resize: none;
    height: 140px;
}

/* Luxury Submit Button */
.submit-btn-premium {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b3351d 100%);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.submit-btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.submit-btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn-premium:hover::after {
    left: 100%;
}

/* Responsive Form */
@media (max-width: 991px) {
    .luxury-booking-form-wrap {
        padding: 40px;
    }

    .booking-title-area h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    #booking-section {
        padding: 80px 0;
    }

    .luxury-booking-form-wrap {
        padding: 30px 20px;
        border-radius: 30px;
    }
}


/* Hero Section */
        .event-hero-section {
            height: 80vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .event-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .event-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
        }

        .event-hero-title {
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .event-hero-meta {
            font-size: 20px;
            font-weight: 500;
            display: flex;
            gap: 30px;
            justify-content: center;
            opacity: 0.9;
        }

        .event-hero-meta span i {
            color: #b22222;
            margin-right: 8px;
        }

        /* Breadcrumb Override */
        .breadcrumb-item + .breadcrumb-item::before {
            content: var(--bs-breadcrumb-divider, ">");
            color: #fff;
        }
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.7);
        }
        .breadcrumb-item.active {
            color: #b22222;
        }