/* =========================
   Header Styles
   ========================= */

.section1 {
  background: url("../img/Home Page.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: 0 0;
  min-height: 100vh;
  width: 100vw;
  color: white;
  padding: 0px;
  padding-bottom: 10px;
}

/* Main navigation container */
.menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}

/* Logo styling */
.logo img {
  width: 180px;
  height: auto;
  margin-top: 10px;
}

/* Navigation items container */
.menu_items {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 30px;
}

/* Individual menu items */
.menu_item {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

/* Special menu item (e.g., Get a Quote) */
.menu_item4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}

/* The “Get a Quote” text with gradient effect */
.cost-cal {
  background: linear-gradient(90deg, #ffa502 16%, #ff5133 59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 11;
}
.hamburger .bar {
  height: 4px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu container (hidden by default) */
.mobile_menu {
  display: none;
}

/* Overlay for mobile menu */
.overlay {
  display: none;
}

/* Hover effect for navigation items */
.menu_item:hover {
  opacity: 0.8;
  color: #ff5133;
  cursor: pointer;
}

/* Phone number container in the header */
.phone {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
}

/* -------- Media Queries for Header -------- */

@media all and (min-width: 1920px) {
  .menu {
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 20px;
  }
  .menu_items {
    column-gap: 42px;
  }
  .menu_item {
    font-size: 21px;
  }
  /* The gradient effect in .cost-cal remains the same */
}

@media all and (max-width: 900px) {
  a:link {
    text-decoration: none !important; /* Removes the underline */
    color: inherit;
  }

  a:hover {
    text-decoration: none !important; /* Removes the underline */
    color: inherit;
  }

  a {
    text-decoration: none !important; /* Removes the underline */
    color: inherit;
  }

  body,
  html {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background-color: #141414;
  }
  body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .section1 {
    background: url("../img/Home Page.jpg") no-repeat center center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    color: white;
    padding: 0px;
    padding-bottom: 10px;
    min-height: 100vh;
  }

  .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo img {
    width: 180px;
    height: auto;
    margin-top: 10px;
  }

  .menu_items {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
  }

  .menu_item {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
  }

  .menu_item4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
  }

  .cost-cal {
    color: #ff5133;
  }

  .phone {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
  }

  /* Mobile-specific overrides */
  .menu_items {
    display: none;
  }

  .hamburger {
    display: block;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 11;
  }

  .hamburger .bar {
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    display: none;
  }

  .mobile_menu {
    display: flex;
    flex-direction: column;
    background-color: #141414;
    position: fixed;
    top: 0;
    left: -75%;
    height: 100%;
    width: 75%;
    z-index: 10;
    transition: left 0.3s ease;
  }

  .mobile_menu_item {
    padding: 15px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
  }

  .phone2 {
    justify-content: start;
    margin-left: 10px;
    margin-top: 15px;
  }

  /* Later link rules – these override previous a styles */
  a:link {
    text-decoration: underline;
  }

  a:hover {
    text-decoration: none;
  }

  a {
    text-decoration: none;
    color: white;
  }

  /* Footer styles */
  footer {
    padding: 0px;
    width: 100%;
    margin-top: 0px;
    z-index: 1;
  }

  .footer-top {
    padding-bottom: 10px;
    border-bottom: 1px solid #141414;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 30px 20px;
  }

  .footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 0px 20px;
    row-gap: 30px;
  }

  .footer-bottom-center {
    display: flex;
    column-gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }

  .foorter-img-wrap {
    display: flex;
    column-gap: 10px;
    align-items: start;
    justify-content: center;
  }

  .foorter-img-wrap a:nth-child(1) img {
    width: 45px;
    margin-top: 0px;
  }

  .foorter-img-wrap a:nth-child(2) img {
    width: 45px;
    margin-top: 0px;
  }

  .foorter-img-wrap a:nth-child(3) img {
    width: 85px;
    margin-left: -15px;
  }

  .footer-center-txt {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
  }

  .address {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .address p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 10px;
    color: #ffffff;
  }

  .address p:nth-child(2) {
    display: inline;
    line-height: 10px;
    margin: 0;
  }

  .footer-bottom-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    row-gap: 30px;
    width: 100%;
  }

  .bottom-social {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .copyright {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
  }

  #email-footer {
    margin-bottom: 16px;
    margin-top: -11px;
  }
}

/* =========================
   Footer Styles
   ========================= */

footer {
  padding: 0px;
  width: 100%;
  margin-top: 40px;
  z-index: 1;
}

/* Top section of the footer */
.footer-top {
  padding-bottom: 10px;
  border-bottom: 1px solid #141414;
  display: flex;
  justify-content: space-between;
  padding: 0px 60px;
}

/* Footer menu links */
.footer-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}
.footer-menu div {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

/* Bottom part of the footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px 20px 60px;
}

/* Center section in footer (for seals or certification images) */
.footer-bottom-center {
  display: flex;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
}

/* Container for the footer images */
.foorter-img-wrap {
  display: flex;
  column-gap: 20px;
  align-items: start;
  justify-content: center;
}
.foorter-img-wrap a:nth-child(1) img {
  width: 45px;
  margin-top: 2px;
}
.foorter-img-wrap a:nth-child(2) img {
  width: 45px;
  margin-top: 2px;
}
.foorter-img-wrap a:nth-child(3) img {
  width: 85px;
  margin-left: -20px;
}

/* Footer center text */
.footer-center-txt {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
}

/* Address and contact information styling */
.address {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
}
.address p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 10px;
  color: #ffffff;
}

/* Right section of the footer */
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  row-gap: 30px;
}

/* Social icons at the bottom */
.bottom-social {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  justify-content: center;
  align-items: center;
}
.bottom-social img {
  width: 28px;
}

/* Copyright text */
.copyright {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
}

/* -------- Media Queries for Footer -------- */

@media all and (min-width: 1920px) {
  footer {
    margin-top: 80px;
  }
  .footer-top {
    padding: 0px 80px;
  }
  .footer-menu {
    column-gap: 40px;
  }
  .footer-menu div {
    font-size: 18px;
    line-height: 30px;
  }
  .footer-bottom {
    padding: 40px 80px 20px 80px;
  }
  .footer-bottom-center {
    column-gap: 20px;
  }
  .foorter-img-wrap a:nth-child(1) img {
    width: 58px;
    margin-top: 0px;
  }
  .foorter-img-wrap a:nth-child(2) img {
    width: 58px;
    margin-top: 0px;
  }
  .foorter-img-wrap a:nth-child(3) img {
    width: 105px;
    margin-left: -25px;
  }
  .footer-center-txt {
    font-size: 16px;
  }
  .address {
    font-size: 20px;
  }
  .address p {
    font-size: 16px;
  }
  .copyright {
    font-size: 16px;
  }
  .bottom-social img {
    width: 34px;
  }
}

@media all and (min-width: 900px) and (max-width: 1200px) {
  .footer-menu div {
    font-size: 14px;
  }
}
