html {
  font-size: clamp(0px, calc(1.2vw + 0.3vh), 16px);
}

/* MAKE BG BIGGER SO FOOTER ALWAYS FILLS GAP*/

:root{
  --offblack: #2d2d2d;
  --white: #ffffff;
  --offwhite: #f8f8f8;
  --lightGrey: #f5f5f5;
  --grey: #e1e1e1;
  --orange: #ff3d0c;
  --darkOrange: #912f16;

  --e0: 0.15rem;
  --e1: 0.5rem;
  --e2: 0.75rem;
  --e3: 1rem;
  --e4: 1.25rem;
  --e5: 1.75rem;

  --e6: 2.5rem;
  --e7: 3.75rem;
  --e8: 6.25rem;
  --e9: 10rem;
  --e10: 15rem;

  --op: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header{
  width: 100%;
  min-height: var(--e7);
  padding: var(--e2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--e3);
}

.logo{
  height: var(--e5);
  aspect-ratio: 1 / 1;
}

.name{
  display: flex;
  align-items: center;
  color: var(--offblack);
  font-size: var(--e4);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.servicesdiv{
  width: 100%;
  padding: var(--e2);
  min-height: var(--e7);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 var(--e1) var(--grey);
}

.servicetext{
  color: var(--black);
  font-size: var(--e4);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
}

.herodiv{
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--e7);
}

.titletext{
  color: var(--black);
  font-size: var(--e7);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.buttonsdiv{
  background-color: var(--lightGrey);
  padding: var(--e5);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: var(--e5);
  border-radius: var(--e2);
}

.phonebutton{
  position: relative;
  background-color: var(--orange);
  padding: var(--e2);
  padding-left: var(--e8);
  padding-right: var(--e8);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--e2);
  box-shadow: var(--e0) var(--e0) var(--e0) var(--darkOrange);
  cursor: pointer;
}

.phonebutton::before {
  position: absolute;
  top: -0.85rem;
  left: -10%;
  display: block;
  width: 120%;
  height: calc(100% + 1.7rem); /* This could be a calculation */
  opacity: var(--op);
  background-color: blue;
  content: "";
}

.msgbuttonsdiv{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--e5);
}

.textbutton{
  position: relative;
  background-color: var(--orange);
  width: 50%;
  padding: var(--e1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--e2);
  box-shadow: var(--e0) var(--e0) var(--e0) var(--darkOrange);
  cursor: pointer;
}

.textbutton::before {
  position: absolute;
  top: -0.85rem;
  left: -20%;
  display: block;
  width: calc(120% + 0.85rem);
  height: calc(100% + 1.7rem);
  opacity: var(--op);
  background-color: blue;
  content: "";
}

.whatsappbutton{
  position: relative;
  background-color: var(--orange);
  width: 50%;
  padding: var(--e1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--e2);
  box-shadow: var(--e0) var(--e0) var(--e0) var(--darkOrange);
  cursor: pointer;
}

.whatsappbutton::before {
  position: absolute;
  top: -0.85rem;
  left: -0.85rem;
  display: block;
  width: calc(120% + 0.85rem);
  height: calc(100% + 1.7rem);
  opacity: var(--op);
  background-color: blue;
  content: "";
}

.emailbutton{
  position: relative;
  background-color: var(--orange);
  width: 100%;
  padding: var(--e2);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--e2);
  box-shadow: var(--e0) var(--e0) var(--e0) var(--darkOrange);
  cursor: pointer;
}

.emailbutton::before {
  position: absolute;
  top: -0.85rem;
  left: -10%;
  display: block;
  width: 120%;
  height: calc(100% + 1.7rem);
  opacity: var(--op);
  background-color: blue;
  content: "";
}

.phonebuttontext{
  color: var(--white);
  font-size: var(--e6);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.msgbuttontext{
  color: var(--white);
  font-size: var(--e5);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.emailbuttontext{
  color: var(--white);
  font-size: var(--e5);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.infodiv{
  width: 100%;
  display: flex;
  justify-content: space-around;
  box-shadow: inset 0 0 var(--e2) var(--grey);
}

.infosection{
  width: 30vw;
  padding: var(--e6);
  display: flex;
  flex-direction: column;
}

.infotitle{
  margin-left: var(--e6);
  margin-bottom: var(--e3);
  color: var(--black);
  font-size: var(--e5);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.infotitleunderline{
  background-color: var(--orange);
  width: 80%; 
  height: var(--e0);
  margin-left: var(--e4);
  margin-bottom: var(--e6);
  box-shadow: 0px var(--e0) var(--e2) var(--orange);
}

.infotextbubble{
  background-color: var(--offwhite);
  width: 100%;
  padding: var(--e6);
  display: flex;
  flex-direction: column;
  border-radius: var(--e2);
}

.textsize1{
  color: var(--black);
  font-size: var(--e3);
  font-family: "Open Sans", sans-serif;
  line-height: var(--e5);
}

.textsize2{
  color: var(--black);
  font-size: var(--e4);
  font-family: "Open Sans", sans-serif;
  line-height: var(--e5);
}

.textsize3{
  color: var(--black);
  font-size: var(--e5);
  font-family: "Open Sans", sans-serif;
  line-height: var(--e5);
}

.textsize4{
  color: var(--black);
  font-size: var(--e6);
  font-family: "Open Sans", sans-serif;
  line-height: var(--e7);
}

.textsize5{
  color: var(--black);
  font-size: var(--e7);
  font-family: "Open Sans", sans-serif;
  line-height: var(--e7);
}

.bold{
  font-weight: 600;
}

.orange{
  color: var(--orange);
}

.marginsize1{
  margin-bottom: var(--e5);
}

.marginsize2{
  margin-bottom: var(--e6);
}

.marginsize3{
  margin-bottom: var(--e7);
}

.footer{
  background-color: var(--orange);
  width: 100%;
  height: var(--e7);
}

.legalpagediv{
  width: 100%;
  display: flex;
  justify-content: center;
}

.legalpagetext{
  width: 80%;
  padding-top: var(--e7);
  padding-bottom: var(--e7);
}

@media (max-width: 1500px) {
  .infodiv{
    flex-direction: column;
    align-items: center;
  }
  .infosection{
    width: 100%;
  }
} 

@media (max-width: 1000px) {
  .herodiv{
    height: 60vh;
  }
} 

@media (max-width: 450px) {

  .logo{
    height: var(--e7);
  }

  .servicetext{
    font-size: var(--e5);
  }

  .name{
    font-size: var(--e5);
  }

  .phonebuttontext{
    font-size: var(--e7);
  }

  .msgbuttontext{
    font-size: var(--e6);
  }

  .emailbuttontext{
    font-size: var(--e6);
  }

  .phonebutton{
    padding: var(--e3);
    padding-left: var(--e8);
    padding-right: var(--e8);
  }

  .msgbutton{
    padding: var(--e2);
  }

  .emailbutton{
    padding: var(--e3);
  }

  .buttonsdiv{
    padding: var(--e6);
    gap: var(--e6);
  }

  .msgbuttonsdiv{
    gap: var(--e6);
  }
} 


