* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
}

h1, h2, h3, h4, h5, h6, p, li, a {
    color: white;
    text-decoration: none;
}

header {
    display: none;
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 100;
    background-color: black;
}

header img {
    position: relative;
    height: 70px;
    top: 50%;
    padding: 0 25px 0 100px;
    transform: translate(0, -50%);
}

header a:hover {
    transform: scale(1.1);
}

header a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffffff; /* underline color */
    transition: width 0.3s ease, font-size 0.3s ease;
}

header a:hover::after {
    cursor: pointer;
    width: 100%;
}



/* Base styles */
body {
    margin: 0;
    font-family: sans-serif;
}

.nav-desktop ul, .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu ul {
    padding: 20px 0 0 30px;
}

.mobile-menu a {
    font-size: 25px;
}

#logo {
    padding-top: 30px;
    position: absolute;
    padding-bottom: 20px;
    height: 100px;
    left: 50%;
    transform: translate(-50%, 0);
}

/* Mobile nav */
.menu-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    z-index: 1001;
    background: #000;
    color: #fff;
    border-style: none;
    border-radius: 1000px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    height: 60px;
    width: 60px;
    box-shadow: 0 0 10px #ffffff66;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:active {
    background-color: #333;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background-color: #000;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1000;
}

.mobile-menu.open {
    left: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 1000px;
    color: white;
    width: 60px;
    height: 60px;
}

.close-menu:focus {
    outline: none;
}

.close-menu:active {
    background:local;
    background-color: #eee;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

.phoneImg {
    width: 25px;
    height: 25px;
    padding: 0px;
    margin: 0px;
}

#mainLinks {
    padding-top: 150px;
}

#phoneNumberBox {
    display: flex; 
}

#navLinks {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

#phoneNumber {
    display: flex;
    justify-content: end;
    padding: 30px;
}

/* Responsive Breakpoint */
@media screen and (min-width: 601px) {
    .navHeader {
        display: block;
    }

    .nav-desktop {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .nav-desktop a {
        position: relative;
        display: inline-block;
        background: none;
        color: white;
        font-size: 20px;
        margin: 20px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }

    .menu-toggle,
    .mobile-menu {
        display: none;
    }

    .nav-desktop ul {
        flex-direction: row;
    }
}
  