/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Default weight */
    font-style: normal;
    box-sizing: border-box;
    font-size: 18px !important;
}

body {
    background-color: #FFF5E0; /* Light cream/orange background */
    color: #333333; /* Standard dark text color */
    line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #FF6600; /* Orange for headings */
}

.section-title {
    font-size: 2.5rem !important;
    margin-bottom: 3rem;
    position: relative;
    color: #FF6600;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #FF8C00;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh; /* Full viewport height */
    background: url('img/media/chicken-road-hero_12.png') no-repeat center center/cover;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.logo-link {
    display: inline-block;
    max-width: 150px; /* Adjust logo size */
}

.logo-img {
    height: auto;
    width: 100%;
}

.hero-section h1 {
    font-size: 4.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
    font-size: 1.5rem !important;
    margin-left: auto;
    margin-right: auto;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.play-button {
    background-color: #FF8C00; /* Darker orange for button */
    border-color: #FF8C00;
    font-size: 1.8rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    background-color: #FFA500; /* Lighter orange on hover */
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* About Section */
#about-game {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.text-muted-dark {
    color: #555555;
}

#about-game img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 2rem;
    border: 5px solid #FFDAB9; /* Light peach border */
}

/* Getting Started Section */
#getting-started {
    background-color: #FFFAE6; /* Very light orange background */
    padding: 5rem 0;
}

.getting-started-list {
    list-style: none;
    padding: 0;
}

.getting-started-list li {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.getting-started-list li:hover {
    transform: translateY(-5px);
}

.getting-started-list .icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #FFFFFF;
    font-size: 2rem;
}

.getting-started-list li span {
    font-size: 1.15rem;
    color: #333333;
}

/* Highlights Section */
#highlights {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.highlight-card {
    background-color: #FFFAE6; /* Light orange for cards */
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.highlight-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.highlight-card h5 {
    color: #FF6600;
    margin-bottom: 0.75rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #555555;
}

/* Footer */
.footer-bg {
    background-color: #FF6600; /* Dark orange for footer */
    padding: 3rem 0;
}

.footer-logo-link {
    display: inline-block;
    max-width: 100px; /* Adjust logo size */
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: auto;
    width: 100%;
    filter: brightness(0) invert(1); /* Make logo white for dark background */
}

.footer-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    color: #FFF5E0; /* Light text for footer */
}

.footer-links a {
    color: #FFF5E0; /* Light text for links */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links span {
    color: #FFF5E0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3.5rem !important;
    }
    .hero-section .lead {
        font-size: 1.2rem !important;
    }
    .play-button {
        font-size: 1.5rem;
        padding: 0.7rem 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .getting-started-list li {
        flex-direction: column;
        text-align: center;
    }
    .getting-started-list .icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .highlight-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
    }
    .hero-section h1 {
        font-size: 2.8rem !important;
    }
    .hero-section .lead {
        font-size: 1rem !important;
    }
    .play-button {
        font-size: 1.3rem;
        padding: 0.6rem 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .footer-links a {
        display: block;
        margin: 0.5rem 0 !important;
    }
    .footer-links span {
        display: none;
    }
}
/* Styles for content within .userClauseNet */
.userClauseNet {
    padding-top: 3rem; /* Top padding for the content block */
    padding-left: 1.5rem; /* Left padding for the content block */
    padding-right: 1.5rem; /* Right padding for the content block */
    max-width: 800px; /* Maximum width for readability */
    margin-left: auto; /* Center the content block horizontally */
    margin-right: auto; /* Center the content block horizontally */
    color: #333333; /* Default text color for this section */
}

.userClauseNet h1 {
    font-size: 2em; /* Moderate font size for H1 */
    margin-bottom: 1.2em; /* Spacing below H1 */
    color: #333333; /* Text color for H1, overriding global orange */
    font-weight: 700; /* Bold font weight */
}

.userClauseNet h2 {
    font-size: 1.75em; /* Moderate font size for H2 */
    margin-bottom: 1.1em; /* Spacing below H2 */
    color: #333333; /* Text color for H2 */
    font-weight: 700;
}

.userClauseNet h3 {
    font-size: 1.5em; /* Moderate font size for H3 */
    margin-bottom: 1em; /* Spacing below H3 */
    color: #333333; /* Text color for H3 */
    font-weight: 700;
}

.userClauseNet h4 {
    font-size: 1.25em; /* Moderate font size for H4 */
    margin-bottom: 0.9em; /* Spacing below H4 */
    color: #333333; /* Text color for H4 */
    font-weight: 700;
}

.userClauseNet h5 {
    font-size: 1.1em; /* Moderate font size for H5 */
    margin-bottom: 0.8em; /* Spacing below H5 */
    color: #333333; /* Text color for H5 */
    font-weight: 700;
}

.userClauseNet p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Line height for better readability */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    color: #333333; /* Text color for paragraphs */
}

.userClauseNet ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1rem; /* Spacing after the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
}

.userClauseNet li {
    font-size: 1rem; /* Font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #333333; /* Text color for list items */
}
