* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f7f3ee;
  color: #2d2926;
  line-height: 1.6;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 41vh;
  background:
    linear-gradient(rgba(35, 31, 28, 0.35), rgba(35, 31, 28, 0.45)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 28px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.hero .nav-links a {
  color: white;
}


.hero .logo {
  color: white;
}

.nav-links a,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
}

.hero-content {
  max-width: 650px;
  margin: 90px auto 0;
  text-align: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: normal;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 460px;
  font-size: 1.1rem;
  margin: 0 auto 32px;
}

.button {
  display: inline-block;
  background: white;
  color: #2d2926;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.section {
  padding: 90px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-card {
  min-height: 360px;
  background: #ddd3c7;
  display: flex;
  align-items: end;
  padding: 20px;
  font-size: 1.4rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.about p {
  font-size: 1.2rem;
}

.booking {
  text-align: center;
  max-width: 750px;
}

.booking p {
  margin-bottom: 28px;
}

footer {
  padding: 30px;
  text-align: center;
  color: #6d625a;
}

@media (max-width: 750px) {
  .navbar {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .nav-links a {
    margin-left: 0;
    margin-right: 18px;
  }

  .hero-content {
    margin-top: 120px;
  }

  .gallery,
  .about {
    grid-template-columns: 1fr;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form input,
.booking-form textarea {
  padding: 14px;
  border: 1px solid #c8bdb3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.booking-form textarea {
  min-height: 140px;
}

.booking-form button {
  border: none;
  cursor: pointer;
}

.page-nav {
  padding: 30px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.sub-hero {
  min-height: 220px;
  background:
    linear-gradient(rgba(35, 31, 28, 0.35), rgba(35, 31, 28, 0.45)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 28px;
}

.sub-hero-content {
  text-align: center;
  margin-top: 60px;
}

.sub-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

main {
  flex: 1;
}