.home-section {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.home-background-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.home-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;

  text-align: center;
  color: white;

  padding: 20px;
  max-width: 900px;
}

.location-text {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Arial', sans-serif;
  color: #d4af37;

  margin-bottom: 10px;
}

.business-type {
  font-size: 23px;
  letter-spacing: 2px;

  margin-bottom: 15px;
}

.home-content h1 {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 15px;
}

.home-content h2 {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #d4af37;
}

.home-description {
  font-size: 23px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.home-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 120px;
}

.view-treatments-btn,
.book-appointment-btn {
  border: none;
  cursor: pointer;

  padding: 15px 30px;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.3s ease;
  border-radius: 30px;
}

.view-treatments-btn {
  background: #d4af37;
  color: white;
}

.view-treatments-btn:hover {
  background: #b8962f;
}

.book-appointment-btn {
  background: transparent;
  color: white;

  border: 2px solid white;
}

.book-appointment-btn:hover {
  background: white;
  color: black;
}

.scroll-container {
  position: absolute;
  left: 50%;
  bottom: 40px;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
}

.scroll-container p {
  font-size: 12px;
  letter-spacing: 4px;
}

.scroll-arrow {
  width: 28px;
  height: 28px;

  animation: bounce 1.8s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .home-section {
    padding: 0;
  }

  .home-content h1 {
    font-size: 42px;
  }

  .home-content h2 {
    font-size: 22px;
  }

  .home-description {
    font-size: 16px;
  }

  .home-buttons {
    flex-direction: column;
    align-items: center;
  }

  .view-treatments-btn,
  .book-appointment-btn {
    width: 250px;
  }

}