/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Container for Centering Content */
.container {
    max-width: 60ch;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo */
.logo img {
    max-height: 80px;
    display: block;
    margin: 1rem auto;
}

/* Navigation Styles */
nav {
    background-color: #004d40;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem;
    display: block;
}

nav ul li a:hover {
    background-color: #00332e;
}

/* Hero Section */
.hero {
    background: url('/hfoc/hero.jpg') no-repeat center center/cover;
    position: relative;
    color: #ffffff;
    text-align: center;
    height: 60vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background-color: rgba(0, 77, 64, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white; /* Fill color */
    -webkit-text-stroke: 1px black; /* Outline (stroke) around the text */
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white; /* Fill color */
    -webkit-text-stroke: 1px black; /* Outline (stroke) around the text */
}

.btn-primary {
    background-color: #009688;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #00796b;
}

/* Footer Styles */
footer {
    background-color: #004d40;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: cyan;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}
