/* ============================================================
   OLNYIRI HUB & LOUNGE — Premium Stylesheet
   Color System: Black #050505 | Gold #C9A227 | Dark Gold #8A6A18 | Burgundy #5A1518
   ============================================================ */

/* ── Google Font imports handled in HTML ── */

:root {
  --black:       #050505;
  --black-soft:  #0d0d0d;
  --black-card:  #111111;
  --black-panel: #181818;
  --gold:        #C9A227;
  --gold-light:  #e0bc55;
  --gold-dark:   #8A6A18;
  --burgundy:    #5A1518;
  --burgundy-light: #7a1f23;
  --white:       #ffffff;
  --off-white:   #f0ece2;
  --text-muted:  #9a8a6a;
  --border:      rgba(201,162,39,0.18);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --font-accent:  'Cinzel', serif;

  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.12);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-white);
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.section-title span { color: var(--gold); }

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 2rem;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.35);
}

.btn-outline-gold {
  display: inline-block;
  padding: 0.78rem 2.2rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 700;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.25);
}

/* ── Navbar ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: transparent;
  transition: all 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(5,5,5,0.97);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

#mainNav.scrolled .navbar-brand img { height: 40px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,236,226,0.8) !important;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  left: 1rem; right: 1rem;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,162,39,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-reserve-btn {
  margin-left: 1rem;
  padding: 0.45rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius) !important;
  color: var(--gold) !important;
}
.nav-reserve-btn:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-reserve-btn::after { display: none; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(90,21,24,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(138,106,24,0.2) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
}

/* Animated ambient particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle 8s infinite ease-in-out;
}
.particle:nth-child(1)  { width:2px; height:2px; left:15%; top:25%; animation-delay:0s;    animation-duration:9s; }
.particle:nth-child(2)  { width:1px; height:1px; left:72%; top:60%; animation-delay:2s;    animation-duration:7s; }
.particle:nth-child(3)  { width:3px; height:3px; left:45%; top:80%; animation-delay:4s;    animation-duration:11s;}
.particle:nth-child(4)  { width:2px; height:2px; left:85%; top:15%; animation-delay:1s;    animation-duration:8s; }
.particle:nth-child(5)  { width:1px; height:1px; left:30%; top:50%; animation-delay:3s;    animation-duration:10s;}
.particle:nth-child(6)  { width:2px; height:2px; left:60%; top:35%; animation-delay:5s;    animation-duration:6s; }

@keyframes floatParticle {
  0%   { opacity:0; transform:translateY(0) scale(1); }
  30%  { opacity:0.6; }
  70%  { opacity:0.4; }
  100% { opacity:0; transform:translateY(-80px) scale(0.5); }
}

/* Decorative gold line */
.hero-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-logo {
  width: 110px;
  height: auto;
  margin: 0 auto 2rem;
  animation: fadeInDown 1s ease both;
  filter: drop-shadow(0 0 20px rgba(201,162,39,0.4));
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.2s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.6s both;
  letter-spacing: 0.03em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Sections ── */
.section-pad {
  padding: 6rem 0;
}
.section-pad-sm {
  padding: 4rem 0;
}

/* ── About Section ── */
#about {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-text { color: var(--text-muted); margin-bottom: 1.2rem; }

.about-stat {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(201,162,39,0.04);
}
.about-stat .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-accent);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}
.about-img-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.5; }

.about-corner-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ── Why Choose Us ── */
#why-us {
  background: var(--black);
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  background: var(--black-panel);
}
.feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.feature-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Menu Preview ── */
#menu-preview {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menu-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.menu-card-img {
  aspect-ratio: 16/10;
  background: var(--black-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.menu-card:hover .menu-card-img { opacity: 0.9; }
.menu-card-body {
  padding: 1.5rem;
}
.menu-card-tag {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Gallery Preview ── */
#gallery-preview {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-grid .g-item {
  aspect-ratio: 1;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.gallery-grid .g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid .g-item:hover {
  opacity: 1;
  border-color: var(--gold);
}
.gallery-grid .g-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,162,39,0.15);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-grid .g-item:hover .overlay { opacity: 1; }

/* ── Reservation CTA ── */
#reservation-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(90,21,24,0.4) 0%, transparent 70%),
    var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
#reservation-cta .section-title { font-size: clamp(2rem, 5vw, 3.5rem); }
#reservation-cta p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; }

/* ── MENU PAGE ── */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(90,21,24,0.35) 0%, transparent 70%),
    var(--black);
  border-bottom: 1px solid var(--border);
}

.menu-nav-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.menu-pill {
  padding: 0.5rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.menu-pill:hover, .menu-pill.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-section-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.menu-section-label i { font-size: 1.2rem; }

.menu-item-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}
.menu-item-card:hover {
  border-color: rgba(201,162,39,0.5);
  background: var(--black-panel);
}
.menu-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.menu-item-info h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--off-white);
  margin: 0;
}
.menu-item-info small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── GALLERY PAGE ── */
.gallery-full-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-full-grid .gf-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
}
.gallery-full-grid .gf-item:nth-child(3n+1) { aspect-ratio: 3/4; }
.gallery-full-grid .gf-item:hover {
  opacity: 1;
  border-color: var(--gold);
}
.gallery-full-grid .gf-item .gf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.6);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1rem;
}
.gallery-full-grid .gf-item:hover .gf-overlay { opacity: 1; }

.gallery-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.gallery-section-title span { color: var(--gold); }

/* ── RESERVATION PAGE ── */
.reservation-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-control, .form-select {
  background: var(--black-panel) !important;
  border: 1px solid var(--border) !important;
  color: var(--off-white) !important;
  border-radius: var(--radius) !important;
  padding: 0.8rem 1.1rem !important;
  font-family: var(--font-body) !important;
  transition: border-color var(--transition) !important;
}
.form-control:focus, .form-select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1) !important;
}
.form-control::placeholder { color: rgba(154,138,106,0.5) !important; }

.form-select option { background: var(--black-card); }

.info-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.info-card h5 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.info-row i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
}
.info-row span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.info-row strong { color: var(--off-white); }

/* ── CONTACT PAGE ── */
#contact-map {
  height: 300px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
}
#contact-map i { font-size: 2.5rem; color: var(--gold); }

/* ── Footer ── */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-logo { height: 60px; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a i { color: var(--gold); font-size: 0.7rem; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.social-links { display: flex; gap: 0.7rem; margin-top: 1rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(154,138,106,0.6);
  margin: 0;
}
.footer-bottom a { color: var(--gold); font-size: 0.78rem; }

/* ── Scroll Reveal Utility ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WhatsApp Float Button ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  border: none;
}
.wa-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  color: white;
}

/* ── Page transition loading bar ── */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.4s ease;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .section-pad { padding: 4rem 0; }
  .navbar-collapse {
    background: rgba(5,5,5,0.98);
    padding: 1.5rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }
  .nav-reserve-btn { margin-left: 0; margin-top: 0.5rem; }
  .about-corner-badge { right: 0; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 2; }
  .gallery-full-grid { columns: 2; }
  .reservation-form-wrap { padding: 1.8rem; }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:first-child { grid-column: span 1; }
  .gallery-full-grid { columns: 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
}