/* ===========================
   SUEEN HOTELS & RESORTS
   Mobile-First CSS
   Font: Quicksand
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
  --primary:    #8b1010;
  --primary-dk: #6a0c0c;
  --primary-lt: #b01515;
  --accent:     #d4a017;
  --white:      #ffffff;
  --off-white:  #f9f5f0;
  --text-dark:  #1a1a1a;
  --text-mid:   #444444;
  --text-light: #888888;
  --blue-btn:   #2563a8;
  --border-r:   14px;
  --shadow:     0 4px 24px rgba(139,16,16,0.13);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  background: var(--off-white);
  color: var(--text-dark);
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ── Scroll-reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Top Nav Buttons ── */
.top-nav {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-btn {
  flex: 1;
  display: block;
  text-align: center;
  padding: 11px 8px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform 0.2s;
}
.nav-btn:active { background: var(--primary-dk); transform: scale(0.97); }

/* ── Section Headings ── */
.section-head {
  text-align: center;
  padding: 28px 16px 10px;
}
.section-head h1,
.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-head .sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 4px;
}

.section-head .sub1 {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 1px;
  text-decoration: overline;
  margin: 1px;
  font-style: normal;
  font-variant: small-caps;

}

.section-head .sub2 {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 1px;
  text-decoration: underline;
  margin: 1px;
  font-style: normal;
  font-variant: small-caps;

}


/* ── Hero / Full-width VIDEO Banner ── */

/* Update hero-banner for video support */
.hero-banner {
  width: 100%;
  height: 260px;
  background: var(--primary-dk);
  overflow: hidden;
  position: relative;
  border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
}

.hero-banner video,
.hero-banner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* For YouTube iframe - ensure it covers properly */
.hero-banner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevents user from clicking on video controls */
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* ── Hero / Full-width Image Banner ── */
.hero-banner {
  width: 100%;
  /* CHANGE HEIGHT HERE */
  height: 260px;
  background: var(--primary-dk);
  overflow: hidden;
  position: relative;
}
.hero-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner .placeholder-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
}
.hero-banner .placeholder-label span {
  font-size: 2.6rem; font-weight: 800; opacity: 0.85;
}
.hero-banner .placeholder-label small {
  font-size: 0.85rem; opacity: 0.65; margin-top: 6px;
}

/* Zoomable / clickable image */
.zoomable { cursor: zoom-in; transition: transform 0.3s ease; }
.zoomable:active { transform: scale(1.03); }

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; animation: lbIn .25s ease; }
@keyframes lbIn { from { opacity:0; } to { opacity:1; } }
.lightbox-overlay img {
  max-width: 96vw; max-height: 92vh;
  border-radius: 10px;
  transform: scale(0.95);
  animation: lbScale .3s ease forwards;
}
@keyframes lbScale { to { transform: scale(1); } }

/* ── Card Grid (with links) ── */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 0;
}
.card-link {
  display: block;
  text-decoration: none;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  /* CHANGE CARD HEIGHT HERE */
  height: 160px;
  background: var(--primary);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-link:active { transform: scale(0.98); box-shadow: 0 2px 12px rgba(139,16,16,0.2); }
.card-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-link .card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: var(--white); gap: 6px;
}
.card-link .card-placeholder span { font-size: 1.6rem; font-weight: 800; }
.card-link .card-placeholder small { font-size: 0.8rem; opacity: 0.7; }

/* ── Slider ── */
.slider-wrap {
  position: relative;
  padding: 10px 0 18px;
}
.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  padding: 6px 14px 6px 14px;
  scrollbar-width: none;
}
.slider-container::-webkit-scrollbar { display: none; }
.slide-item {
  scroll-snap-align: start;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  /* CHANGE SLIDE SIZE HERE */
  width: 260px;
  height: 294px;
  position: relative;object-fit: cover;
  transition: transform 0.2s;
}
.slide-item:active { transform: scale(0.97); }
.slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-item .slide-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: var(--white); text-align: center; padding: 8px;
  gap: 4px;
}
.slide-item .slide-placeholder span { font-size: 1rem; font-weight: 700; }
.slide-item .slide-placeholder small { font-size: 0.72rem; opacity: 0.75; }

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 5;
  transition: background 0.2s;
}
.slider-arrow:active { background: var(--primary-dk); }
.slider-arrow.left { left: 2px; }
.slider-arrow.right { right: 2px; }

/* ── TikTok row ── */
.tiktok-row {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tiktok-row::-webkit-scrollbar { display: none; }
.tiktok-embed-box {
  flex-shrink: 0;
  /* CHANGE TIKTOK BOX SIZE HERE */
  width: 130px;
  height: 160px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  text-align: center; padding: 8px;
  box-shadow: var(--shadow);
}

/* ── YouTube embed ── */
.youtube-wrap {
  margin: 14px;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  /* CHANGE YOUTUBE HEIGHT HERE */
  height: 200px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; font-weight: 800;
}
.youtube-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ── YouTube embed ── */
.youtube-wrap1 {
  margin: 14px;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  /* CHANGE YOUTUBE HEIGHT HERE */
  height: 560px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; font-weight: 800;
}
.youtube-wrap1 iframe { width: 100%; height: 100%; border: 0; display: block; }










/* ── Welcome text box ── */
.welcome-box {
  padding: 22px 16px 10px;
}
.welcome-box h2 {
  font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--text-dark);
}
.welcome-box blockquote {
  font-size: 0.88rem; font-style: italic; color: var(--text-mid);
  border-left: 3px solid var(--primary);
  padding-left: 12px; margin-bottom: 12px; line-height: 1.6;
}
.welcome-box p {
  font-size: 0.87rem; color: var(--text-mid); line-height: 1.7;
}

/* ── Map embed ── */
.map-wrap {
  margin: 14px;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  /* CHANGE MAP HEIGHT HERE */
  height: 220px;
  background: #ddd;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link-btn {
  display: flex; align-items: center; gap: 10px;
  margin: 0 14px 14px;
  padding: 13px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-decoration: none; color: var(--text-dark);
  font-weight: 700; font-size: 0.92rem;
  transition: background 0.2s;
}
.map-link-btn img { width: 34px; height: 34px; }
.map-link-btn:active { background: var(--off-white); }

/* ── Special Offers / Rates image block ── */
.rate-image-wrap {
  margin: 14px;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  /* CHANGE RATE IMAGE HEIGHT HERE */
  height: 620px;
  cursor: zoom-in;
  position: relative;
}
.rate-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rate-image-wrap .placeholder-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
}
.rate-image-wrap .placeholder-label span { font-size: 2.2rem; font-weight: 800; opacity: 0.85; }
.rate-image-wrap .placeholder-label small { font-size: 0.82rem; opacity: 0.65; margin-top: 6px; }



/* ── Special Offers / Rates image block ── */
.ext-image-wrap {
  margin: 14px;
  border-radius: var(--border-r);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  /* CHANGE RATE IMAGE HEIGHT HERE */
  height: 220px;
  cursor: zoom-in;
  position: relative;
}
.ext-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ext-image-wrap .placeholder-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
}
.ext-image-wrap .placeholder-label span { font-size: 2.2rem; font-weight: 800; opacity: 0.85; }
.ext-image-wrap .placeholder-label small { font-size: 0.82rem; opacity: 0.65; margin-top: 6px; }

/* ── Quick Links ── */
.quick-links {
  padding: 10px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.quick-links h2 {
  font-size: 1.6rem; font-weight: 800; text-align: center;
  margin-bottom: 6px;
}
.qlink-btn {
  display: block; text-align: center;
  padding: 14px 16px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; letter-spacing: 0.02em;
  box-shadow: 0 3px 12px rgba(139,16,16,0.2);
  transition: background 0.2s, transform 0.15s;
}
.qlink-btn:active { background: var(--primary-dk); transform: scale(0.98); }
.qlink-btn.phone { font-size: 1.05rem; font-weight: 800; }

/* ── Footer Contact ── */
.footer-contact {
  background: var(--white);
  padding: 22px 16px 10px;
  margin-top: 10px;
  border-top: 2px solid var(--off-white);
}
.contact-block { margin-bottom: 18px; }
.contact-block h3 {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 5px;
}
.contact-block p, .contact-block a {
  font-size: 0.92rem; color: var(--text-dark); text-decoration: none;
  display: block; line-height: 1.7;
}
.wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 12px 16px; border-radius: 9px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  margin-top: 8px; box-shadow: 0 3px 10px rgba(37,211,102,0.25);
  transition: background 0.2s;
}
.wa-btn svg { width: 22px; height: 22px; fill: white; }
.wa-btn:active { background: #1ebe5d; }

/* ── Copyright ── */
.copyright {
  text-align: center;
  padding: 14px 16px 24px;
  font-size: 0.72rem; color: var(--text-light); line-height: 1.6;
}

/* ── Pulse animation for CTA buttons ── */
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,16,16,0.35); }
  50%      { box-shadow: 0 0 0 8px rgba(139,16,16,0); }
}
.pulse { animation: pulse-red 2s infinite; }

/* ── Fade-in for hero ── */
@keyframes heroFade {
  from { opacity:0; transform:scale(1.04); }
  to   { opacity:1; transform:scale(1); }
}
.hero-banner { animation: heroFade 0.9s ease forwards; }


<!--EEEEEEEEEEEEEEEEEEEEEEEEE-->

/* ── Hero / Full-width VIDEO Banner ── */

/* Update hero-banner for video support */
.hero-banner1 { animation: heroFade 0.9s ease forwards; }
.hero-banner1 {
  width: 100%;
  height: 260px;
  background: var(--primary-dk);
  overflow: hidden;
  position: relative;
  
  margin-top:25px;

}

.hero-banner1 video,
.hero-banner1 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* For YouTube iframe - ensure it covers properly */
.hero-banner1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Prevents user from clicking on video controls */
}

.hero-banner1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* ── Hero / Full-width Image Banner ── */
.hero-banner1 {
  width: 100%;
  /* CHANGE HEIGHT HERE */
  height: 260px;
  background: var(--primary-dk);
  overflow: hidden;
  position: relative;
}
.hero-banner1 img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner1 .placeholder-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
}
.hero-banner1 .placeholder-label span {
  font-size: 2.6rem; font-weight: 800; opacity: 0.85;
}
.hero-banner1 .placeholder-label small {
  font-size: 0.85rem; opacity: 0.65; margin-top: 6px;
}


