/* ---------- Global ---------- */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

ul {
    list-style: none;
}

/* ---------- Header ---------- */

header {
    border-bottom: 3px solid #0b6630;
    padding: 15px 30px;
}

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

nav img {
    height: 60px;
}

/* ---------- Navigation ---------- */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: bold;
    color: #222;
}

.nav-menu a:hover {
    color: #ff6a00;
}

/* ===== Dropdown ===== */

.has-dropdown {
    position: relative;
}

/* Make "Services" match other nav links */
.has-dropdown > span {
    font-weight: bold;
    color: #222;
    cursor: pointer;
    display: block;
    line-height: 1.2;
}

.has-dropdown > span:hover {
    color: #ff6a00;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    min-width: 240px;
    z-index: 1000;
}

/* Desktop hover */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown {
        display: block;
    }
}

/* Mobile tap (always visible when clicked) */
@media (max-width: 768px) {
    .dropdown {
        display: block;
        position: static;
        border: none;
    }
}

/* ---------- Sections ---------- */

.section {
    padding: 40px 20px;
}

/* ---------- Footer ---------- */

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
