/* style/sports.css */

/* Base Styles */
.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-sports__section {
    padding: 60px 0;
    text-align: center;
}

.page-sports__dark-bg {
    background-color: #0A2463;
    color: #ffffff;
}

.page-sports__light-bg {
    background-color: #f8f9fa;
    color: #333333;
}

.page-sports__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #E3B505;
}

.page-sports__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-sports__btn-primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-sports__btn-primary:hover {
    background-color: #ffc107;
    border-color: #ffc107;
}

.page-sports__btn-secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
    margin-left: 20px;
}

.page-sports__btn-secondary:hover {
    background-color: #E3B505;
    color: #0A2463;
}

.page-sports__btn-center {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-sports__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-sports__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-sports__hero-section .page-sports__container {
    z-index: 3;
    text-align: center;
}

.page-sports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-sports__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Intro Section */
.page-sports__intro-section .page-sports__section-title {
    color: #0A2463;
}

/* Featured Sports Grid */
.page-sports__featured-sports {
    background-color: #0A2463;
}

.page-sports__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-sports__grid-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #E3B505;
}

.page-sports__grid-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-sports__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.page-sports__list li {
    margin-bottom: 8px;
}

/* Video Section */
.page-sports__video-section .page-sports__section-title {
    color: #0A2463;
}

.page-sports__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.page-sports__video-caption {
    margin-top: 15px;
    font-style: italic;
    color: #555;
}

/* Promotions Section */
.page-sports__promo-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-sports__promo-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__promo-list li strong {
    color: #E3B505;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

/* Guide Section */
.page-sports__guide-section .page-sports__section-title {
    color: #0A2463;
}

.page-sports__step-by-step {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-sports__step-item {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    text-align: left;
    position: relative;
    padding-top: 60px;
}

.page-sports__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: #E3B505;
    color: #0A2463;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-sports__step-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #0A2463;
}

/* Why Choose Us Section */
.page-sports__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-sports__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-sports__feature-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #E3B505;
}

/* FAQ Section */
.page-sports__faq-section .page-sports__section-title {
    color: #0A2463;
}

.page-sports__faq-list {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-sports__faq-item {
    background-color: #ffffff;
    color: #333333;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-sports__faq-question {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.page-sports__faq-question:hover {
    background-color: #e9e9e9;
}

.page-sports__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
    transform: rotate(45deg);
}

.page-sports__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px;
}

.page-sports__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-sports__conclusion-section {
    background-color: #0A2463;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: 3em;
    }
    .page-sports__section-title {
        font-size: 2em;
    }
    .page-sports__hero-description {
        font-size: 1.1em;
    }
    .page-sports__promo-list li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-sports__hero-section {
        height: 70vh;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-sports__hero-title {
        font-size: 2.2em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports__btn-secondary {
        margin-left: 0;
    }
    .page-sports__section {
        padding: 40px 0;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__section-description {
        font-size: 0.95em;
    }
    .page-sports__grid-layout,
    .page-sports__step-by-step,
    .page-sports__features-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__step-item {
        min-width: unset;
        flex: 1 1 100%;
    }

    /* Image responsive adaptions */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__grid-item,
    .page-sports__step-item,
    .page-sports__feature-item,
    .page-sports__faq-item,
    .page-sports__promo-list li {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Video responsive adaptions */
    .page-sports video,
    .page-sports__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports__video-section,
    .page-sports__video-container,
    .page-sports__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-sports__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    /* Button responsive adaptions */
    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports a[class*="button"],
    .page-sports a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important; /* Remove horizontal margin for buttons */
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__hero-cta-group,
    .page-sports__cta-buttons,
    .page-sports__button-group,
    .page-sports__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: 1.8em;
    }
    .page-sports__section-title {
        font-size: 1.5em;
    }
    .page-sports__btn-primary,
    .page-sports__btn-secondary {
        padding: 12px 20px;
    }
}