:root {
  --bg: #141212;
  --surface: rgba(0, 0, 0, 0.65);
  --accent: #d7b899;
  --muted: #bba892;
  --whatsapp: #25D366;
  --text: #f6f3ee;
}

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

html,
body {
  height: 100%
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, "Helvetica Neue", Arial;
  background-color: var(--bg);
  color: var(--text);
  background-image: url('assets/abrar-logo.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: clamp(140px, 18vw, 360px);
  background-attachment: fixed;
  line-height: 1.5;
}

.container {
  width: min(94%, 1100px);
  margin: 0 auto;
  padding: 20px
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  z-index: 1200;
  background: transparent
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem
}

.brand-logo {
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45)
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 6px
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.8));
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 90px;
  z-index: 1300
}

.menu-overlay[aria-hidden="false"] {
  display: flex
}

.menu-nav {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6)
}

.menu-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.menu-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 8px;
  display: block
}

.menu-nav a:hover {
  background: rgba(215, 184, 153, 0.12);
  color: var(--accent)
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer
}

.btn-book {
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  text-align: center
}

.page {
  padding-top: 90px;
  min-height: calc(100vh - 150px)
}

.section-pad {
  padding: 56px 0
}

.section-title {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-align: center;
  color: var(--accent);
  margin-bottom: 12px
}

.center {
  text-align: center
}

.muted {
  color: var(--muted)
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0
}

.hero-inner {
  background: var(--surface);
  padding: 48px;
  border-radius: 12px;
  max-width: 900px;
  text-align: center
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 6px;
  color: var(--text)
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  margin-bottom: 18px;
  color: var(--muted)
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-cta {
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px
}

.feature {
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 12px;
  text-align: center
}

.feature-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--accent)
}

.feature h4 {
  color: var(--accent);
  margin-bottom: 8px
}

.gallery-wrapper {
  overflow-x: auto;
  padding: 20px 0
}

.gallery-scroll {
  display: flex;
  gap: 14px;
  align-items: center
}

.gallery-img {
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease
}

.gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45)
}

/* HOMEPAGE thumbs reduced to ~55% (smaller on home only) */
.thumb {
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3)
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 18px
}

.video-wrap iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5)
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto
}

.lightbox-img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
  transform-origin: center;
  transition: transform .28s ease
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 28px;
  cursor: pointer
}

.about-container,
.contact-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 28px;
  background: var(--surface);
  border-radius: 12px
}

.about-container h1 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 6px
}

.lead {
  font-style: italic;
  color: var(--muted)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text)
}

.qr-img {
  width: 180px;
  border-radius: 10px;
  border: 4px solid rgba(255, 255, 255, 0.06);
  display: block;
  margin: 12px auto
}

.site-footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted);
  margin-top: 30px
}

@media (max-width:900px) {
  .hero-inner {
    padding: 28px
  }

  .gallery-img {
    height: 160px
  }

  .video-wrap iframe {
    height: 150px
  }
}

@media (max-width:600px) {
  .brand-text {
    display: none
  }

  .brand-logo {
    height: 40px
  }

  .hero-inner {
    padding: 20px
  }

  .gallery-img {
    height: 140px
  }
}