* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #f4f0e8;
  color: #111827;
}

body {
  font-family: Georgia, "Times New Roman", serif;
}


/* INTRO */

.home-page {
  min-height: 100vh;
}

.intro {
  text-align: center;
  padding: 110px 24px 70px;
}

.intro h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #101827;
}

.tagline {
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  color: #9a7a3d;
  letter-spacing: 0.04em;
}


/* HERO GALLERY */

.hero-gallery {
  position: relative;
  width: min(1200px, 90vw);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}


.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}


.hero-slide.active {
  opacity: 1;
}


.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cinematicZoom 8s ease-in-out infinite;
}


@keyframes cinematicZoom {

  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }

}


/* ENTER COLLECTION */

.home-entry {
  text-align: center;
  padding: 75px 24px 110px;
}

.home-entry a {
  display: inline-block;
  color: #9a7a3d;
  text-decoration: none;
  border: 1px solid rgba(154, 122, 61, 0.65);
  padding: 16px 34px;
  font-size: 16px;
  letter-spacing: 0.16em;
  transition: all 0.3s ease;
}

.home-entry a:hover {
  color: #101827;
  background: rgba(154, 122, 61, 0.08);
}


/* MOBILE */

@media (max-width: 700px) {

  .intro {
    padding: 75px 20px 50px;
  }

  .intro h1 {
    letter-spacing: 0.04em;
  }

  .hero-gallery {
    width: 92vw;
    gap: 24px;
  }

  .home-entry {
    padding: 55px 20px 75px;
  }

}
