@font-face {
    font-family: "kirsty";
    src: url("../fonts/kirsty.otf");
}

@font-face {
    font-family: "opensanslight";
    src: url("../fonts/oslight.ttf");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: opensanslight;
    background: url("../images/background2.jpg") center/cover no-repeat fixed;
    justify-content: center;
    background-color: #333;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #077a2a;
    filter: drop-shadow(0 0 0.50rem #077a2a);
}

header {
    width: 100%;
    background-color: #333;
    border-top: 2px solid #077a2a;
    border-bottom: 2px solid #077a2a;
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center; /* ADDED: center the logo horizontally */
    padding: 0 20px;
    background: url("../images/background3.jpg") center/cover no-repeat fixed;
}

.headerLogo img {
    height: 57px;
    width: 252px;
    filter: drop-shadow(0 0 0.50rem #077a2a);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 100px; /* Room for fixed footer */
}

.heroSection, .contactUs {
    background-color: #222;
    border: 2px solid #077a2a;
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 15px 20px;
    background: url("../images/background3.jpg") center/cover no-repeat fixed;
}

.contactUs form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.contactUs input, .contactUs textarea {
    width: 100%;
    padding: 8px;
    background-color: #111;
    color: white;
    border: 1px solid #555;
}

.contactUs input[type="submit"] {
    background-color: #077a2a;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    filter: drop-shadow(0 0 0.50rem #077a2a);
}

.contactUs input[type="submit"]:hover {
    background-color: #077a2a;
    filter: drop-shadow(0 0 0.50rem #077a2a);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: white;
    text-align: center;
    border-top: 2px solid #077a2a;
    padding: 10px 0;
    background: url("../images/background3.jpg") center/cover no-repeat fixed;
}
