* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fffdf2;
  text-align: center;
}

/* === Preloader === */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader img {
  width: 250px;
  height: auto;
}

/* === Slider === */
.slider-container {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slide 40s infinite;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

@keyframes slide {
  0%   { transform: translateX(0%); }
  25%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

/* === Logo === */
.logo {
  margin: 20px 0 10px 0;
}

.logo img {
  max-width: 300px;
  width: 60%;
  height: auto;
}

/* === Tagline === */
.tagline {
  font-size: 50px;
  color: #333;
  margin: 10px 0;
  padding: 0 10px;
  font-weight: 800;
}


/* === Catalogue Button === */

.catalogue-container {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  padding-top: 70px;
}



.catalogue-button {
  background-image: url(/imgs/catalogue-button.png);
  background-size: cover;
  background-position: center;
  height: 83px;
  width: 360px;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding-top: 20px;
}

.call-button {
  background-image: url(/imgs/phone-button.png);
  background-position: center;
  background-size: cover;
  width: 70px;
  height: 70px;
}

.what-button {
  background-image: url(/imgs/what-button.png);
  background-position: center;
  background-size: cover;
  width: 70px;
  height: 70px;
}

.address-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding-top: 30px;
}

.address-button1 {
  background-image: url(/imgs/address-button.png);
  background-position: center;
  background-size: cover;
  width: 70px;
  height: 80px;
}

.address-button2 {
  background-image: url(/imgs/address-button.png);
  background-position: center;
  background-size: cover;
  width: 70px;
  height: 80px;
}



/* === Responsive === */
@media (max-width: 768px) {
  .slider-container {
    height: 30vh;
  }

  .tagline {
    font-size: 1rem;
  }

  .address {
    font-size: 0.9rem;
  }

  .catalogue-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .buttons a {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 80%;
  }

  .slider-container {
    height: 25vh;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .catalogue-container {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 50px;
  }



  .catalogue-button {
    background-image: url(/imgs/catalogue-button.png);
    background-size: cover;
    background-position: center;
    height: 70px;
    width: 300px;
  }
}
