* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #b8a58a;
  color: #1b1b1b;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.0015;
  background-image: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
}

.hero {
  min-height: 100vh;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    linear-gradient(rgba(184,165,138,0.82), rgba(184,165,138,0.88)),
    url('hero.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* NAVIGATION */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 58px;
  height: auto;
}

.logo-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* BUTTON */

.book-btn,
.hero-content button {
  background: #2f4638;
  color: #f4efe7;
  border: none;
  padding: 15px 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
}

.book-btn:hover,
.hero-content button:hover {
  background: #3e5a49;
}

/* HERO CONTENT */

.hero-content {
  max-width: 720px;
  margin-top: 140px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.hero-content p {
  max-width: 520px;
  font-size: 17px;
  color: #252525;
  margin-bottom: 40px;
}

/* INFO SECTION */

.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;

  padding: 120px 8%;
  background: #c2b59b;
}

.info-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 24px;
}

.info-block p {
  font-size: 16px;
  max-width: 500px;
  color: #1f1f1f;
  line-height: 1.8;
}

/* FOOTER */

.footer {
  padding: 40px 8%;
  border-top: 1px solid rgba(27,27,27,0.12);
  font-size: 14px;
  background: #b8a58a;
}

/* LEARN MORE BUTTON */

.learn-more-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border: 1px solid #2f4f3e;
  color: #2f4f3e;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #2f4f3e;
  color: #f4efe6;
}

/* MOBILE */

@media (max-width: 768px) {

  .hero {
    padding: 30px 24px;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .hero-content {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 64px;
    line-height: 0.95;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 320px;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 24px;
  }

  .info-block h2 {
    font-size: 36px;
  }

  .footer {
    padding: 32px 24px;
  }

}

/* PAGE TRANSITIONS */

body {
  animation: pageFade 2.4s ease forwards;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* SOFT CONTENT REVEAL */

.hero-content,
.info-block,
.closing-tagline,
.footer {
  animation: softRise 2s ease forwards;
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}