/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #343a40; /* Standard dark text color */
    background-color: #f8f9fa; /* Light overall background */
    scroll-behavior: smooth;
}

/* Text Colors for Readability */
h1, h2, h3, h4, h5, h6 {
    color: #212529;
}
p {
    color: #495057;
}

/* Link Styles */
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    color: #212529;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6fdc6f, #4CAF50); /* Green gradient accent */
    border-radius: 2px;
}

.sub-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #28a745; /* Green accent for sub-titles */
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}
.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}
.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #28a745; /* Green accent for brand text */
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: #555;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #28a745; /* Green accent on hover/active */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/graphics/farm-background_2.jpg') no-repeat center center/cover; /* Background image with dark overlay */
    color: #fff;
    min-height: 100vh;
    padding-top: 100px; /* Offset for fixed navbar */
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(60, 179, 113, 0.8)); /* Green gradient overlay */
    opacity: 0.7;
    z-index: 0;
}
.hero-section > .container-fluid {
    position: relative;
    z-index: 1;
}
.hero-description {
    font-size: 1.15rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.install-btn {
    background: linear-gradient(45deg, #28a745, #4CAF50); /* Green gradient */
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.install-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #4CAF50, #28a745); /* Reversed gradient on hover */
    color: #fff;
}
.game-hero-img {
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

/* Game Description Section */
.features-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.feature-icon {
    color: #28a745; /* Green accent for feature icons */
    font-size: 1.2rem;
}

/* Screenshots Slider */
.bg-light-accent {
    background-color: #e9ecef; /* Light grey accent for alternating sections */
}
.carousel-item img {
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}
.carousel-indicators [data-bs-target] {
    background-color: #28a745; /* Green indicators */
}

/* Ratings & Reviews */
.rating-stars i {
    color: #ffc107; /* Gold color for stars */
    font-size: 1.8rem;
    margin: 0 2px;
}
.review-card {
    border: 1px solid #dee2e6;
    border-left: 5px solid #28a745; /* Green accent border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-card .card-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}
.quote-icon {
    font-size: 1.5rem;
    color: #ced4da;
}
.review-card .card-subtitle {
    font-size: 0.9rem;
}

/* System Requirements */
.requirement-card {
    border: 1px solid #dee2e6;
    border-top: 5px solid #28a745; /* Green accent border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.requirement-card .card-title {
    color: #28a745; /* Green accent for title */
    font-weight: 600;
}
.requirement-card ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}
.requirement-icon {
    color: #28a745; /* Green accent for icons */
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #212529; /* Dark background */
    color: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 40px;
}
.footer-brand .logo-img {
    height: 50px;
    filter: brightness(0) invert(1); /* Make logo white */
}
.footer-brand .brand-text {
    font-weight: 700;
    font-size: 1.6rem;
    color: #f8f9fa; /* White text for brand in footer */
}
.footer-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f8f9fa;
}
.footer-links li a {
    color: #adb5bd;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
}
.footer-links li a:hover {
    color: #28a745; /* Green accent on hover */
    text-decoration: none;
}
.footer-links li span {
    color: #adb5bd;
}
.footer-links li i {
    color: #28a745; /* Green accent for contact icons */
}
.social-icons a {
    color: #adb5bd;
    font-size: 1.8rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #28a745; /* Green accent on hover */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 80px;
    }
    .hero-section .col-md-6 {
        margin-bottom: 30px;
    }
    .hero-description {
        font-size: 1rem;
    }
    .install-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .game-hero-img {
        max-height: 400px;
    }
    .section-title {
        font-size: 2rem;
    }
    .sub-section-title {
        font-size: 1.5rem;
    }
    .features-list li {
        font-size: 0.95rem;
    }
    .rating-stars i {
        font-size: 1.5rem;
    }
    .review-card .card-text {
        font-size: 1rem;
    }
    .footer-brand .brand-text {
        font-size: 1.4rem;
    }
    .footer-heading {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    .footer-links li a, .footer-links li span {
        font-size: 0.9rem;
    }
}
/* Styles for the content wrapper */
.rightsFieldUnit {
    padding: 40px 20px; /* Top/bottom and left/right padding */
    max-width: 800px; /* Max width for readability */
    margin: 0 auto; /* Center the content block */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Heading styles within .rightsFieldUnit */
.rightsFieldUnit h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    line-height: 1.2;
    margin-top: 1.8em; /* Top margin for spacing */
    margin-bottom: 0.8em; /* Bottom margin for spacing */
    font-weight: 700; /* Bold font weight */
    color: #212529; /* Darker text color */
}

.rightsFieldUnit h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    font-weight: 600;
    color: #212529;
}

.rightsFieldUnit h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
    color: #212529;
}

.rightsFieldUnit h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #212529;
}

.rightsFieldUnit h5 {
    font-size: 1rem; /* Moderate font size for H5 (often same as body text but bolder) */
    line-height: 1.6;
    margin-top: 0.8em;
    margin-bottom: 0.4em;
    font-weight: 600;
    color: #212529;
}

/* Paragraph styles within .rightsFieldUnit */
.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
    color: #495057; /* Standard text color */
}

/* Unordered list styles within .rightsFieldUnit */
.rightsFieldUnit ul {
    list-style: disc; /* Default disc bullet points */
    padding-left: 25px; /* Indent list items */
    margin-bottom: 1em; /* Space after the list */
    color: #495057; /* Inherit text color */
}

/* List item styles within .rightsFieldUnit */
.rightsFieldUnit li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 8px; /* Space between list items */
}
