/* Custom CSS for FantasyGamesZone */

/* Root variables for color scheme */
:root {
    --primary-orange: hsl(28, 90%, 55%); /* Vibrant orange */
    --secondary-yellow: hsl(45, 95%, 60%); /* Bright yellow */
    --light-bg: hsl(40, 100%, 98%); /* Very light yellow/cream */
    --dark-bg: hsl(210, 10%, 15%); /* Dark charcoal for footer/CTA */
    --dark-text: hsl(210, 10%, 20%); /* Standard dark text */
    --light-text: hsl(0, 0%, 95%); /* Light text for dark backgrounds */
    --accent-glow: hsla(28, 90%, 55%, 0.3); /* For button hover glow */
    --disclaimer-bg: hsl(0, 80%, 95%); /* Light red/pinkish for disclaimer */
    --disclaimer-border: hsl(0, 70%, 80%); /* Reddish border */
    --disclaimer-text: hsl(0, 60%, 30%); /* Dark red text */
    --disclaimer-icon: hsl(40, 90%, 50%); /* Orange icon */
}

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text); /* Standard text color */
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-text);
}

p {
    color: var(--dark-text); /* Ensure paragraph text is readable */
}

a {
    text-decoration: none;
    color: var(--primary-orange);
}

a:hover {
    color: var(--secondary-yellow);
}

/* Header styles */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030; /* Above other content */
}

.main-header .logo-img {
    height: 45px; /* Adjust logo size */
    width: auto;
}

.header-app-buttons .app-button {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-app-buttons .app-button:hover {
    background-color: var(--primary-orange);
    color: var(--light-text);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-app-download {
    background-color: var(--secondary-yellow);
    border-color: var(--secondary-yellow);
    color: var(--dark-text);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-app-download:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.btn-app-download i {
    font-size: 1.5em;
}

/* Hero Section */
.hero-section {
    background-image: url(img/media/fantasy-sports-hero_2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* Offset for fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)); /* Dark overlay */
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section .highlight-text {
    color: var(--secondary-yellow);
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--light-text);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* General Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-orange);
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-yellow);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.about-section .img-fluid {
    max-height: 450px;
    object-fit: cover;
    border: 5px solid var(--secondary-yellow);
}

/* Features Section */
.features-section {
    background-color: var(--light-orange); /* A slightly darker light background */
    padding: 100px 0;
}

.feature-card {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px; /* Ensure cards have consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
}

/* Slider Section */
.slider-section {
    background-color: var(--light-bg);
}

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.carousel-img {
    height: 500px; /* Fixed height for carousel images */
    object-fit: cover;
    filter: brightness(0.7); /* Darken images slightly for text readability */
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    padding: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
}

.carousel-caption h3 {
    color: var(--light-text);
    font-size: 2.5rem;
}

.carousel-caption p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    background-color: var(--primary-orange);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--secondary-yellow);
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-yellow); /* A slightly different light background */
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

/* Call to Action Section */
.cta-section {
    background-image: url(img/media/fantasy-cta-bg_2.png);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

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

.cta-section h2 {
    color: var(--light-text);
}

.cta-section p {
    color: var(--light-text);
    font-size: 1.2rem;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: var(--disclaimer-bg);
    border: 1px solid var(--disclaimer-border);
    border-left: 5px solid var(--primary-orange); /* Stronger left border */
    border-radius: 8px;
    padding: 25px;
    margin-top: 50px; /* Space from previous section */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.disclaimer-content {
    align-items: flex-start;
}

.disclaimer-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    line-height: 1;
}

.disclaimer-title {
    color: var(--primary-orange);
}

.disclaimer-block p {
    color: var(--dark-text); /* Ensure disclaimer text is readable */
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding-top: 60px;
    padding-bottom: 30px;
}

.main-footer .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.main-footer .footer-links a {
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
    color: var(--secondary-yellow);
}

.social-icons .social-icon {
    font-size: 1.8rem;
    color: var(--light-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon:hover {
    color: var(--secondary-yellow);
    transform: translateY(-3px);
}

.footer-partners {
    gap: 20px; /* Space between logos */
}

.partner-logo-link {
    display: flex; /* Use flex to center images within the link */
    align-items: center;
    justify-content: center;
    height: 80px; /* Fixed height for consistency */
}

.partner-logo {
    max-width: 150px; /* Max width as per requirement */
    max-height: 70px; /* To prevent vertical stretching if image is horizontal */
    width: auto;
    height: auto;
    object-fit: contain; /* Ensure image scales correctly */
    filter: none; /* No grayscale */
}

.partner-logo-18plus {
    max-width: 80px; /* Smaller for 18+ icon */
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-contact-email a {
    color: var(--light-text);
    text-decoration: underline;
}

.footer-contact-email a:hover {
    color: var(--secondary-yellow);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-header .logo-img {
        height: 40px;
    }

    .header-app-buttons .app-button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-section .img-fluid {
        max-height: 350px;
    }

    .carousel-img {
        height: 350px;
    }

    .carousel-caption h3 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-app-download {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .disclaimer-block {
        padding: 20px;
    }

    .disclaimer-icon {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .main-header {
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-header .navbar-brand {
        margin-bottom: 10px;
    }

    .header-app-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-app-buttons .app-button {
        margin-bottom: 10px;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 140px; /* Adjust for stacked header */
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .about-section .row {
        flex-direction: column-reverse; /* Image above text on small screens */
    }

    .about-section .img-fluid {
        margin-bottom: 30px;
    }

    .feature-card {
        min-height: auto;
    }

    .carousel-img {
        height: 250px;
    }

    .carousel-caption {
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .btn-app-download {
        width: 100%;
        margin-right: 0 !important;
    }

    .disclaimer-block {
        padding: 15px;
        border-left-width: 3px;
    }

    .disclaimer-icon {
        font-size: 1.8rem;
        margin-right: 10px !important;
    }

    .disclaimer-block p {
        font-size: 0.85rem;
    }

    .footer-links a {
        display: block;
        margin: 5px 0;
    }
    .footer-links span {
        display: none; /* Hide separators on small screens */
    }
}/* Styles for policy/terms content wrapper */
.policyScopeWrap {
    padding: 60px 20px; /* Top/bottom padding, and side padding for smaller screens */
    max-width: 960px; /* Max width for readability of long text */
    margin: 0 auto; /* Center the content block */
    background-color: #ffffff; /* White background for policy text */
    border-radius: 10px; /* Slightly rounded corners for the block */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    line-height: 1.7; /* Improved readability for body text */
    color: var(--dark-text); /* Default text color from root variables */
}

/* Headings within policyScopeWrap */
.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate size for main policy title */
    margin-top: 40px; /* Space above heading */
    margin-bottom: 20px; /* Space below heading */
    color: var(--primary-orange); /* Highlighted color for main headings */
    font-weight: 700;
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Slightly smaller for sub-sections */
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--dark-text);
    font-weight: 600;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* For minor sections */
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 600;
}

.policyScopeWrap h4 {
    font-size: 1.25rem; /* For sub-sub-sections */
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 500;
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Smallest heading level */
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-weight: 500;
}

/* Paragraphs within policyScopeWrap */
.policyScopeWrap p {
    font-size: 1rem; /* Standard body text size */
    margin-bottom: 15px; /* Space between paragraphs */
    line-height: 1.7; /* Good line spacing for readability */
}

/* Unordered and Ordered Lists within policyScopeWrap */
.policyScopeWrap ul,
.policyScopeWrap ol {
    margin-top: 15px; /* Space above list */
    margin-bottom: 15px; /* Space below list */
    padding-left: 25px; /* Indentation for list items */
}

/* List Items within policyScopeWrap */
.policyScopeWrap li {
    font-size: 1rem; /* Standard text size for list items */
    margin-bottom: 8px; /* Space between list items */
    line-height: 1.6; /* Good line spacing for list items */
}

/* Responsive adjustments for policyScopeWrap */
@media (max-width: 767.98px) {
    .policyScopeWrap {
        padding: 40px 15px; /* Reduced padding on smaller screens */
    }

    .policyScopeWrap h1 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyScopeWrap h2 {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyScopeWrap h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .policyScopeWrap h4 {
        font-size: 1.1rem;
        margin-top: 18px;
        margin-bottom: 8px;
    }

    .policyScopeWrap h5 {
        font-size: 1rem;
        margin-top: 15px;
        margin-bottom: 7px;
    }

    .policyScopeWrap p,
    .policyScopeWrap li {
        font-size: 0.95rem; /* Slightly smaller text for better fit */
        margin-bottom: 12px;
    }

    .policyScopeWrap ul,
    .policyScopeWrap ol {
        padding-left: 20px; /* Adjust indentation */
    }
}


.navbar-brand{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-contact-email.mb-3{
    color: #fff;
}

header{
    opacity: 0.8 !important;
}

.container-fluid.d-flex.justify-content-between.align-items-center{
    flex-wrap: wrap;
    gap: 7px;
}

@media (max-width: 575px){
    .container-fluid.d-flex.justify-content-between.align-items-center{
    align-items: center !important;
    justify-content: center !important;
}
}