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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #056e88;
    text-decoration: none;
}

a:hover {
    color: #00a1c2;
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 75px; /* adjust logo size here */
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav li {
    display: inline-block;
}

.main-nav a {
    font-weight: bold;
    transition: color 0.3s ease;
}

/* --- HERO VIDEO --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* --- SECTIONS --- */
.content-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #056e88;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- CONTACT FORM --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.contact-form button {
    padding: 15px;
    background-color: #056e88;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #00a1c2;
}

/* --- SUCCESS / ERROR MESSAGES --- */
.contact-success {
    color: #0f0;
    margin-bottom: 15px;
}

.contact-error {
    color: #f00;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #000;
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .content-section {
        padding: 80px 15px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .site-logo {
        height: 50px;
    }
}
