/* ============================================================
   DUBAI HOLIDAY — BASE STYLES (Arabian Pearl Edition)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Jost:wght@200;300;400;500;600;700&family=Cinzel:wght@400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::selection { background: var(--gold-bright); color: var(--white); }

/* Container */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Sections */
.section        { padding: 100px 0; }
.section--alt   { background: var(--ink2); }
.section--ink3  { background: var(--ink3); }

/* === SECTION ANATOMY === */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.centered::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section-title strong { font-weight: 700; color: var(--ivory); }
.section-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.section-desc {
  color: #2A1F14;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 580px;
  font-weight: 300;
}

/* Gold rule divider */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 52px;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
  flex: 1;
}
.gold-rule-diamond {
  width: 6px; height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* === BUTTONS === */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--white);
  padding: 15px 38px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--trans);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(155,106,62,0.28);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(155,106,62,0.38); }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-gold2);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold-glow);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,106,62,0.16);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory-dim);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gold);
  transition: var(--trans-fast);
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold); }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Fade-up initial load */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }

/* Section headers */
.section-header { margin-bottom: 0; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }
.section-header.centered .section-eyebrow { display: flex; }
.section-header.centered .gold-rule { justify-content: center; }
.section-header.centered .gold-rule::before,
.section-header.centered .gold-rule::after { flex: 0 0 80px; }

/* Subtle geometric Islamic pattern overlay */
.pattern-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, var(--gold-bright) 0, var(--gold-bright) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold-bright) 0, var(--gold-bright) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
}
