/* resources/layout.css */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333; /* Standard text color for readability */
    background-color: #f8f9fa; /* Light background for overall site */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to AOS animations */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #4A4A4A; /* Dark grey for headings */
}

a {
    color: #FFD700; /* Gold/yellow for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e6c200; /* Slightly darker gold on hover */
}

/* Header */
header {
   position: absolute;
   z-index: 1;
   margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/media/chicken-road-hero-bg_6.png') no-repeat center center;
    background-size: cover;
    min-height: 85vh; /* Ensure it takes up most of the viewport height */
    padding: 120px 0 !important;
    position: relative;
    color: #fff; /* White text for hero section */
}

.hero-section h1 {
    color: #FFD700; /* Gold for main title */
    font-size: calc(2rem + 2vw); /* Responsive font size */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p.lead {
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .game-screenshot {
    max-height: 550px; /* Limit image height */
    object-fit: contain;
    width: auto;
    border: 5px solid #FFD700; /* Gold border for screenshot */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Custom Buttons for Download */
.btn-play-store, .btn-app-store, .btn-play-store-lg, .btn-app-store-lg {
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px; /* Pill shape */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-play-store, .btn-play-store-lg {
    background-color: #28A745; /* Green */
    color: #fff;
    border: none;
}

.btn-play-store:hover, .btn-play-store-lg:hover {
    background-color: #218838; /* Darker green */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-app-store, .btn-app-store-lg {
    background-color: #4A4A4A; /* Dark grey */
    color: #fff;
    border: none;
}

.btn-app-store:hover, .btn-app-store-lg:hover {
    background-color: #333; /* Darker grey */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Section Styling */
.description-section, .gallery-section, .features-section, .reviews-section {
    padding: 80px 0;
    background-color: #fff;
}

.description-section {
    background-color: #f0f8ff; /* Light blueish background */
}

.features-section {
    background-color: #f8f9fa; /* Light grey background */
}

.reviews-section {
    background-color: #e6f7ff; /* Another light blueish background */
}

/* Gallery Section - Carousel */
.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    max-height: 600px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 15px 15px;
    padding: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    transform: translateY(0); /* Override Bootstrap default */
    opacity: 1; /* Override Bootstrap default */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators [data-bs-target] {
    background-color: #FFD700; /* Gold indicators */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-indicators .active {
    background-color: #e6c200; /* Darker gold for active */
    opacity: 1;
}

/* Features Section */
.feature-card {
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    min-height: 220px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 3.5rem;
    color: #FFD700; /* Gold icon color */
    margin-bottom: 15px;
}

/* Reviews Section */
.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #FFD700; /* Gold border for avatars */
}

.text-warning {
    color: #FFD700 !important; /* Ensure gold color for stars */
}

/* Download Call to Action Section */
.download-cta-section {
    background: linear-gradient(rgba(74, 74, 74, 0.7), rgba(74, 74, 74, 0.7)), url('img/media/chicken-road-cta-bg_2.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.download-cta-section h2 {
    color: #FFD700; /* Gold for CTA heading */
}

.download-cta-section p.lead {
    color: #e0e0e0;
}

/* Footer Section */
.footer-section {
    background-color: #4A4A4A; /* Dark grey footer */
    color: #e0e0e0;
    padding: 40px 0;
}

.footer-section a {
    color: #FFD700; /* Gold for footer links */
}

.footer-section a:hover {
    color: #e6c200; /* Darker gold on hover */
}

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

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: unset;
        padding: 150px 0 90px 0 !important;
    }

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

    .hero-section .game-screenshot {
        max-height: 350px;
    }

    .btn-play-store, .btn-app-store, .btn-play-store-lg, .btn-app-store-lg {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .description-section, .gallery-section, .features-section, .reviews-section, .download-cta-section {
        padding: 60px 0;
    }

    .carousel-caption {
        padding: 10px;
    }

    .carousel-caption h5 {
        font-size: 1rem;
    }

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

    .feature-card {
        min-height: auto; /* Allow height to adjust on small screens */
    }
}/* resources/layout.css */

/*
   New styles specifically for content within .policyScopeWrap.
   These are designed to provide standard typography for text-heavy sections
   like privacy policies or terms of service, ensuring readability
   without overly large headings.
*/

.policyScopeWrap {
    padding-top: 60px; /* Top padding for the content area */
    padding-bottom: 60px; /* Bottom padding for the content area */
    padding-left: 15px; /* Left padding for content */
    padding-right: 15px; /* Right padding for content */
    max-width: 960px; /* Max width for readability of text blocks */
    margin-left: auto; /* Center the content block */
    margin-right: auto; /* Center the content block */
    color: #333; /* Default text color for this section */
    font-family: 'Poppins', sans-serif; /* Consistent font family */
    line-height: 1.7; /* Enhanced line height for readability */
}

/* Headings within policyScopeWrap */
.policyScopeWrap h1 {
    font-size: 2.2rem; /* Moderate size for main section title */
    margin-top: 1.5em; /* Top margin for spacing */
    margin-bottom: 0.8em; /* Bottom margin for spacing */
    line-height: 1.2; /* Tighter line height for headings */
    color: #4A4A4A; /* Dark grey for headings */
}

.policyScopeWrap h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    color: #4A4A4A;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Standard sub-heading size */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    color: #4A4A4A;
}

.policyScopeWrap h4 {
    font-size: 1.2rem; /* Smaller heading for subsections */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    color: #4A4A4A;
}

.policyScopeWrap h5 {
    font-size: 1rem; /* Smallest heading, often for minor points */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    color: #4A4A4A;
}

/* Paragraphs within policyScopeWrap */
.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1em; /* Space between paragraphs */
    line-height: 1.7; /* Generous line height for readability */
    color: #333; /* Standard text color */
}

/* Unordered lists within policyScopeWrap */
.policyScopeWrap ul {
    list-style: disc; /* Default disc bullet points */
    margin-left: 20px; /* Indent the list items */
    margin-bottom: 1em; /* Space after the list */
    padding-left: 0; /* No extra padding */
}

/* List items within policyScopeWrap */
.policyScopeWrap li {
    font-size: 1rem; /* Consistent font size with paragraphs */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Line height for list item text */
    color: #333; /* Standard text color */
}

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

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

    .policyScopeWrap h2 {
        font-size: 1.5rem;
    }

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

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

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

    .policyScopeWrap p,
    .policyScopeWrap li {
        font-size: 0.95rem;
    }
}


.gallery-section h5{
    color: #fff !important;
}

.feature-card{
    flex: 1;
}