body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #181a1b; /* Dark mode grey */
}

header {
    position: relative;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0,0,0);
}

header .header-img {
    height: 250px;
    display: block;
}

header .header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* Dark overlay for readability */
    z-index: 1;
}

header .header-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
}

header .logo-img {
    max-width: 120px;
    margin-bottom: 1rem;
}

header .header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

section {
    padding: 2rem 1rem;
    color: #f5f5f5;
    max-width: 800px;
    margin: auto;
}

section h2 {
    color: #ffb347;
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p, section label {
    font-size: 1.1rem;
    color: #eaeaea;
}

/* About section styles */
.about {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact section styles */
.contact {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #222;
    color: #fff;
}

.contact button {
    padding: 10px;
    background-color: #ffb347;
    color: #181818;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background-color: #0056b3;
}

/* Full width sections */
section.container-fluid {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
section.container-fluid img {
    width: 100vw;
    height: 400px;
    object-fit: cover;
}

section.w-100 {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

section.w-100 img {
    width: 100vw;
    height: 400px;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    section.container-fluid img {
        height: 180px;
    }

    section.w-100 img {
        height: 180px;
    }
}