/* resources/layout.css */

/* Google Fonts Initialization */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000; /* Default black background */
    color: #f8f9fa; /* Default light text color for dark background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Color Palette */
:root {
    --dl-black: #000000;
    --dl-dark-grey: #1a1a1a;
    --dl-red: #e74c3c; /* A vibrant red */
    --dl-pink: #ff69b4; /* Hot pink */
    --dl-pink-light: #ffadd9; /* Lighter pink for contrast */
    --dl-text-light: #f8f9fa;
    --dl-text-muted: #ced4da; /* Light grey for muted text */
    --dl-warning: #ffc107; /* Bootstrap warning yellow */
}

/* General Text Colors */
.text-pink { color: var(--dl-pink) !important; }
.text-pink-light { color: var(--dl-pink-light) !important; }
.text-red { color: var(--dl-red) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.75) !important; }
.text-white-75 { color: rgba(255, 255, 255, 0.85) !important; }
.text-muted { color: var(--dl-text-muted) !important; }
.text-warning { color: var(--dl-warning) !important; }

/* Backgrounds */
.bg-dark-gradient {
    background: linear-gradient(135deg, var(--dl-black) 0%, var(--dl-dark-grey) 100%);
    color: var(--dl-text-light);
}
.bg-black-section {
    background-color: var(--dl-black);
    color: var(--dl-text-light);
}
.bg-black-footer {
    background-color: var(--dl-black);
    color: var(--dl-text-muted);
}
.bg-disclaimer {
    background-color: var(--dl-dark-grey); /* Dark grey to stand out */
    color: var(--dl-text-light);
    padding: 2rem 0;
}
.disclaimer-content {
    background-color: rgba(var(--dl-red), 0.1); /* Light red tint */
    border: 2px solid var(--dl-red); /* Red border */
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--dl-pink), 0.05), rgba(var(--dl-red), 0.05));
    z-index: -1;
}


/* Navbar */
.navbar {
    transition: background-color 0.3s ease-in-out;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent by default */
}
.navbar.scrolled {
    background-color: var(--dl-black); /* Solid black when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dl-pink) !important;
    display: flex;
    align-items: center;
}
.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}
.navbar-nav .nav-link {
    color: var(--dl-text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--dl-pink) !important;
    transform: translateY(-2px);
}
.navbar-toggler {
    border-color: var(--dl-pink);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 105, 180, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dl-text-light);
    padding: 0 15px; /* Add some padding for small screens */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}
.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: var(--dl-pink-light); /* Lighter pink for heading */
}
.hero-section p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
    .hero-section p {
        font-size: 1.5rem;
    }
}

/* Custom Buttons */
.custom-btn-red {
    background-color: var(--dl-red);
    border-color: var(--dl-red);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.custom-btn-red:hover {
    background-color: #c0392b; /* Darker red */
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.custom-btn-outline-pink {
    border-color: var(--dl-pink);
    color: var(--dl-pink);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}
.custom-btn-outline-pink:hover {
    background-color: var(--dl-pink);
    color: var(--dl-text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
}
.about-section img {
    border-radius: 1rem !important;
    object-fit: cover;
    height: 100%; /* Ensure image fills container */
    max-height: 400px; /* Limit height for aesthetic */
}
.about-section h2 {
    color: var(--dl-pink-light);
    margin-bottom: 2rem;
}
.about-section ul li {
    font-size: 1.1rem;
    color: var(--dl-text-muted);
}
.about-section ul li i {
    font-size: 1.2rem;
}

/* Features Section (Slider) */
.features-section {
    padding: 6rem 0;
}
.features-section h2 {
    color: var(--dl-pink-light);
    margin-bottom: 3rem;
}
.feature-icon {
    font-size: 4rem;
    color: var(--dl-red);
    display: block;
    margin-bottom: 1rem;
}
.feature-img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem !important;
}
.carousel-item {
    padding: 2rem 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1); /* Make icons white */
}
.carousel-indicators [data-bs-target] {
    background-color: var(--dl-pink);
}

/* Leagues & Game Modes */
.leagues-section {
    padding: 6rem 0;
}
.leagues-section h2 {
    color: var(--dl-pink-light);
    margin-bottom: 3rem;
}
.league-card {
    background-color: var(--dl-dark-grey);
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.league-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}
.league-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.league-card .card-body {
    padding: 1.5rem;
}
.league-card .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.league-card .card-text {
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}
.testimonials-section h2 {
    color: var(--dl-pink-light);
    margin-bottom: 3rem;
}
.testimonial-card {
    background-color: var(--dl-dark-grey);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--dl-pink);
}
.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
}

/* Call to Action */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--dl-text-light);
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 0;
}
.cta-section h2 {
    font-size: 3rem;
    color: var(--dl-pink-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.cta-section p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: var(--dl-black);
    padding: 3rem 0;
    color: var(--dl-text-muted);
    font-size: 0.9rem;
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dl-pink) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand .logo-img-footer {
    height: 30px;
    margin-right: 8px;
}
@media (min-width: 768px) {
    .footer-brand {
        justify-content: flex-start;
    }
}
.footer-links li a {
    color: var(--dl-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}
.footer-links li a:hover {
    color: var(--dl-pink-light);
}
.social-icons li a {
    color: var(--dl-text-light);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons li a:hover {
    color: var(--dl-pink);
    transform: translateY(-3px);
}
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Increased gap for better spacing */
}
.footer-org-logo {
    max-width: 120px; /* Adjusted based on the prompt's 100-150px range */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.footer-org-logo:hover {
    transform: scale(1.05);
}
.footer-org-logo-18plus {
    max-width: 80px; /* Smaller for 18+ icon */
    height: auto;
    object-fit: contain;
    filter: saturate(1.5) hue-rotate(-20deg); /* Make it pop, red-ish */
}

/* Scroll to top button (optional, but good for large sites) */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button at the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--dl-red); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    font-size: 1.5rem; /* Increase font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#scrollToTopBtn:hover {
    background-color: var(--dl-pink); /* Darker background on hover */
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 80px; /* Adjust for fixed navbar */
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .d-flex {
        justify-content: center !important;
    }
    .about-section img {
        margin-bottom: 2rem;
    }
    .about-section h2,
    .about-section p,
    .about-section ul {
        text-align: center !important;
    }
    .carousel-item .row {
        flex-direction: column;
    }
    .carousel-item .col-lg-6:first-child {
        order: 2; /* Text below image on small screens */
    }
    .carousel-item .col-lg-6:last-child {
        order: 1; /* Image above text on small screens */
        margin-bottom: 2rem;
    }
    .footer-brand, .footer-links, .social-icons {
        text-align: center;
        justify-content: center !important;
    }
    .footer-logos {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-org-logo {
        max-width: 100px; /* Adjust for smaller screens */
    }
}/* resources/layout.css */

/*
 * Styles for content within the .policyScopeWrap container.
 * These are general text and heading styles, not specific to the main page sections.
 */
.policyScopeWrap {
    /* Top and side padding for the content container */
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    /* Max-width for better readability on large screens, centered */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    /* Default text color for this section, inheriting from body if not specified */
    color: var(--dl-text-light);
}

.policyScopeWrap h1 {
    /* Font size for main headings within the policy content */
    font-size: 2.5rem;
    /* Margin below the heading */
    margin-bottom: 1.5rem;
    /* Use the primary heading font family */
    font-family: 'Orbitron', sans-serif;
    /* Adjust line height for readability */
    line-height: 1.2;
    /* Text color for headings */
    color: var(--dl-pink-light);
}

.policyScopeWrap h2 {
    /* Font size for sub-headings */
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.3;
    color: var(--dl-pink-light);
}

.policyScopeWrap h3 {
    /* Font size for smaller headings */
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.4;
    color: var(--dl-pink-light);
}

.policyScopeWrap h4 {
    /* Font size for even smaller headings */
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.5;
    color: var(--dl-pink-light);
}

.policyScopeWrap h5 {
    /* Font size for the smallest headings */
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.6;
    color: var(--dl-pink-light);
}

.policyScopeWrap p {
    /* Font size for standard paragraphs */
    font-size: 1.1rem;
    /* Line height for paragraph readability */
    line-height: 1.8;
    /* Margin below paragraphs */
    margin-bottom: 1rem;
    /* Default body font family */
    font-family: 'Roboto', sans-serif;
    /* Muted text color for general content */
    color: var(--dl-text-muted);
}

.policyScopeWrap ul {
    /* Default list style type */
    list-style-type: disc;
    /* Padding for list items to align with text */
    padding-left: 1.5rem;
    /* Margin below the entire list */
    margin-bottom: 1rem;
    /* Default body font family */
    font-family: 'Roboto', sans-serif;
    color: var(--dl-text-muted);
}

.policyScopeWrap ol {
    /* Default ordered list style type */
    list-style-type: decimal;
    /* Padding for list items to align with text */
    padding-left: 1.5rem;
    /* Margin below the entire list */
    margin-bottom: 1rem;
    /* Default body font family */
    font-family: 'Roboto', sans-serif;
    color: var(--dl-text-muted);
}

.policyScopeWrap ul li,
.policyScopeWrap ol li {
    /* Font size for list items */
    font-size: 1.1rem;
    /* Margin below each list item */
    margin-bottom: 0.5rem;
    /* Line height for list item readability */
    line-height: 1.6;
    /* Muted text color for list items */
    color: var(--dl-text-muted);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .policyScopeWrap {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .policyScopeWrap h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .policyScopeWrap h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .policyScopeWrap h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyScopeWrap h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .policyScopeWrap h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .policyScopeWrap p,
    .policyScopeWrap ul li,
    .policyScopeWrap ol li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .policyScopeWrap ul,
    .policyScopeWrap ol {
        padding-left: 1rem;
    }
}
