/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

header {
    background-color: #ffffff;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2px;
}

.menu-links {
    display: flex;
    gap: 25px;
    position: relative;
}

.menu-links li {
    padding: 15px 0;
}

.menu-links li a {
    color: #2E3A47;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu-links li a:hover {
    color: #E6A400;
}

.contact-btn {
    background-color: #003366;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 7px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffff;
    color: #E6A400 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0056b3;
    margin: 3.5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-links {
        position: fixed;
        top: 90px;
        left: -100%;
        background-color: #ffff;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        text-align: center;
        gap: 0;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    .menu-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
