@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --ink: #14201c;
  --ink-soft: #3a4a44;
  --mist: #e8f0ec;
  --fog: #f3f7f5;
  --leaf: #1f6b54;
  --leaf-deep: #154a3a;
  --copper: #b56a3c;
  --copper-deep: #8f4e2a;
  --line: #c5d4cc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(31, 107, 84, 0.12), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(181, 106, 60, 0.1), transparent 38%),
    linear-gradient(180deg, #f7fbf9 0%, #eef5f1 48%, #e7f0eb 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
.brand {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 20, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.age-modal {
  max-width: 560px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.age-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 1.4rem 5vw 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(10, 28, 22, 0.72) 8%, rgba(20, 42, 35, 0.45) 48%, rgba(12, 24, 20, 0.2) 100%),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, #f3f7f5);
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: rise 0.8s ease both;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #f3d3b8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 8vh;
  margin-bottom: 8vh;
  animation: rise 1s ease 0.12s both;
}

.eyebrow {
  color: #e8c4a3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--copper);
  color: #fff8f2;
  text-decoration: none;
  border: 1px solid var(--copper);
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-solid {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #f4fff9;
}

.btn-solid:hover {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
}

.section {
  padding: 4.2rem 5vw;
}

.section-dark {
  background: linear-gradient(180deg, #17362c 0%, #10271f 100%);
  color: #eef6f2;
}

.section-dark h2,
.section-dark h3 {
  color: #f5fbf8;
}

.section-dark .section-text,
.section-dark p {
  color: rgba(238, 246, 242, 0.82);
}

.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 2rem;
}

.intro p,
.section-text,
.booking p {
  color: var(--ink-soft);
}

.hotel-grid,
.cards,
.gallery {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.1rem;
}

.hotel-grid,
.cards,
.gallery-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hotel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #1a2e27;
  color: #fff;
  isolation: isolate;
  animation: fade-up 0.7s ease both;
}

.hotel:nth-child(2) {
  animation-delay: 0.08s;
}

.hotel:nth-child(3) {
  animation-delay: 0.16s;
}

.hotel:nth-child(4) {
  animation-delay: 0.24s;
}

.hotel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}

.hotel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 14, 0.15), rgba(8, 18, 14, 0.82));
  z-index: -1;
}

.hotel:hover img {
  transform: scale(1.06);
}

.hotel-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
}

.hotel-body h3 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.hotel-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.hotel-meta {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #efc7a5;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.feature-copy p {
  color: var(--ink-soft);
}

.feature-media {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.list li strong {
  color: var(--ink);
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 1.15rem;
  backdrop-filter: blur(4px);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.booking {
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(181, 106, 60, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(31, 107, 84, 0.14), transparent 35%),
    var(--fog);
}

.footer {
  text-align: center;
  padding: 2.2rem 1rem 2.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.small {
  font-size: 0.9rem;
  color: #607068;
}

.page-hero {
  min-height: 58vh;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 5vh;
  }
}

@media (max-width: 680px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel {
    min-height: 280px;
  }
}
