body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Default text color */
    background-color: #1A2B3C;
}

/* Custom Colors */
.bg-dark-custom {
    background-color: #1A2B3C !important;
}

.bg-light-custom {
    background-color: #2F4F4F !important;
}

.text-dark-custom {
    color: #E0E0E0 !important;
}

.text-primary-accent {
    color: #FF7F50 !important; /* Coral */
}

.btn-primary-custom {
    background-color: #FF7F50;
    border-color: #FF7F50;
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #FF6347; /* Tomato */
    border-color: #FF6347;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: #7CFC00; /* Lawn Green */
    border-color: #7CFC00;
    color: #1A2B3C;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary-custom:hover {
    background-color: #6B8E23; /* Olive Drab */
    border-color: #6B8E23;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.navbar-brand .fw-bold {
    color: #FF7F50; /* Primary accent for logo text */
}

.navbar .nav-link {
    color: #E0E0E0 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #FF7F50 !important;
}

.fixed-top {
    background-color: #1A2B3C;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 43, 60, 0.7), rgba(26, 43, 60, 0.7)), url('graphics/media/chicken-gun-hero-bg.webp') no-repeat center center/cover;
    min-height: 100vh;
    padding-top: 100px; /* Adjust for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations for Hero (simple fade-in) */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.animate-fade-in.delay-1 {
    animation-delay: 0.3s;
}

.animate-fade-in.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Feature Cards */
.feature-card {
    background-color: #2F4F4F;
    border: 1px solid #3A5F6F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FF7F50;
}

/* Gallery Carousel */
.carousel-item img {
    max-height: 600px;
    object-fit: contain;
    width: 100%;
    background-color: #1A2B3C;
    padding: 10px; /* Padding inside carousel item for images */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators [data-bs-target] {
    background-color: #FF7F50;
}

/* Reviews Section */
.review-card {
    background-color: #2F4F4F;
    border: 1px solid #3A5F6F;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.review-card img {
    border: 2px solid #FF7F50;
}

.review-card .text-muted {
    color: #B0B0B0 !important;
}

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

/* Contact Section */
.list-unstyled a {
    word-break: break-all;
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.list-unstyled a.hover-primary-accent:hover {
    color: #FF7F50 !important;
}

/* Footer */
footer {
    background-color: #1A2B3C !important;
    border-top: 1px solid #2F4F4F;
}

footer a {
    transition: color 0.3s ease;
}

footer a.hover-white:hover {
    color: #FFFFFF !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        height: 70vh;
        padding-top: 80px;
    }

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

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

    .navbar-collapse {
        background-color: #1A2B3C;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (max-width: 767.98px) {
    footer .d-flex {
    flex-wrap: wrap;
 }
    section {
        padding: 60px 0;
    }

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

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

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .feature-card, .review-card {
        padding: 20px;
    }

    .review-card img {
        width: 50px !important;
        height: 50px !important;
    }
}
/* Styles for the main content wrapper */
.secureTermsHub {
    padding-top: 80px; /* Top padding for the section */
    padding-bottom: 80px; /* Bottom padding for the section */
    padding-left: 15px; /* Left padding for smaller screens */
    padding-right: 15px; /* Right padding for smaller screens */
    max-width: 960px; /* Max width for content readability */
    margin-left: auto; /* Center the content block */
    margin-right: auto; /* Center the content block */
    color: #E0E0E0; /* Ensure text color within this section */
}

/* Heading styles */
.secureTermsHub h1 {
    font-size: 2.5rem; /* H1 font size */
    margin-top: 2.5rem; /* Top margin for H1 */
    margin-bottom: 1rem; /* Bottom margin for H1 */
    color: #FF7F50; /* Accent color for main headings */
    line-height: 1.2; /* Line height for H1 */
}

.secureTermsHub h2 {
    font-size: 2rem; /* H2 font size */
    margin-top: 2rem; /* Top margin for H2 */
    margin-bottom: 0.9rem; /* Bottom margin for H2 */
    color: #E0E0E0; /* Default text color for H2 */
    line-height: 1.3; /* Line height for H2 */
}

.secureTermsHub h3 {
    font-size: 1.75rem; /* H3 font size */
    margin-top: 1.8rem; /* Top margin for H3 */
    margin-bottom: 0.8rem; /* Bottom margin for H3 */
    color: #E0E0E0; /* Default text color for H3 */
    line-height: 1.4; /* Line height for H3 */
}

.secureTermsHub h4 {
    font-size: 1.5rem; /* H4 font size */
    margin-top: 1.6rem; /* Top margin for H4 */
    margin-bottom: 0.7rem; /* Bottom margin for H4 */
    color: #E0E0E0; /* Default text color for H4 */
    line-height: 1.5; /* Line height for H4 */
}

.secureTermsHub h5 {
    font-size: 1.25rem; /* H5 font size */
    margin-top: 1.4rem; /* Top margin for H5 */
    margin-bottom: 0.6rem; /* Bottom margin for H5 */
    color: #E0E0E0; /* Default text color for H5 */
    line-height: 1.6; /* Line height for H5 */
}

/* Paragraph styles */
.secureTermsHub p {
    font-size: 1.1rem; /* Paragraph font size for readability */
    margin-bottom: 1.2rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for paragraphs */
    color: #E0E0E0; /* Ensure paragraph text color */
}

/* Unordered list styles */
.secureTermsHub ul {
    list-style: disc; /* Default disc bullet */
    margin-bottom: 1.5rem; /* Bottom margin for the list */
    padding-left: 25px; /* Indentation for list items */
}

/* Ordered list styles (added for completeness) */
.secureTermsHub ol {
    list-style: decimal; /* Default decimal numbering */
    margin-bottom: 1.5rem; /* Bottom margin for the list */
    padding-left: 25px; /* Indentation for list items */
}

/* List item styles */
.secureTermsHub li {
    font-size: 1.1rem; /* Font size for list items */
    margin-bottom: 0.8rem; /* Margin between list items */
    line-height: 1.6; /* Line height for list items */
    color: #E0E0E0; /* Ensure list item text color */
}
