@font-face {
    font-family: 'Mulish-Regular';
    src: url('public/Mulish/static/Mulish-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AzeretMono-Regular';
    src: url('public/Azeret_Mono/static/AzeretMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

 body {
    font-family: 'Mulish-Regular', sans-serif;
    background: #071E26;
    color: #E6E9E9;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'AzeretMono-Regular', sans-serif;
    font-weight: normal;
}

header {
    background: #071E26;
    color: #E6E9E9;
    padding: 10px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #E6E9E9;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #D9913C;
}

.logo {
    height: 50px; /* Adjust as necessary */
}

.main {
    flex: 1;
}

.hero {
    text-align: center;
    padding: 20px;
}

.centered-heading {
    color: #E6E9E9;
    margin-bottom: 0;
}

/* .left-aligned {
    text-align: left;
}

.right-aligned {
    text-align: right;
} */

.services {
    gap: 20px;
    padding: 20px;
    /* margin-bottom: 40px; */
}

.service {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 20px; /* Add padding to create some space inside the box */
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px; /* Optional: for rounded corners */
}

.contact, .about {
    padding: 20px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
}

.submit-button {
    margin-top: 1rem;
}

#contactForm {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 20px; /* Add padding to create some space inside the box */
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px; /* Optional: for rounded corners */
}

.centered {
    text-align: center;
}