/* ═══════════════════════════════════════════════════════════════
   AMĀRA Boutique Hotel — Website Styles
   Brand: Deep Olive · Reserve Maroon · Warm Gold · Ivory
   Fonts: Clash Display (display) · Manrope (body)
   Design: Matching the provided homepage mockup
═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../assets/fonts/Manrope-Variable.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand colours from handoff */
  --olive: #2f381f;
  --olive-deep: #1f2614;
  --olive-soft: #3d4a2a;
  --maroon: #500a14;
  --maroon-deep: #3a0d15;
  --maroon-soft: #6b1a24;
  --gold: #cf944f;
  --gold-light: #e0b06a;
  --gold-deep: #b07a3a;

  --ivory: #faf7f0;
  --bone: #f4ede0;
  --paper: #fdfbf7;
  --cream: #f8f4eb;
  --ink: #1a1f12;
  --ink-soft: #5c6354;
  --line: rgba(47, 56, 31, 0.12);
  --line-strong: rgba(47, 56, 31, 0.22);

  --serif: 'Clash Display', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --pad-x: 1.5rem;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px -20px rgba(47, 56, 31, 0.18);
  --shadow-sm: 0 8px 24px -8px rgba(47, 56, 31, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Typography helpers ─── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.serif { font-family: var(--serif); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--olive);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--ivory);
}
.btn-maroon:hover {
  background: var(--maroon-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: var(--olive);
  color: var(--ivory);
  border-color: var(--olive);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250, 247, 240, 0.45);
}
.btn-outline-light:hover {
  background: rgba(250, 247, 240, 0.12);
  border-color: var(--ivory);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 11px;
}

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img,
.logo svg {
  height: 36px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav a:hover,
.nav a.active {
  color: var(--olive);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--olive);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  padding: 1.5rem;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav-links a {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--olive);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem var(--pad-x) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--olive);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--maroon);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  background: #2a3220;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 31, 18, 0.25), transparent 50%);
}

/* Soft wave shape on desktop */
.hero-shape {
  display: none;
}

/* Booking bar */
.booking-bar {
  position: relative;
  z-index: 10;
  margin: -2.5rem var(--pad-x) 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.booking-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.booking-field .value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.booking-field select,
.booking-field input {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--olive);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
}

.booking-cta {
  grid-column: 1 / -1;
}

/* ─── Section common ─── */
.section {
  padding: 5rem var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.5rem;
}
.section-head .eyebrow {
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--olive);
  max-width: 18ch;
}
.section-head p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1.05rem;
}

/* Experience cards */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.exp-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.exp-card .img {
  aspect-ratio: 4/3;
  background: #e8e2d6;
  overflow: hidden;
}
.exp-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .img img {
  transform: scale(1.04);
}

.exp-card .body {
  padding: 1.5rem 1.4rem 1.6rem;
}
.exp-card .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--olive);
}
.exp-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.exp-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.exp-card .link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.exp-card .link:hover {
  gap: 0.55rem;
}

/* Features strip */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 3.5rem var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.feature .icon {
  width: 36px;
  height: 36px;
  color: var(--olive);
  margin-bottom: 0.25rem;
}
.feature h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--olive);
}
.feature p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Explore Nizamabad */
.explore {
  background: var(--cream);
  padding: 5rem var(--pad-x);
}

.explore-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.place-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: #2a3220;
}
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.place-card:hover img {
  transform: scale(1.05);
}
.place-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 31, 18, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  color: var(--ivory);
}
.place-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.place-card span {
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* Signature band */
.signature {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--olive-deep);
  color: var(--ivory);
  overflow: hidden;
}

.signature-bg {
  position: absolute;
  inset: 0;
}
.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.signature-content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.signature h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: var(--olive-deep);
  color: var(--ivory);
  padding: 4rem var(--pad-x) 2.5rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 32ch;
  line-height: 1.55;
}

.footer-brand .socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.footer-brand .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-brand .socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--olive-deep);
}

.footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer ul a {
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer ul a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 247, 240, 0.25);
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(250, 247, 240, 0.5);
}
.newsletter-form button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1400px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 240, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

/* ─── Responsive ─── */
@media (min-width: 720px) {
  :root { --pad-x: 2.5rem; }

  .booking-bar {
    grid-template-columns: 1fr 1fr 1.2fr auto;
    align-items: end;
    padding: 1.25rem 1.5rem;
  }
  .booking-cta {
    grid-column: auto;
  }

  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .explore-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  :root { --pad-x: 3.5rem; }

  .nav { display: flex; }
  .menu-toggle { display: none; }

  .logo img, .logo svg { height: 42px; }

  .hero {
    grid-template-columns: 1fr 1.15fr;
    min-height: 92vh;
  }

  .hero-content {
    padding: 5rem 3rem 5rem var(--pad-x);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-shape {
    display: block;
    position: absolute;
    left: 46.5%;              /* grid boundary: 1fr / 1.15fr */
    transform: translateX(-72%);
    top: 0;
    bottom: 0;
    width: 28%;
    background: var(--cream);
    border-radius: 0 50% 50% 0 / 0 40% 40% 0;
    z-index: 1;               /* above image, BELOW hero text (was 3 — covered the headline) */
    pointer-events: none;
  }

  .booking-bar {
    margin: -2.75rem auto 0;
    max-width: 1100px;
  }

  .section {
    padding: 6.5rem var(--pad-x);
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}
