
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
 font-family: 'Poppins', sans-serif;
 background: #f0f0f0;
}

nav  {
  margin: 2px;
  padding: 10px; 
  list-style: none;
  font-size: 1.125rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

ul  {
  display: flex;
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
 
nav  .container-navbar  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  
}

nav  .container-navbar .navbar-items  {
  display: flex;
}

nav  .container-navbar .logo-img img {
  width: 75px;
}

nav  .container-navbar .navbar-items a {
  padding: 5px;
  display: inline-block ;
  transition: 0.6s;
  transform: scale(1);
}

nav .container-navbar .navbar-items a:hover {
  opacity: 0.7;
  transform: scale(1.02);
} 

.home-btn a {
  display: inline-block;
  background: linear-gradient(135deg, #F4BEA2, #E0B218);
  padding: 8px 12px;
  margin-right: 10px;
  border-radius: 4px;
  opacity: 0.7;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);;
  font-size: larger;
}

.home-btn a:hover {
  transform: scale(1.1);
}

/* FOOTER SAME EVERYWHERE */

footer {
  margin: 0 auto;
  max-width: 1400px;
}



footer .footer-container {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  width: 100%;
  max-width: 1400px;
  margin: 0px 5px auto;
  background: rgb(171, 171, 171);
  font-size: 1.3rem;
  border-radius: 10px 10px 0 0;
}


.footer-container .footer .footer-button-wrapper {
  display: flex;
  margin: 5px 0px;
  gap: 15px;
}

.footer-imgs {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-right: 20px;
  padding: 5px;
  gap: 15px;
}
.footer-imgs img {
  width: 105px;
}
.footer p:last-child {
  font-size: 0.9rem;
}


/* links*/
i {
  padding-left: 0px;
  padding-right: 5px;
}
.link-tel {
  display: flex;
  width: 140px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c4e1b5, #4add2c);
  padding: 4px 10px;
  margin: 2px 0 2px 0px;
  border-radius: 4px;
  opacity: 0.7;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.125rem;
}
.link-tel:hover {
  opacity: 0.5;
}
.link-mail {
  display: flex;
  width: 140px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: linear-gradient(135deg, #257bbdba, #183654b6);
  padding: 4px 10px;
  margin: 2px 0 2px 0px;
  border-radius: 4px;
  opacity: 0.7;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);;
  border-radius: 10px; 
  font-size: 1.125rem;
}
.link-mail:hover {
  opacity: 0.5;
}

.link-map {
  display: flex;
  width: 140px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: linear-gradient(135deg, #8fd8df, #33b4ca);
  padding: 4px 10px;
  margin: 2px 0 2px 0px;
  border-radius: 4px;
  opacity: 0.7;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);;
  border-radius: 10px; 
  font-size: 1.125rem;
}
.link-map:hover {
  opacity: 0.5;
}

/* Hide hamburger menu by default */
.icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 0px;
  z-index: 1001;
}

/* Slide-in menu styles */
@media only screen and (min-width: 320px) and (max-width: 500px) {
  nav .navbar-items {
    position: fixed;
    top: 0;
    right: 0;
    height: 300px;
    width: 60%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition:  0.3s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    display: flex;
    z-index: 1000;
  }

  nav .navbar-items ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav .navbar-items li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  nav .navbar-items a {
    width: 100%;
    display: block;
    font-size: 1rem;
  }

  /* Show hamburger on small screens */
  .icon {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  /* When menu is open */
  nav .navbar-items.open {
    transform: translateX(0);
  }




  footer {
  margin: 0 auto;
  min-width: 320px;
  max-width: 500px;
  width: 100%;
  height: auto;
  }
  
  footer .footer-container {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: rgb(171, 171, 171);
  font-size: 1.3rem;
  border-radius: 10px 10px 0 0;
  }
  .footer {
    padding-left: 10px;
  }
  footer h3 {
    font-size: 1.4rem;
  }
  footer p {
    font-size: 1.05rem;
  }
  
 
  .footer-imgs {
  display: none;
  }

 
span {
    display: none
  }

  .link-map {
    width: 40px;
    border-radius: 200px;
  }

  .link-mail {
    width: 40px;
    border-radius: 200px;
  }

  .link-tel {
    width: 40px;
    border-radius: 200px;
  }

  i {
    margin-left: 4.5px;
  }

  .footer p:last-child {
  font-size: 0.75rem;       /* Make it smaller */
  vertical-align: baseline; /* Align to baseline */
  color: #222222;              /* Optional: lighter color */
  margin-top: 10px;         /* Optional: spacing */
  text-align: left;    /* Optional: center it */
}
}




