* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    --top-spacing: 100px;
    scroll-padding-top: var(--top-spacing);
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

/* Container for Main Content */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Welcome Section */
.welcome-section {
    background-image: url('/images//brcc-image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

/* Overlay to improve text readability */
.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black overlay */
    border-radius: 8px;
    z-index: 1;
}

.welcome-section h2,
.welcome-section p,
.welcome-section .btn {
    position: relative;
    z-index: 2;
    /* Ensure text and button are above the overlay */
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.welcome-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.about-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Service Times Section */
.services-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.services-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-section ul {
    list-style: none;
    font-size: 1.1rem;
    color: #666;
}

.services-section ul li {
    margin-bottom: 0.5rem;
}

/* Revival Section */
.revival-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.revival-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.revival-section ul {
    list-style: none;
    font-size: 1.1rem;
    color: #666;
}

.revival-section ul li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    /* Ensure the contact section doesn't float above the footer */
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-section a {
    color: #3498db;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar {
        display: none !important;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .welcome-section h2 {
        font-size: 2rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    .about-section h2,
    .services-section h2,
    .revival-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
}