/* Events Page Specific Styles - All Styles Consolidated */

/* Events Hero Section */
.events-hero-section {
    background: #000000;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    display: flex;
    align-items: center;
}

.events-hero-section .container {
    position: relative;
    z-index: 2;
}

.events-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.events-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.events-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Events Timeline Styles - Modern & Professional */

.events-timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.events-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(212, 175, 55, 0.6) 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    border-radius: 2px;
    z-index: 0;
}

.timeline-year {
    position: relative;
    margin-bottom: 90px;
    z-index: 1;
}

.timeline-year:last-child {
    margin-bottom: 0;
}

.year-marker {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    padding: 16px 50px;
    border-radius: 60px;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.event-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* Alternating Layout - ODD years: Image LEFT, Content RIGHT */
.timeline-year:nth-child(odd) .event-card {
    /* Default: Left image, Right content */
}

/* Alternating Layout - EVEN years: Image RIGHT, Content LEFT */
.timeline-year:nth-child(even) .event-card {
    direction: rtl;
}

.timeline-year:nth-child(even) .event-card > * {
    direction: ltr;
}

/* Image Wrapper with Slider - Modern Design */
.event-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.event-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Image Slider */
.event-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
}

/* Slider Navigation - Enhanced */
.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 15;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 18px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.3);
    cursor: pointer;
    pointer-events: auto;
    border: none;
    position: relative;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.slider-dot.active {
    background: linear-gradient(135deg, #d4af37 0%, #c49a2e 100%);
    width: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a1a1a;
    z-index: 15;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

/* Single Image (no slider) - Consistent Heights */
.event-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
}

/* Coming Soon Card - Modern Premium Design */
.coming-soon-full-card {
    grid-template-columns: 1fr !important;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: 40px 0;
    border-radius: 24px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    min-height: auto;
    max-height: none;
}

.coming-soon-full-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

.coming-soon-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #c49a2e 50%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 48px;
    color: white;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        0 8px 25px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.coming-soon-heading {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    line-height: 1.15;
    font-family: 'Montserrat', sans-serif;
}

.coming-soon-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    letter-spacing: 0.3px;
}

.coming-soon-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #c49a2e 50%, #b8941f 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.4),
        0 5px 15px rgba(212, 175, 55, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-cta i {
    font-size: 22px;
}

/* Content Wrapper - Professional Design */
.event-content-wrapper {
    padding: 30px 30px;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%); */
    border-radius: 0;
    position: relative;
    min-height: 350px;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    box-shadow: none;
    /* border-right: 1px solid rgba(212, 175, 55, 0.1); */
    backdrop-filter: blur(10px);
}

/* .event-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, 
        #d4af37 0%, 
        #c49a2e 50%, 
        #d4af37 100%);
    border-radius: 0 6px 6px 0;
    opacity: 0.8;
} */

.event-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #d4af37;
    font-size: 28px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
    visibility: visible;
    overflow: visible;
}

.event-icon i {
    font-size: 1em;
    line-height: 1;
    display: block;
    color: inherit;
    font-style: normal;
}

.event-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

.event-description {
    font-size: 16px;
    color: #57606a;
    line-height: 1.65;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.event-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-radius: 12px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    align-self: flex-start;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-location i {
    font-size: 15px;
    opacity: 0.85;
}

/* Hero Section Responsive Styles */
@media (max-width: 991px) {
    .events-hero-section {
        padding: 150px 0 80px;
    }

    .events-hero-title {
        font-size: 3.5rem;
    }

    .events-hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .events-hero-section {
        padding: 130px 0 60px;
    }

    .events-hero-title {
        font-size: 2.8rem;
    }

    .events-hero-description {
        font-size: 1rem;
    }

    .events-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .events-hero-section {
        padding: 120px 0 60px;
    }

    .events-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .events-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .events-hero-badge {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
    }
}

/* Tablet Responsive - Modern Adjustments */
@media (max-width: 991px) {
    .timeline-container {
        padding: 0 35px;
    }

    .event-card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: 20px;
    }

    .event-image-wrapper {
        min-height: 320px;
        max-height: 320px;
    }

    .event-image-wrapper img,
    .slider-slide img {
        min-height: 320px;
        max-height: 320px;
    }

    .event-content-wrapper {
        padding: 30px 30px;
        min-height: 320px;
        max-height: 320px;
    }

    .event-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .event-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .event-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .event-location {
        padding: 10px 20px;
        font-size: 13px;
    }

    .year-badge {
        font-size: 28px;
        padding: 14px 40px;
    }

    .events-grid {
        gap: 55px;
    }

    .timeline-year {
        margin-bottom: 85px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Coming Soon Card Tablet */
    .coming-soon-full-card {
        padding: 35px 0;
        min-height: auto;
        max-height: none;
        border-radius: 20px;
    }

    .coming-soon-inner {
        padding: 55px 45px;
    }

    .coming-soon-badge {
        font-size: 12px;
        padding: 8px 24px;
        margin-bottom: 25px;
    }

    .coming-soon-icon-large {
        width: 85px;
        height: 85px;
        font-size: 42px;
        margin-bottom: 30px;
    }

    .coming-soon-heading {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .coming-soon-text {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .coming-soon-cta {
        padding: 16px 40px;
        font-size: 15px;
    }
}

/* Mobile Responsive - Enhanced */
@media (max-width: 768px) {
    .events-timeline-section {
        padding: 60px 0;
    }

    .timeline-container {
        padding: 0 20px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-year {
        margin-bottom: 50px;
    }

    .year-marker {
        margin-bottom: 35px;
    }

    .year-badge {
        font-size: 22px;
        padding: 10px 30px;
        letter-spacing: 1px;
    }

    .event-card,
    .timeline-year:nth-child(even) .event-card {
        grid-template-columns: 1fr;
        gap: 0;
        direction: ltr;
        border-radius: 16px;
        margin-bottom: 0;
    }

    .event-image-wrapper {
        min-height: 220px;
        max-height: 220px;
        order: 1;
        border-radius: 16px 16px 0 0;
    }

    .event-image-wrapper img,
    .slider-slide img {
        min-height: 220px;
        max-height: 220px;
        border-radius: 16px 16px 0 0;
    }

    .event-content-wrapper {
        padding: 25px 20px;
        min-height: auto;
        max-height: none;
        border-right: none;
        border-bottom: none;
        order: 2;
        border-radius: 0 0 16px 16px;
    }

    .event-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .event-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .event-description {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .event-location {
        font-size: 12px;
        padding: 8px 16px;
    }

    .events-grid {
        gap: 35px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .slider-arrow.prev {
        left: 12px;
    }

    .slider-arrow.next {
        right: 12px;
    }

    .slider-nav {
        padding: 7px 12px;
    }

    .slider-dot {
        width: 5px;
        height: 5px;
    }

    .slider-dot.active {
        width: 20px;
    }

    /* Coming Soon Card Mobile */
    .coming-soon-full-card {
        padding: 30px 0;
        border-radius: 18px;
    }

    .coming-soon-inner {
        padding: 50px 35px;
    }

    .coming-soon-badge {
        font-size: 11px;
        padding: 8px 22px;
        margin-bottom: 22px;
        letter-spacing: 2px;
    }

    .coming-soon-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 28px;
    }

    .coming-soon-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .coming-soon-text {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .coming-soon-cta {
        padding: 16px 38px;
        font-size: 15px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .events-timeline-section {
        padding: 50px 0;
    }

    .timeline-container {
        padding: 0 15px;
    }

    .timeline-year {
        margin-bottom: 40px;
    }

    .year-marker {
        margin-bottom: 25px;
    }

    .year-badge {
        font-size: 18px;
        padding: 8px 24px;
        letter-spacing: 0.5px;
    }

    .event-card {
        gap: 0;
        border-radius: 14px;
        margin-bottom: 0;
    }

    .event-image-wrapper {
        min-height: 200px;
        max-height: 200px;
        border-radius: 14px 14px 0 0;
    }

    .event-image-wrapper img,
    .slider-slide img {
        min-height: 200px;
        max-height: 200px;
        border-radius: 14px 14px 0 0;
    }

    .event-content-wrapper {
        padding: 20px 16px;
        border-radius: 0 0 14px 14px;
    }

    .event-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 14px;
        border-radius: 10px;
    }

    .event-title {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .event-description {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .event-location {
        font-size: 11px;
        padding: 6px 14px;
    }

    .events-grid {
        gap: 30px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    .slider-nav {
        bottom: 12px;
        padding: 6px 12px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

    .slider-dot.active {
        width: 24px;
    }
}

/* CTA Section Mobile Enhancements */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-buttons .btn {
        padding: 14px 32px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* Additional Mobile Timeline Enhancements */
@media (max-width: 768px) {
    .timeline-year .events-grid {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .timeline-year .events-grid {
        padding: 0 5px;
    }

    .events-timeline-section::before {
        opacity: 0.3;
    }
}

    /* Coming Soon Card Small Mobile */
    .coming-soon-full-card {
        padding: 25px 0;
        border-radius: 16px;
    }

    .coming-soon-inner {
        padding: 45px 30px;
    }

    .coming-soon-badge {
        font-size: 10px;
        padding: 7px 20px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .coming-soon-icon-large {
        width: 75px;
        height: 75px;
        font-size: 37px;
        margin-bottom: 25px;
    }

    .coming-soon-heading {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .coming-soon-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .coming-soon-cta {
        padding: 15px 35px;
        font-size: 14px;
        gap: 10px;
    }

    .coming-soon-cta i {
        font-size: 20px;
    }
}
