/* Reset some default styles */
body, h1, h2, p, ul, li, form {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #f5f5f5;
    color: #333;
}
/* Header Styles */
.header-content {
    position: relative;
    height: 150px;
    background-size: cover;
    background-position: center;
    text-align: center;
    /* display: flex;  */
    align-items: center;
    justify-content: center;
    color: #331122; /* Set text color to white */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
    z-index: 1;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #0033bb; /* Set text color to white */
}

p {
    font-size: 1.2em;
}


/* Navbar Styles */
.navbar {
    background-color: #333;
    line-height: 3.1;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 1em;
    transition: background-color 0.3s ease-in-out;
}

.navbar a:hover {
    background-color: #555;
}

/* Content Section Styles */
.content-section {
    padding: 50px;
    text-align: center;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-section img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

/* Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Form Styles */
form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

button {
    cursor: pointer;
    padding: 10px;
    background-color: #00587a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #003653;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    /* position: fixed; */
    bottom: 0;
    width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    header {
        height: 400px;
    }

    .content-section {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.5em;
    }

    p, .navbar a {
        font-size: 1em;
    }
}
