/* =====================
   DESIGN TOKENS
===================== */
:root {
  --primary:#0f766e;
  --secondary:#134e4a;
  --accent:#f0fdfa;
  --text:#333;

  /* Premium Gold */
  --gold:#d4af37;
}

/* =====================
   BASE RESET
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   TYPOGRAPHY
===================== */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  min-height: 82vh;
  background: url("./image/House_of_Amelia_Nyali (18).webp") center/cover no-repeat;
  display: grid;
  place-items: center;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.6)
  );
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content p {
  color: #eaeaea;
  font-size: 1.1rem;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

/* =====================
   CATEGORY SECTIONS
===================== */
.category {
  margin-bottom: 1rem;
}

.category-intro {
  max-width: 680px;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* =====================
   ATTRACTION CARDS
===================== */
.attraction {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.attraction:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.attraction img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction div {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.attraction h3 {
  color: var(--text-primary);
}

.attraction p {
  margin: 0;
}

/* =====================
   CTA
===================== */
.cta {
  background: linear-gradient(
    to right,
    #1f2933,
    #2c3a44
  );
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}

.cta p {
  color: #d1d5db;
}

.btn {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111827;
  color: #cbd5e1;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.footer h4 {
  color: #fff;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .attraction {
    grid-template-columns: 1fr;
  }

  .attraction div {
    padding: 2rem;
  }

  .hero {
    min-height: 70vh;
  }
}

.category + .category {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 5rem;
}

/* =====================
   MAGAZINE MODE
===================== */

/* Editorial intro */
.category-intro {
  font-size: 1.1rem;
  max-width: 720px;
  position: relative;
}

/* Drop cap for magazine feel */
.category-intro::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  float: left;
  line-height: 1;
  padding-right: 0.4rem;
  color: var(--accent);
}

/* Magazine attraction layout */
.attraction.magazine {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 5rem;
  align-items: center;
}

/* Alternating layout */
.attraction.magazine:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.attraction.magazine:nth-child(even) img {
  order: 2;
}

/* Editorial image treatment */
.attraction.magazine img {
  border-radius: 18px;
  min-height: 420px;
}

/* Editorial text block */
.attraction.magazine div {
  padding: 0 2rem;
}

/* Magazine headline */
.attraction.magazine h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

/* Subtle divider */
.attraction.magazine h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.8rem;
}

/* Body copy refinement */
.attraction.magazine p {
  font-size: 1.05rem;
  max-width: 480px;
}

/* Section spacing like a magazine spread */
.category {
  padding: 6rem 0;
}

/* Elegant section divider */
.category + .category {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* =====================
   HERO — MAGAZINE COVER
===================== */
.hero-content h1 {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  max-width: 820px;
  margin: 0 auto 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

/* =====================
   CTA — FEATURE BOX
===================== */
.cta {
  margin-top: 6rem;
  position: relative;
}

.cta::before {
  content: "Featured Stay";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-main);
  padding: 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =====================
   MOBILE MAGAZINE FLOW
===================== */
@media (max-width: 900px) {
  .attraction.magazine {
    grid-template-columns: 1fr !important;
  }

  .attraction.magazine img {
    min-height: 300px;
  }

  .attraction.magazine div {
    padding: 1.5rem 0 0;
  }
}

/* ===== PULL QUOTES ===== */
.pull-quote {
  max-width: 720px;
  margin: 6rem auto;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-primary);
}


/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #14b8a6;
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
}

.mobile-nav a {
  padding: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  background: rgba(20,184,166,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 30px;
  }
}

.gold-text {
  background: linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* LUXURY HERO LIGHT EFFECT */
.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05)
  );

  animation: luxuryLight 8s linear infinite;

  pointer-events:none;
}

/* animation */
@keyframes luxuryLight{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(100%);
  }
}


/*  locations */
.location-section {
  text-align: center;
  padding: 80px 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 15px;
  margin: 35px auto;
  max-width: 900px;
}

.location-grid div {
  background: #f9fafb;
  padding: 18px;
  border-radius: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.map-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.why-stay{
padding:80px 20px;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.why-card{
background:#ffffff;
padding:25px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:transform .3s;
}

.why-card:hover{
transform:translateY(-6px);
}