/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  background-color: #111;
  color: whitesmoke;
}

/* Header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #222;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background-color: #333;
}
.top-bar a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 12pt;
  padding: 5px 10px;
}
/* Group links together on the right */
.contact-links {
  display: flex;
  gap: 10px;
}

.contact-links a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 12pt;
  padding: 5px 10px;
}
.contact-links a:hover {
  background-color: rgb(221, 51, 51);
  border-radius: 3px;
}

.contact-links .customer-login {
  background-color: coral;
}
.customer-login {
  background-color: coral;
}

/* Main Menu */
.main-nav {
  background-color: #222;
}
.menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding: 5px 10px;
  gap: 20px;
}
.menu > li {
  position: relative;
}
.menu a {
  display: block;
  padding: 5px 10px;
  font-size: 14pt;
  color: whitesmoke;
  text-decoration: none;
}
.menu a:hover {
  background-color: rgb(221, 51, 51);
  border-radius: 3px;
}

/* Dropdown under Services */
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #333;
  list-style: none;
  min-width: 200px;
  z-index: 1000;
}
.dropdown li a {
  padding: 10px;
  white-space: nowrap;
  font-size: 13pt;
}
.dropdown li a:hover {
  background-color: rgb(221, 51, 51);
}
/* Logo */
.logo {
  background-image: url("logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 50px;
}

/* Hide checkbox and hamburger by default */
.menu-toggle,
.hamburger-icon {
  display: none;
}

/* MOBILE STYLES 
  @media (max-width: 768px) {
  .hamburger-icon {
    display: block;
    padding: 10px;
    cursor: pointer;
    text-align: right;
    background-color: #222;
  }

  .hamburger-icon img {
    width: 30px;
    height: auto;
  }

  .menu {
    flex-direction: column;
    align-items: flex-end;
    display: none;
    padding: 10px;
  }

  .menu-toggle:checked + .hamburger-icon + .main-nav .menu {
    display: flex;
  }

  .menu a {
    width: 100%;
    text-align: right;
  }


  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: block;
    position: static;
    width: 100%;
  }

  .dropdown {
    background-color: #444;
    padding-left: 20px;
  }

  .dropdown li a {
    width: 100%;
  }
} */