/* ============================================================
   SILCHAR LUXURY STAYS — style.css
   Author: Premium Design
   Color Palette:
     --ivory:   #F9F6F0
     --black:   #0F0F0F
     --charcoal:#1C1C1C
     --gold:    #B8963E
     --gold-lt: #D4AF72
     --muted:   #6B6B6B
     --white:   #FFFFFF
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ivory:   #F9F6F0;
  --black:   #0F0F0F;
  --charcoal:#1C1C1C;
  --gold:    #B8963E;
  --gold-lt: #D4AF72;
  --muted:   #7A7A7A;
  --white:   #FFFFFF;
  --card-shadow: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}
em { font-style: italic; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-card {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 24px;
  font-size: 0.8rem;
}
.btn-card:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Section Shared ---------- */
.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title,
.section-header.light .section-sub {
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,15,15,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-text em { font-style: italic; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-lt); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(15,15,15,0.98);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
  padding: 20px 40px 30px;
  gap: 20px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 20px;
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  animation: fadeUp 1s 0.4s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-heading em { color: var(--gold-lt); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 36px 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.stat.visible { opacity: 1; transform: translateY(0); }
.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   HOTELS SECTION
   ============================================================ */
.hotels-section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Hotel Card */
.hotel-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}
.hotel-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}
.card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-img {
  height: 100%;
  transition: transform 0.6s ease;
}
.hotel-card:hover .card-img {
  transform: scale(1.07);
}
.card-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.card-price {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(15,15,15,0.82);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  padding: 6px 14px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}
.card-price span {
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  opacity: 0.75;
}
.card-body {
  padding: 24px 26px 28px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.star-empty { color: #ddd; }
.card-location {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.card-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.card-desc {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
  background: var(--charcoal);
  padding: 100px 40px;
}
.why-section .section-title { color: var(--white); }
.why-section .section-sub   { color: rgba(255,255,255,0.5); }

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover {
  background: rgba(184,150,62,0.1);
  border-color: rgba(184,150,62,0.3);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.experience-image {
  position: relative;
  overflow: hidden;
}
.experience-image img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience-image:hover img { transform: scale(1.04); }
.experience-badge {
  position: absolute;
  bottom: 40px; right: -1px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 24px 32px;
}
.experience-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1;
}
.experience-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.experience-content {
  background: var(--ivory);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-content .section-title { margin-bottom: 24px; }
.experience-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.experience-list {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.experience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.experience-list li span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 40px;
  background: var(--ivory);
  max-width: 100%;
}
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.featured-testimonial {
  background: var(--charcoal);
  transform: translateY(-8px) scale(1.02);
}
.featured-testimonial.visible { transform: translateY(-8px) scale(1.02); }
.featured-testimonial:hover  { transform: translateY(-14px) scale(1.02); }
.featured-testimonial p,
.featured-testimonial strong { color: var(--white); }
.featured-testimonial span   { color: rgba(255,255,255,0.5); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.5;
}
.testimonial-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.88rem; display: block; }
.testimonial-author span   { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.cta-content {
  position: relative; z-index: 2;
}
.light-eyebrow { color: var(--gold-lt); }
.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-content h2 em { color: var(--gold-lt); }
.cta-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 40px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-logo { margin-bottom: 4px; }
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-icons a svg { width: 16px; height: 16px; }
.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,62,0.1);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.contact-list { gap: 18px !important; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.contact-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: var(--gold-lt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
  .featured-testimonial { transform: scale(1); }
  .featured-testimonial.visible { transform: translateY(0); }
  .experience-section { grid-template-columns: 1fr; }
  .experience-image img { min-height: 420px; }
  .experience-badge { right: 40px; }
  .experience-content { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 18px 24px; }

  .hotels-section, .why-section, .testimonials-section { padding: 70px 24px; }
  .hotels-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; gap: 20px; }

  .stats-bar { gap: 0; padding: 30px 16px; }
  .stat { padding: 16px 24px; }
  .stat-divider { height: 1px; width: 80%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }

  .cta-section { padding: 80px 24px; }
  .hero-heading { font-size: clamp(2rem, 10vw, 3rem); }

  .experience-content { padding: 50px 24px; }
  .experience-badge { bottom: 24px; right: 24px; padding: 16px 20px; }
  .experience-badge strong { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .section-title { font-size: 1.8rem; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION DELAYS
   ============================================================ */
.hotel-card:nth-child(2) { transition-delay: 0.1s; }
.hotel-card:nth-child(3) { transition-delay: 0.2s; }
.hotel-card:nth-child(4) { transition-delay: 0.05s; }
.hotel-card:nth-child(5) { transition-delay: 0.15s; }
.hotel-card:nth-child(6) { transition-delay: 0.25s; }
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }
.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(3) { transition-delay: 0.1s; }
.stat:nth-child(5) { transition-delay: 0.2s; }
.stat:nth-child(7) { transition-delay: 0.3s; }
