/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.5);
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    color: white;
}

.logo img {
    height: 85px;       /* increased size */
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

.logo h2 {
    font-size: 22px;
}

.logo p {
    font-size: 12px;
    color: #d4af37;
}

/* NAVIGATION */
nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    margin: 0 8px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* ================= HERO / BACKGROUND ================= */
.hero,
.page-bg {
    min-height: 100vh;
    padding-top: 130px;

    background:
        linear-gradient(rgba(0, 80, 0, 0.85), rgba(0, 40, 0, 0.9)),
        url('../images/bg.jpg');

    background-size: cover;
    background-position: center;
    color: white;
}

/* HERO CENTER */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay h1 {
    font-size: 50px;
}

.overlay h1 span {
    color: #d4af37;
}

/* ================= FORM ================= */
.form-container {
    max-width: 1000px;
    margin: auto;

    background: rgba(0, 50, 0, 0.95);
    padding: 30px;
    border-radius: 12px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* INPUTS */
input,
select,
textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
    width: 100%;
    font-size: 14px;
}

/* FULL WIDTH */
.full {
    grid-column: span 2;
}

/* BUTTON */
button {
    background: linear-gradient(to right, #d4af37, #f7e7b5);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.02);
}

/* ================= LIST (ABOUT PAGE) ================= */
ul {
    padding-left: 20px;
    margin-top: 10px;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ================= CONTACT ================= */
textarea {
    resize: none;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 15px;
    background: black;
    color: white;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        padding: 10px;
    }

    .logo img {
        height: 70px;
    }

    nav {
        justify-content: center;
        margin-top: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .overlay h1 {
        font-size: 32px;
    }
}