/* Base Styles */
body {
    font-family: "Crimson Text", serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header-bg {
    position: relative;
}

.hero-image {
    background: url('/.netlify/images?url=/images/hero-bg.jpg') no-repeat center;
    background-size: cover;
    height: 375px;
}

/* Media Query for iPad and below (1024px and down) */
@media (max-width: 1024px) {
    .hero-image {
        height: 225px;
    }
}

/* Section Backgrounds */
.section-bg-gradient {
    background: linear-gradient(44deg, #9e2a0d 0%, #ffffff 100%);
}

.section-bg-image {
    background: url('/.netlify/images?url=/images/bg-nro-texture.jpeg') no-repeat center;
    background-size: cover;
    color: #2a2a2a;
}

/* Headings in Main Content */
main h2,
main h3 {
    font-family: "Oswald", sans-serif;
    color: #d01311;
    font-size: 2rem;
}

/* Override for FAQ and Health & Welfare */
.section-bg-gradient h2,
.section-bg-image h2 {
    color: #000;
}

/* Carousel */
.carousel-inner img {
    max-height: 400px;
    object-fit: cover;
}

/* CTA Section */
.section-cta {
    background-color: #F7ECE1;
}

.btn-primary {
    font-family: "Poppins", sans-serif; /* Changed to Proxima Soft alternative */
    background-color: #d01311;
    border: 1px solid #d01311;
    color: #fff;
    display: inline-block;
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    font-weight: thin;
}

.btn-primary:hover {
    background-color: #a70a08;
    border: 1px solid #a70a08;
    color: #fff;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: bold;
    background-color: transparent;
    color: #333;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #9e2a0d;
}

.accordion-body {
    padding: 1.5rem;
    color: #555;
}

.accordion-body ul {
    padding-left: 1.5rem;
}

.accordion-body strong {
    color: #9e2a0d;
}

/* Footer */
footer {
    background-color: #000;
}