/* ============================================== */
/* sections.css — New Frontpage Sections          */
/* 57Sports Brand Extension — v2 Fixed            */
/* ============================================== */

/* ============================================== */
/* 1. PAST EVENTS SLIDESHOW                       */
/* ============================================== */

.events-section {
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.events-section .section-title {
    margin-bottom: 50px;
}

.events-slider-wrapper {
    position: relative;
}

.event-slide-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.event-slide-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.event-slide-image {
    position: relative;
    overflow: hidden;
}

.event-slide-image figure {
    display: block;
    margin: 0;
}

.event-slide-image figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: all 0.6s ease;
    display: block;
}

.event-slide-card:hover .event-slide-image figure img {
    transform: scale(1.06);
}

.event-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    line-height: 1;
    z-index: 2;
}

.event-date-badge .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.event-slide-info {
    padding: 24px 22px 28px;
}

.event-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    background: rgba(209, 161, 50, 0.12);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 12px;
}

.event-slide-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}

.event-slide-info p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.event-meta span i {
    color: var(--accent-color);
    margin-right: 6px;
}

/* Shared Nav Styles */
.events-nav,
.gallery-nav,
.blog-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.events-button-prev, .events-button-next,
.gallery-button-prev, .gallery-button-next,
.blog-button-prev, .blog-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Dark bg nav */
.events-button-prev, .events-button-next,
.blog-button-prev, .blog-button-next {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.events-button-prev:hover, .events-button-next:hover,
.blog-button-prev:hover, .blog-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.events-button-prev i, .events-button-next i,
.blog-button-prev i, .blog-button-next i {
    font-size: 16px;
    color: var(--white-color);
}

/* Light bg nav */
.gallery-button-prev, .gallery-button-next {
    background: transparent;
    border: 1px solid var(--divider-color);
}

.gallery-button-prev:hover, .gallery-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.gallery-button-prev i, .gallery-button-next i {
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.gallery-button-prev:hover i, .gallery-button-next:hover i {
    color: var(--white-color);
}

/* Shared pagination bullets */
.events-pagination,
.gallery-pagination,
.blog-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.events-pagination .swiper-pagination-bullet,
.blog-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.events-pagination .swiper-pagination-bullet-active,
.blog-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 100px;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--divider-color);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 100px;
}


/* ============================================== */
/* 2. DOCUMENTARY / VIDEO SECTION                 */
/* ============================================== */

.documentary-section {
    padding: 100px 0 110px;
    position: relative;
    background: var(--secondary-color);
    overflow: hidden;
}

.documentary-section .section-title {
    margin-bottom: 30px;
}

.documentary-content {
    padding-right: 40px;
}

.documentary-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0 40px;
    padding: 28px 0;
    border-top: 1px solid var(--divider-color);
    border-bottom: 1px solid var(--divider-color);
}

.doc-stat { text-align: center; }

.doc-stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--accent-font);
}

.doc-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-color);
    margin-top: 8px;
}

.documentary-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(99, 75, 56, 0.15);
}

.documentary-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1410;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    display: block;
}

.video-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.03);
    filter: brightness(0.7);
}

.video-play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(99, 75, 56, 0.3);
    transition: all 0.4s ease;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(99, 75, 56, 0.5);
}

.play-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
}

.play-icon-ring::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-thumbnail:hover .play-icon-ring {
    transform: scale(1.1);
    background: var(--primary-color);
}

.play-icon-ring i {
    font-size: 28px;
    color: var(--white-color);
    margin-left: 4px;
}

.play-text {
    display: block;
    color: var(--white-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 16px;
}

.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-grain-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    opacity: 0.03;
    border-radius: 20px;
}


/* ============================================== */
/* 3. GALLERY — HORIZONTAL SLIDESHOW              */
/* ============================================== */

.gallery-section {
    padding: 100px 0 110px;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.gallery-section .section-title {
    margin-bottom: 20px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 10px;
}

.gallery-filter {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    padding: 9px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

.gallery-slider-wrapper {
    position: relative;
    margin-top: 30px;
}

.gallery-swiper {
    overflow: visible;
}

.gallery-swiper .swiper-slide {
    width: 400px;
    height: 320px;
}

.gallery-slide-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: block;
}

.gallery-slide-item figure {
    display: block;
    height: 100%;
    margin: 0;
}

.gallery-slide-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.gallery-slide-item:hover figure img {
    transform: scale(1.08);
}

.gallery-slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(99, 75, 56, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-slide-item:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide-info { flex: 1; }

.gallery-slide-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.gallery-slide-info h4 {
    font-size: 18px;
    color: var(--white-color);
    margin: 0;
    font-weight: 700;
}

.gallery-slide-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.gallery-slide-zoom:hover {
    background: var(--white-color);
    color: var(--primary-color);
}


/* ============================================== */
/* 4. STORE / MERCH                               */
/* ============================================== */

.store-section {
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.store-section .section-title {
    margin-bottom: 50px;
}

.store-section::after {
    content: '57';
    position: absolute;
    bottom: -60px;
    right: -20px;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    pointer-events: none;
    font-family: var(--accent-font);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.store-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.store-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.store-item-image {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.store-item-image figure {
    display: block;
    margin: 0;
}

.store-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.store-item:hover .store-item-image figure img {
    transform: scale(1.06);
}

.store-item-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 100px;
    padding: 5px 14px;
    z-index: 2;
}

.store-item-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.store-item:hover .store-item-actions {
    opacity: 1;
    transform: translateX(0);
}

.store-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.store-action-btn:hover { background: var(--accent-color); }

.store-action-btn i {
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.store-action-btn:hover i { color: var(--white-color); }

.store-item-info {
    padding: 20px 20px 24px;
}

.store-item-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.store-item-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.store-item-price .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--white-color);
    font-family: var(--accent-font);
}

.store-cta { text-align: center; }


/* ============================================== */
/* 5. INSTAGRAM / SOCIALS — HORIZONTAL SLIDESHOW  */
/* ============================================== */

.social-section {
    padding: 100px 0 110px;
    background: var(--secondary-color);
    overflow: hidden;
}

.social-section .section-title {
    margin-bottom: 20px;
}

.social-follow-btn {
    padding-bottom: 10px;
}

.insta-slider-wrapper {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
}

.insta-swiper {
    overflow: visible;
}

.insta-swiper .swiper-slide {
    width: 260px;
}

.insta-slide-item {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.insta-slide-item figure {
    display: block;
    margin: 0;
}

.insta-slide-item figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.insta-slide-item:hover figure img {
    transform: scale(1.08);
}

.insta-slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(99, 75, 56, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.insta-slide-item:hover .insta-slide-overlay {
    opacity: 1;
}

.insta-slide-overlay i {
    font-size: 32px;
    color: var(--white-color);
    transform: scale(0.6);
    transition: all 0.3s ease;
}

.insta-slide-item:hover .insta-slide-overlay i {
    transform: scale(1);
}

.insta-slide-overlay span {
    display: block;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease 0.1s;
}

.insta-slide-item:hover .insta-slide-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* Live Feed Info Box */
.insta-live-info {
    text-align: center;
    margin: 30px auto 40px;
    max-width: 700px;
}

.insta-live-info p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.insta-live-info a {
    color: var(--accent-color);
    font-weight: 700;
}

/* Social Links Bar */
.social-links-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.social-link-item i { font-size: 20px; }


/* ============================================== */
/* 6. BLOG POSTS — HORIZONTAL SLIDESHOW           */
/* ============================================== */

.blog-section {
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.blog-section .section-title {
    margin-bottom: 20px;
}

.blog-slider-wrapper {
    position: relative;
    margin-top: 30px;
}

.blog-swiper {
    overflow: visible;
}

.blog-swiper .swiper-slide {
    width: 400px;
    height: auto;
}

.blog-slide-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-slide-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.blog-slide-image {
    position: relative;
    overflow: hidden;
}

.blog-slide-image a {
    display: block;
    overflow: hidden;
}

.blog-slide-image figure {
    display: block;
    margin: 0;
}

.blog-slide-image figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.blog-slide-card:hover .blog-slide-image figure img {
    transform: scale(1.06);
}

.blog-slide-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 8px 14px;
    text-align: center;
    line-height: 1;
    z-index: 2;
}

.blog-slide-date .day {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.blog-slide-date .month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
}

.blog-slide-body {
    padding: 24px 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-slide-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-slide-meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

.blog-slide-meta span i {
    color: var(--accent-color);
    margin-right: 4px;
}

.blog-slide-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 12px;
    line-height: 1.35;
}

.blog-slide-body h3 a {
    color: inherit;
    transition: all 0.3s ease;
}

.blog-slide-body h3 a:hover {
    color: var(--accent-color);
}

.blog-slide-body > p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.blog-slide-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.blog-slide-readmore:hover { color: var(--white-color); }

.blog-slide-readmore i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-slide-readmore:hover i {
    transform: translateX(4px);
}


/* ============================================== */
/* 7. RESPONSIVE                                  */
/* ============================================== */

@media only screen and (max-width: 991px) {

    .events-section, .documentary-section, .gallery-section,
    .store-section, .social-section, .blog-section {
        padding: 50px 0 60px;
    }

    .events-section .section-title,
    .store-section .section-title {
        margin-bottom: 30px;
    }

    .documentary-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .documentary-stats {
        gap: 30px;
        margin: 30px 0;
        padding: 22px 0;
    }

    .doc-stat-number { font-size: 30px; }

    .gallery-filters { justify-content: flex-start; }

    .gallery-swiper .swiper-slide {
        width: 300px;
        height: 260px;
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .store-section::after { font-size: 180px; }

    .insta-swiper .swiper-slide { width: 220px; }

    .blog-swiper .swiper-slide { width: 320px; }

    .social-link-item {
        padding: 12px 20px;
        font-size: 14px;
    }

    .events-nav, .gallery-nav, .blog-nav {
        margin-top: 35px;
    }
}

@media only screen and (max-width: 767px) {

    .event-slide-info h3 { font-size: 18px; }

    .documentary-stats {
        gap: 20px;
        justify-content: space-between;
    }

    .doc-stat-number { font-size: 26px; }
    .doc-stat-label { font-size: 11px; }

    .play-icon-ring { width: 64px; height: 64px; }
    .play-icon-ring i { font-size: 22px; }
    .play-text { font-size: 12px; }

    .gallery-filter { font-size: 12px; padding: 8px 14px; }

    .gallery-swiper .swiper-slide {
        width: 260px;
        height: 220px;
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .store-item-info { padding: 16px 14px 18px; }
    .store-item-info h3 { font-size: 15px; }
    .store-section::after { font-size: 120px; }

    .insta-swiper .swiper-slide { width: 200px; }
    .blog-swiper .swiper-slide { width: 290px; }
    .blog-slide-body h3 { font-size: 17px; }

    .social-link-item { padding: 10px 16px; font-size: 13px; }
    .social-link-item i { font-size: 16px; }

    .events-nav, .gallery-nav, .blog-nav { margin-top: 30px; }

    .events-button-prev, .events-button-next,
    .gallery-button-prev, .gallery-button-next,
    .blog-button-prev, .blog-button-next {
        width: 42px;
        height: 42px;
    }
}

@media only screen and (max-width: 480px) {

    .store-grid { grid-template-columns: 1fr; }

    .gallery-swiper .swiper-slide { width: 240px; height: 200px; }
    .insta-swiper .swiper-slide { width: 180px; }
    .blog-swiper .swiper-slide { width: 270px; }

    .social-links-bar { flex-direction: column; align-items: stretch; }
    .social-link-item { justify-content: center; }
}