/* Events & Gallery Section - Enhanced with Photos */

.events-gallery-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #111 50%, #0c0c0c 100%);
    overflow: hidden;
}

/* Background Elements */
.events-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.light-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 77, 229, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: floatDots 20s linear infinite;
}

@keyframes floatDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.event-glow-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 77, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowFloat 8s ease-in-out infinite alternate;
}

.event-glow-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Section Header */
.section-header-pro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 77, 229, 0.1);
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 77, 229, 0.3);
    margin-bottom: 25px;
}

.section-badge i {
    color: #ff4de5;
    font-size: 1.1rem;
}

.section-badge span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title-pro {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
}

.title-line-1 {
    color: #aaa;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title-line-2 {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.title-line-3 {
    color: white;
    font-size: 2.2rem;
}

.section-subtitle-pro {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Categories Grid */
.events-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.event-category-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.event-category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Category Image */
.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-category-card:hover .category-photo {
    transform: scale(1.05);
}

.image-overlay-category {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.9));
    pointer-events: none;
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 77, 229, 0.3);
    backdrop-filter: blur(10px);
}

.category-badge i {
    color: #ff4de5;
}

/* Category Content */
.category-content {
    padding: 30px;
}

.category-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.category-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.point-with-photo {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 77, 229, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff4de5;
    font-size: 1.1rem;
}

.point-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.point-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Category Stats */
.category-stats {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateY(-3px);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4de5;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: #aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Venue Marketing Section */
.venue-marketing-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.venue-header {
    text-align: center;
    margin-bottom: 40px;
}

.venue-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.venue-title i {
    color: #ff4de5;
}

.venue-subtitle {
    color: #aaa;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Venue Content Grid */
.venue-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Venue Gallery */
.gallery-header {
    margin-bottom: 30px;
}

.gallery-header h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gallery-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.venue-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.venue-photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.venue-photo-card:hover {
    transform: translateY(-5px);
}

.venue-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-photo-card:hover .venue-photo {
    transform: scale(1.1);
}

.venue-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    padding: 15px;
}

.venue-name {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.venue-type {
    color: #ff4de5;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Marketing Services */
.marketing-header {
    margin-bottom: 30px;
}

.marketing-header h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.marketing-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.marketing-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marketing-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.marketing-point:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateX(5px);
}

.marketing-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(255, 77, 229, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a2be2;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.marketing-content h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.marketing-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.marketing-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(138, 43, 226, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.marketing-note i {
    color: #8a2be2;
    font-size: 1.2rem;
    margin-top: 2px;
}

.marketing-note p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Booking Process */
.booking-process-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.booking-title {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.booking-title i {
    color: #ff4de5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 229, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 77, 229, 0.2);
    margin-bottom: 15px;
    line-height: 1;
}

.step-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.step-icon {
    margin-top: 15px;
    color: #ff4de5;
    font-size: 1.5rem;
}

/* CTA Section */
.events-cta {
    background: linear-gradient(135deg, rgba(255, 77, 229, 0.05), rgba(138, 43, 226, 0.05));
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 77, 229, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-event, .btn-secondary-event {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-primary-event {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 77, 229, 0.2);
}

.btn-primary-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 77, 229, 0.3);
}

.btn-secondary-event {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-event:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 77, 229, 0.5);
    transform: translateY(-5px);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #8a2be2;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-note i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .events-categories-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .venue-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venue-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-pro {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .events-gallery-section {
        padding: 80px 0;
    }
    
    .section-title-pro {
        font-size: 2.2rem;
    }
    
    .title-line-3 {
        font-size: 1.7rem;
    }
    
    .events-cta {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-event, .btn-secondary-event {
        width: 100%;
        max-width: 300px;
    }
    
    .venue-marketing-section {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .venue-photos-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .events-cta {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}