/********** HTML **********/

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/********** BODY **********/

body {
  margin: 0;
  Font-family: 'Roboto', sans-serif;
  background-color: #00000073;
  overflow-x: hidden;
  padding: 0;
}

/* LINE */

hr {
  border: 0; 
  height: 2px;  
  background-color: #333; 
  margin: 0px 0;  
}

/********** HEADER **********/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #222222;
  width: 100%;
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  margin-left: 10%;
}
.logo img {
  max-width: 180px;
  height: auto;
}

/* MOBILE MENU BUTTON */

.navbar-toggle {
  display: none; 
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 4px 0;
  border-radius: 2px;
}
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 20px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 25px;
  white-space: nowrap;
  margin-right: 40px;
  border-color: #000;
}

.navbar-nav li {
  background-color: #ffffff;
  padding: 5px;
  color: #000;
}

.navbar-nav li:hover {
  background-color: #b1b1b1;
}

.navbar-nav li a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 16px;
}

/********** BANNER **********/

.banner {
  display: flex;
  background-image: url('/images/banner.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 100%;
  height: 650px;
}

.content-banner {
  position: absolute;
  top: 600px;
  left: 12%;
  display: flex;
  flex-direction: column;
}

.btn {
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  width: 250px;
  text-align: center;
  margin-bottom: 15px;
}

.btn-banner-whats i {
  margin-right: 10px;
}

.btn-banner-directions i {
  margin-right: 10px;
}

.btn-green {
  background-color: #25D366;
}

.btn-green:hover {
  background-color: #105a2b;
}

.btn-blue {
  background-color: #f42132;
}

.btn-blue:hover {
  background-color: #86131d;
}

.btn-banner-whats {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-banner-directions {
  display: flex;
  justify-content: center;
  align-items: center;
}

/********** SERVICES **********/

.services {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 80px;
  background-color: #181818;
  flex-wrap: wrap;
}

.product {
  width: 90%;
  max-width: 28%;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0px;
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease;
}
.product img:hover {
  transform: scale(1.05);
}
.product h4 {
  font-size: 14px;
  color: #e7e7e7;
  margin: 15px 10px;
  flex-grow: 1;
}

.btn-budget {
  display: inline-block;
  text-decoration: none;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  transition: background-color 0.3s ease;
  margin: 10px;
}
.btn-budget:hover {
  background-color: rgba(16, 95, 0, 0.774);
}

/********** ABOUT THE STORE **********/

.about-section {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  justify-content: flex-start;
  background-color: #181818;
  padding-left: 10%;
}

.about-section img {
  width: 600px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 100px;
  transition: transform 0.3s ease;
}
.about-section img:hover { 
  transform: scale(1.10);
}

.about-section .text {
  width: 850px;
  flex-direction: column;
  justify-content: center;
}

.about-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-section p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}

.about-section-link {
  text-decoration: underline;
  color: inherit;
}

.about-section-link:hover {
  color: blue;
}

/********** FEATURES **********/

.features {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  flex-wrap: wrap;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px; 
  max-width: 30%; 
}
.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-top: 25px;
}
.feature-text {
  display: flex;
  flex-direction: column;
}
.feature-text h4 {
  margin-bottom: 10px; 
  font-size: 20px;
}
.feature-text p {
  margin-top: 0;
  font-size: 16px;
}

/**********  MAP  **********/

.location {
  text-align: center;
}
.map-container {
  display: flex;
  justify-content: center;
  align-items: center; 
  width: 100%;
  height: 450px;
  margin: 0 auto;
}
iframe {
  width: 100%; 
  height: 100%; 
  border: 0px; 
}

/**********  WHATSAPP FLOAT BUTTON  **********/
.whatsapp-float {
  position: fixed;
  bottom: 30px; 
  right: 30px;
  z-index: 100;
  width: 60px;
  height: 60px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); 
  border-radius: 50%; 
  overflow: hidden; 
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.whatsapp-float:hover {
  transform: scale(1.3); 
  transition: transform 0.2s ease-in-out; 
}

/**********  FOOTER  **********/
.footer {
  background-color: #181818; 
  padding: 20px;
  color: #ffffff;
  text-align: center;
}
.footer-container {
  display: flex;
  white-space: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

/* FOOTER LOGO */
.footer-logo {
  display: flex;
  flex-direction: column; 
  align-items: center;
  margin-bottom: 20px; 
  margin-right: 50px;
}
.footer-logo img {
  width: 100px;
  margin-bottom: 10px; 
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px; 
}
.social-icons a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #555;
}

/* FOOTER INFO */
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1; 
  margin-left: 20px;
}
.info-item {
  text-align: left;
  margin: 0px;
  max-width: 250px;
}
.info-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.info-item p,
.info-item a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
}
.info-item a:hover {
  color: #555;
}
.footer p {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ffffff;
}

/*****  FIXED FOOTER (MOBILE)  *****/
.fixed-footer {
  display: none;
}


/********************  MEDIA QUERIES 960px ********************/
@media (max-width: 980px) and (min-width: 800px) {

  header {
    padding: 10px 0px;
  }
  
  /* LOGO */
  
  .logo {
    display: flex;
    align-items: center;
    margin-left: 20px;
  }

  .logo img {
    max-width: 130px;
    height: auto;
  }

  /*****  BANNER LAYOUT ADJUSTMENTS  *****/
  .banner {
    background-image: url('/images/banner.jpg');
    align-items: center; 
    justify-content: flex-start; 
    padding: 20px; 
    text-align: center; 
  }

  .content-banner {
    width: 100%; 
    top: 600px;
    align-items: center; 
    left: 32%;
    transform: translateX(-50%);
  }

  /*****  BUTTON ADJUSTMENTS FOR MOBILE  *****/
  .btn {
    font-size: 16px;
  }

  .btn-banner-whats, .btn-banner-directions {
    flex-direction: column; 
    width: 100%;
  }

  .btn i {
    margin-right: 5px; 
  }

  .btn-banner-whats {
    margin-bottom: -5px; 
  }

  .btn-banner-directions {
    width: 275px;
  }

  /*****  ABOUT SECTION ADJUSTMENTS  *****/
  .about-section {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 10px; 
  }

  .about-section img {
    width: 100%; 
    height: auto;
    margin: 0; 
    border-radius: 0;
  }

  .about-section .text {
    width: 90%; 
    margin-top: 20px;
    text-align: center; 
  }

  .about-section h2 {
    font-size: 24px; 
  }

  .about-section p {
    font-size: 16px; 
    line-height: 1.4; 
  }

}
/********************  MEDIA QUERIES 768px ********************/
@media (max-width: 800px) {

  /*****  HTML , BODY  *****/
  html, body {
    overflow-x: hidden; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
  }

  /*****  UNIVERSAL SELECTOR  *****/
  * {
    box-sizing: border-box;
  }

  /*****  NAVBAR TOGGLE (HAMBURGER BUTTON)  *****/
  .navbar-toggle {
    display: block;
    margin-right: -30%; 
  }

  /*****  NAVBAR COLLAPSE (NAVIGATION MENU)  *****/
  .navbar-collapse {
    display: none; 
  }

  .navbar-collapse.active {
    display: flex;
    position: absolute;
    top: 65px;
    right: 0; 
    width: auto; 
    background-color: #000000;
    border-color: #222222;
    padding: 10px; 
    z-index: 1;
  }

  /*****  NAVBAR NAV (MENU ITEMS)  *****/
  .navbar-nav {
    flex-direction: column; 
    gap: 15px;
  }

  .navbar-nav li {
    width: auto; 
    text-align: center; 
    background-color: #ffffff; 
    padding: 5px 2px;
    white-space: nowrap; 
  }

  /*****  LOGO ADJUSTMENTS FOR MOBILE  *****/
  .logo img {
    max-width: 120px; 
  }

  /*****  BANNER LAYOUT ADJUSTMENTS  *****/
  .banner {
    background-image: url('/images/banner-mobile.jpg');
    background-position: left;
    background-size: cover; 
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    z-index: 0;
  }

  .content-banner {
    position: absolute;
    top: 80%;
    left: 50%; 
    transform: translate(-50%, -50%); 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /*****  BUTTON ADJUSTMENTS FOR MOBILE  *****/
  .btn {
    font-size: 16px; 
  }

  .btn-banner-whats, .btn-banner-directions {
    flex-direction: column;
    width: 100%; 
  }

  .btn i {
    margin-right: 5px; 
  }

  .btn-banner-whats {
    margin-bottom: -5px; 
  }

  .btn-banner-directions {
    width: 275px;
  }

  /*****  SERVICES SECTION ADJUSTMENTS  *****/
  .services {
    padding: 20px;
    gap: 10px; 
  }

  /*****  PRODUCT LAYOUT ADJUSTMENTS  *****/
  .product {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    box-sizing: border-box;
  }
  
  .product img {
    height: 100px;
  }
  
  .product h4 {
    font-size: 12px;
    margin: 10px 5px;
  }
  
  .btn-budget {
    padding: 8px 16px;
    font-size: 9px;
  }
  
  .whatsapp-float {
    display: none;
  }
  
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  
  .about-section img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
  
  .about-section .text {
    width: 90%;
    margin-top: 20px;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 24px;
  }
  
  .about-section p {
    font-size: 16px;
    line-height: 1.4;
  }
  
  .features {
    padding: 20px;
    display: flex;
    justify-content: left;
  }
  
  .feature {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .feature-text p {
    font-size: 14px;
    margin-top: 0;
  }
  
  .store-container {
    flex-direction: column;
    align-items: center;
  }
  
  .store {
    width: 100%;
    margin-bottom: 20px;
    margin-left: -30px;
  }
  
  .store img {
    max-width: 125px;
    height: auto;
    margin-right: 10px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap;
  }
  
  .footer-logo {
    margin-right: 0;
  }
  
  .footer-info {
    justify-content: center;
    margin-left: 0;
    flex-direction: column;
  }
  
  .info-item {
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer p {
    margin-top: 20px;
    font-size: 0.75rem;
  }
  
  .rights {
    margin-bottom: 50px;
  }
  
  .fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .btn-call,
  .btn-whatsapp {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn-call {
    background-color: #fea603;
  }
  
  .btn-whatsapp {
    background-color: #25d366;
  }
}
