/* ─── CUSTOM STYLES ─────────────────────────────────────────────────────────── */

body {
  font-family: 'Jost', sans-serif;
  background-color: #F7F3ED;
  color: #3B3B3C;
}

.serif-title { font-family: 'Cormorant Garamond', serif; }

.gold-border-top { border-top: 1px solid #C59441; }

.gold-divider {
  height: 1px;
  background: rgba(197, 148, 65, 0.2);
  width: 100%;
  margin: 32px 0;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
}

.shadow-soft { box-shadow: 0 4px 20px -4px rgba(124, 87, 43, 0.05); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ─── KEYFRAME ANIMATIONS ────────────────────────────────────────────────────── */

@keyframes shimmer {
  0%   { background-position: -400% center; }
  100% { background-position:  400% center; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes wifiPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.15); }
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0); }
  100% { transform: scale(1.06) translateX(-12px); }
}

/* ─── SHIMMER BAR ────────────────────────────────────────────────────────────── */

.shimmer-bar {
  background: linear-gradient(
    90deg,
    #B7652B 0%,
    #C59441 25%,
    #efbd88 50%,
    #C59441 75%,
    #B7652B 100%
  );
  background-size: 400% auto;
  animation: shimmer 4s linear infinite;
}

/* ─── HERO IMAGE ─────────────────────────────────────────────────────────────── */

.hero-img {
  animation: kenBurns 12s ease-out forwards;
  transform-origin: center center;
}

/* ─── HEADER ENTRANCE ────────────────────────────────────────────────────────── */

.logo-animate {
  animation: scaleIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.title-animate {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

/* ─── PHOTO STRIP ────────────────────────────────────────────────────────────── */

.photo-strip {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-strip img {
  scroll-snap-align: start;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.photo-strip img:hover {
  transform: scale(1.03);
  opacity: 1;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────────── */

.scroll-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child items within revealed sections */
.scroll-fade-in.visible .stagger-item {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}

/* ─── WIFI PULSE ─────────────────────────────────────────────────────────────── */

.wifi-pulse {
  animation: wifiPulse 2.5s ease-in-out infinite;
}

/* ─── PROMO IMAGE ────────────────────────────────────────────────────────────── */

.promo-img {
  transition: transform 8s ease-out;
}

.scroll-fade-in.visible .promo-img {
  transform: scale(1.04);
}
