/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #E0F2F7; /* Very light grey-blue */
    color: #333333; /* Standard dark text color */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #2C3E50; /* Darker blue-grey for headings */
    font-weight: 700;
}

/* Links */
a {
    color: #007bff; /* Bootstrap primary blue */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-image: url('uploads/content/chicken-road-banner.png'); /* Hero banner image */
    background-size: cover;
    background-position: left;
    color: #FFFFFF; /* White text for contrast on banner */
    min-height: 100vh; /* Ensure it covers full viewport height */
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

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

.hero-logo {
    max-width: 180px; /* Adjust logo size */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.hero-section p.lead {
    font-size: 1.5rem;
    color: #F8F9FA;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.play-now-btn {
    background-color: #7FC8A9; /* Muted green button */
    border-color: #7FC8A9;
    font-size: 1.25rem;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.play-now-btn:hover {
    background-color: #6AA88B;
    border-color: #6AA88B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.bg-light-blue {
    background-color: #F0F8FA; /* Slightly lighter blue-grey for alternating sections */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #7FC8A9;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555555;
}

/* List Styles (How to Play, Why You'll Love It) */
.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #444444;
}

.feature-list li i {
    font-size: 1.5rem;
    color: #7FC8A9; /* Icon color */
    margin-right: 15px;
    min-width: 30px; /* Ensure consistent alignment */
    text-align: center;
}

/* Developer Information */
.developer-detail {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #555555;
}

.developer-detail i {
    color: #7FC8A9;
}

/* Footer */
.footer {
    background-color: #2C3E50; /* Dark blue-grey footer */
    color: #F8F9FA;
    padding: 2.5rem 0;
}

.footer-text {
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    color: #CED4DA;
}

.footer-links .footer-link {
    color: #A9D9EF; /* Lighter blue for footer links */
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links .footer-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #99AAB5;
}

.footer-link-logo {
    color: #A9D9EF;
    text-decoration: none;
}

.footer-link-logo:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

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

    .play-now-btn {
        font-size: 1.1rem;
        padding: 0.6rem 2rem;
    }

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

    .section-description, .feature-list li, .developer-detail {
        font-size: 1rem;
    }

    .feature-list li i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 150px;
    }

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

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

    .play-now-btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

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

    section {
        padding: 3rem 0;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-links .footer-link {
        font-size: 0.8rem;
    }
}/* Styles for the .rightsFieldUnit container */
.rightsFieldUnit {
    padding: 2.5rem 1.5rem; /* Top/bottom and left/right padding for the container */
    margin-top: 2rem; /* Top margin to separate from preceding sections */
    background-color: #FFFFFF; /* White background for content readability */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
}

/* Headings within .rightsFieldUnit */
.rightsFieldUnit h1 {
    font-size: 2.2rem; /* Moderate size for H1 within content */
    margin-bottom: 1rem; /* Spacing below the heading */
    color: #2C3E50; /* Dark blue-grey for headings */
    line-height: 1.2; /* Tighter line height for headings */
}

.rightsFieldUnit h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    margin-bottom: 0.9rem;
    color: #2C3E50;
    line-height: 1.3;
}

.rightsFieldUnit h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-bottom: 0.8rem;
    color: #2C3E50;
    line-height: 1.4;
}

.rightsFieldUnit h4 {
    font-size: 1.3rem; /* Moderate size for H4 */
    margin-bottom: 0.7rem;
    color: #2C3E50;
    line-height: 1.5;
}

.rightsFieldUnit h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    margin-bottom: 0.6rem;
    color: #2C3E50;
    line-height: 1.6;
}

/* Paragraphs within .rightsFieldUnit */
.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    color: #333333; /* Standard dark text color */
    line-height: 1.6; /* Comfortable line height for readability */
}

/* Unordered lists within .rightsFieldUnit */
.rightsFieldUnit ul {
    list-style-type: disc; /* Default disc style for list items */
    margin-left: 1.5rem; /* Indentation for the list */
    margin-bottom: 1rem; /* Spacing after the list */
    padding-left: 0; /* No extra padding, margin-left handles indentation */
}

/* List items within .rightsFieldUnit */
.rightsFieldUnit li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #333333; /* Standard dark text color */
    line-height: 1.5; /* Comfortable line height */
}

/* Responsive adjustments for .rightsFieldUnit content */
@media (max-width: 768px) {
    .rightsFieldUnit {
        padding: 2rem 1rem; /* Reduce padding on smaller screens */
    }

    .rightsFieldUnit h1 {
        font-size: 1.8rem;
    }

    .rightsFieldUnit h2 {
        font-size: 1.6rem;
    }

    .rightsFieldUnit h3 {
        font-size: 1.3rem;
    }

    .rightsFieldUnit h4 {
        font-size: 1.1rem;
    }

    .rightsFieldUnit h5 {
        font-size: 1rem;
    }

    .rightsFieldUnit p,
    .rightsFieldUnit ul,
    .rightsFieldUnit li {
        font-size: 0.95rem; /* Slightly smaller text for better fit */
    }

    .rightsFieldUnit ul {
        margin-left: 1rem; /* Adjust list indentation */
    }
}

@media (max-width: 576px) {
    .rightsFieldUnit {
        padding: 1.5rem 0.8rem; /* Further reduce padding on very small screens */
    }

    .rightsFieldUnit h1 {
        font-size: 1.6rem;
    }

    .rightsFieldUnit h2 {
        font-size: 1.4rem;
    }

    .rightsFieldUnit h3 {
        font-size: 1.2rem;
    }

    .rightsFieldUnit h4 {
        font-size: 1rem;
    }

    .rightsFieldUnit h5 {
        font-size: 0.95rem;
    }

    .rightsFieldUnit p,
    .rightsFieldUnit ul,
    .rightsFieldUnit li {
        font-size: 0.9rem;
    }
}
