/*
Theme Name: Simple Converted Theme
Author: ChatGPT
Version: 1.0
*/

/* ============================================
   OasisHostel Hostel – Premium CSS
   style.css  |  Luxury Hostel Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #F8F4EE;
  --bg-secondary: #0F2744;
  --bg-card: #ffffff;
  --bg-card-hover: #F0EAE0;
  --border-glass: #E8E0D4;
  --border-glass-hover: #D49A24;

  --accent-blue: #0F2744;
  --accent-purple: #0F2744;
  --accent-pink: #D49A24;
  --accent-cyan: #D49A24;
  --neon-glow: rgba(15, 39, 68, 0.15);

  --gradient-main: linear-gradient(135deg, #0F2744, #D49A24);
  --gradient-hero: linear-gradient(135deg, rgba(15,39,68,0.08), rgba(212,154,36,0.08));
  --gradient-text: #D49A24;

  --text-primary: #0F2744;
  --text-secondary: #5B6470;
  --text-muted: #5B6470;

  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 24px rgba(15, 39, 68, 0.08);
  --shadow-glow: 0 4px 24px rgba(15, 39, 68, 0.12);
  --shadow-btn: 0 4px 16px rgba(15, 39, 68, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Page Section Show/Hide ---- */
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pageFadeIn 0.4s ease forwards;
}
/* Hero page needs flex for the hero section inside */
#page-home.active {
  display: block;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}



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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background-color: #F8F4EE;
  color: #5B6470;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(135deg, #0F2744, #D49A24);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: none;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  margin: 0;
  animation: logoPulse 1.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%   { transform: scale(1);    opacity: 1; }
  50%  { transform: scale(1.08); opacity: 0.75; }
  100% { transform: scale(1);    opacity: 1; }
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: #E8E0D4;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, #0F2744, #D49A24);
  border-radius: 99px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* ---- Particles ---- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: #0F2744;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0; }
  90% { opacity: 0; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---- Utility Classes ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; z-index: 1; }
.gradient-text { color: #D49A24; background: none; -webkit-text-fill-color: #D49A24; }

/* ---- Glass Card (luxury white card) ---- */
.glass-card {
  background: #ffffff;
  border: 1px solid #E8E0D4;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.glass-card:hover {
  background: #ffffff;
  border-color: #D49A24;
  box-shadow: 0 8px 32px rgba(15, 39, 68, 0.12);
  transform: translateY(-4px);
}

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(212, 154, 36, 0.12);
  border: 1px solid rgba(212, 154, 36, 0.3);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D49A24;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: #0F2744;
  font-family: 'Playfair Display', serif;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scale(0);
  border-radius: 99px;
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: scale(2); }

.btn-primary {
  background: #D49A24;
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,39,68,0.35); background: #b8841e; }

.btn-outline {
  background: transparent;
  color: #0F2744;
  border: 1.5px solid #0F2744;
}
.btn-outline:hover { background: #0F2744; color: #fff; transform: translateY(-2px); }

/* Register Now button - Gold like image */
.btn-nav {
  background: #D49A24;
  color: #fff;
  padding: 0.65rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212,154,36,0.35);
  border-radius: 99px;
}
.btn-nav:hover { transform: translateY(-2px); background: #b8841e; box-shadow: 0 6px 20px rgba(212,154,36,0.45); }

.btn-room {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background: #0F2744;
  color: #fff;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 1rem;
}
.btn-room:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn); background: #b8841e; }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.3rem 0;
  background: rgba(255, 255, 255, 0.97);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(15, 39, 68, 0.07);
}
.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid #E8E0D4;
  padding: 0.2rem 0;
  box-shadow: 0 2px 16px rgba(15, 39, 68, 0.10);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F2744;
  letter-spacing: -0.3px;
}
.logo-since {
  font-size: 0.62rem;
  font-weight: 600;
  color: #5B6470;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer .logo-img {
  height: 78px;
  width: 78px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.navbar .logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5B6470;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: #D49A24;
  border-radius: 99px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #0F2744; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #0F2744;
  border-radius: 99px;
  transition: var(--transition);
}
.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); }

/* ============================================
   HERO SECTION
   ============================================ */

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/Image/HomePage/Home1.png');
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  background-color: #F8F4EE;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248,244,238,0.88) 0%, rgba(248,244,238,0.65) 40%, rgba(248,244,238,0.0) 100%);
}

/* ---- Hero Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: 5%;
  padding: 2rem 0 5rem 0;
  text-align: left;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid #D49A24;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0F2744;
  margin-bottom: 1.2rem;
}

/* Title */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #0F2744;
}
.hero-gold {
  color: #D49A24;
}

/* Subtitle */
.hero-subtitle {
  font-size: 0.95rem;
  color: #2d2d2d;
  max-width: 440px;
  margin: 0 0 1.8rem;
  line-height: 1.7;
  font-weight: 400;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: #D49A24;
  color: #fff;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212,154,36,0.4);
}
.hero-btn-primary:hover { background: #b8841e; transform: translateY(-2px); }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: rgba(255,255,255,0.85);
  color: #0F2744;
  border: 1.5px solid #0F2744;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn-outline:hover { background: #0F2744; color: #fff; transform: translateY(-2px); }

/* Stats Bottom Bar */
.hero-stats-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: rgba(15,20,30,0.82);
  backdrop-filter: blur(12px);
  border-radius: 12px 12px 0 0;
  white-space: nowrap;
}
.hero-stat-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-box:last-child { border-right: none; }
.hero-stat-box i { font-size: 1.4rem; color: #D49A24; }
.hsb-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.hsb-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 99px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: #D49A24;
  border-radius: 99px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* Old hero classes kept for compatibility */
.hero-stats { display: none; }
.hero-floating-card { display: none; }
.stat-num { color: #fff; }
.stat-label { color: rgba(255,255,255,0.7); }
.stat-divider { display: none; }
.btn-outline-white {
  background: rgba(255,255,255,0.85);
  color: #0F2744;
  border: 1.5px solid #0F2744;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-white:hover { background: #0F2744; color: #fff; transform: translateY(-2px); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 99px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: #ffffff;
  border-radius: 99px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { background: #F0EAE0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,39,68,0.12);
  border: 1px solid #E8E0D4;
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #D49A24;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(212,154,36,0.3);
}
.badge-num { display: block; font-size: 2rem; font-weight: 900; color: #fff; }
.badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.85); font-weight: 500; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; padding: 1.5rem 1rem; }
.about-card-icon { width: 56px; height: 56px; background: rgba(212,154,36,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #D49A24; flex-shrink: 0; }
.about-card h4 { font-size: 1rem; font-weight: 700; color: #0F2744; margin-bottom: 0.3rem; }
.about-card p { font-size: 0.82rem; color: #5B6470; line-height: 1.6; }
.about-card-line { width: 30px; height: 2px; background: #D49A24; margin: 0.3rem auto 0.5rem; border-radius: 99px; }

/* Room cards always visible */
.room-card.reveal { opacity: 1; transform: none; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.room-card { overflow: hidden; padding: 0; }
.room-img-wrap { position: relative; overflow: hidden; height: 200px; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.08); }
.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem;
  background: #0F2744;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.badge-gold { background: linear-gradient(135deg, #D49A24, #f0b429); }
.room-body { padding: 1.5rem; }
.room-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: #0F2744; }
.room-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #D49A24;
  margin-bottom: 1rem;
}
.room-price span { font-size: 0.85rem; color: var(--text-muted); }
.room-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.5rem; }
.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.room-features li i { color: #D49A24; font-size: 1rem; }

/* ============================================
   FACILITIES SECTION
   ============================================ */
.facilities { background: #F8F4EE; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.facility-card {
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: default;
}
.facility-icon {
  width: 64px; height: 64px;
  background: rgba(212, 154, 36, 0.10);
  border: 1px solid rgba(212, 154, 36, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #D49A24;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.facility-card:hover .facility-icon {
  background: #D49A24;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(15,39,68,0.25);
  transform: scale(1.08) rotate(-4deg);
}
.facility-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: #0F2744; }
.facility-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-new-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 220px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15,39,68,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-new-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 35px rgba(15,39,68,0.25);
}
.gallery-new-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-new-item:hover img { transform: scale(1.08); }
.gallery-new-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,39,68,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-new-item:hover .gallery-overlay { opacity: 1; }
.gallery-new-item .gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .gallery-new-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-new-grid { grid-template-columns: 1fr; }
}
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,41,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.9rem; font-weight: 600; color: #fff; }

/* ============================================
   FOOD SECTION
   ============================================ */
.food { background: #F0EAE0; }
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.food-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.food-icon {
  font-size: 2.5rem;
  color: #D49A24;
  margin-bottom: 1rem;
  display: block;
}
.food-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: #0F2744; }
.food-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.8rem; flex: 1; }
.food-time {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 154, 36, 0.1);
  border: 1px solid rgba(212, 154, 36, 0.2);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #D49A24;
}
.menu-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}
.menu-icon { font-size: 2.5rem; color: #16a34a; flex-shrink: 0; }
.menu-highlight h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; color: #0F2744; }
.menu-highlight p { font-size: 0.875rem; color: var(--text-secondary); }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: flex-start;
}
.testimonial-card {
  min-width: calc(50% - 0.75rem);
  padding: 2rem;
  flex-shrink: 0;
}
.stars { font-size: 1.2rem; color: #D49A24; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: #0F2744;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; font-weight: 700; color: #0F2744; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px;
  background: #ffffff;
  border: 1px solid #E8E0D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0F2744;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(15,39,68,0.06);
}
.slider-btn:hover { background: #0F2744; border-color: #0F2744; color: #fff; }
.slider-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 8px; height: 8px;
  background: #E8E0D4;
  border-radius: 99px;
  transition: var(--transition);
  cursor: pointer;
}
.dot.active { background: #D49A24; width: 24px; }

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-top: 1px solid #E8E0D4;
  border-bottom: 1px solid #E8E0D4;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-icon { font-size: 2rem; color: #D49A24; margin-bottom: 0.8rem; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #D49A24;
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: #D49A24;
  display: inline-block;
}
.stat-card .stat-label { font-size: 0.9rem; color: #5B6470; margin-top: 0.5rem; font-weight: 500; }

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking { background: #F0EAE0; }
.booking-wrap { max-width: 800px; margin: 0 auto; }
.booking-form { padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5B6470;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-group label i { color: #D49A24; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #E8E0D4;
  border-radius: var(--radius-sm);
  color: #0F2744;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5B6470; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #D49A24;
  box-shadow: 0 0 0 3px rgba(212,154,36,0.12);
  background: #ffffff;
}
.form-group select option { background: #ffffff; color: #0F2744; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.3rem; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(212, 154, 36, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #D49A24;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: #0F2744; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-btn {
  width: 40px; height: 40px;
  background: #F0EAE0;
  border: 1px solid #E8E0D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #5B6470;
  transition: var(--transition);
}
.social-btn:hover {
  background: #D49A24;
  border-color: #D49A24;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212,154,36,0.3);
}
.contact-map { height: 100%; }
.map-embed-wrap {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  position: relative;
}
.map-open-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: #fff;
  color: #0F2744;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 8px rgba(15,39,68,0.15);
  transition: var(--transition);
  text-decoration: none;
}
.map-open-link:hover { background: #F8F4EE; }
.map-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #F8F4EE;
  border-top: 1px solid #E8E0D4;
  flex-wrap: wrap;
}
.map-card-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}
.map-card-left strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F2744;
  margin-bottom: 0.2rem;
}
.map-card-left span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #f8f9fa; border-top: 2px solid #E8E0D4; }
.footer-top { padding: 3rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: #5B6470;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.2rem;
  color: #0F2744;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: #5B6470;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: #D49A24; padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #5B6470;
  line-height: 1.5;
}
.footer-contact li i { color: #D49A24; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: none;
  padding: 1rem 0;
  background: #0F2744;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: #ffffff; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.85rem; color: #ffffff; transition: var(--transition); }
.footer-bottom-links a:hover { color: #D49A24; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #25d366;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: #D49A24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(212,154,36,0.35);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,154,36,0.45); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main img { height: 360px; }
  .about-img-badge { right: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-floating-card { display: none; }
}


/* ============================================
   MOBILE FIX — 375px overflow fix
   ============================================ */

/* Prevent any element from causing horizontal scroll */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 480px) {

  /* Hero content — constrain within viewport */
  .hero-content {
    margin-left: 0;
    padding: 2rem 1.25rem 5rem 1.25rem;
    max-width: 100%;
  }

  /* Hero title — clamp tighter on 375px */
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    letter-spacing: -0.5px;
  }

  /* Hero stats bottom bar — wrap instead of overflowing */
  .hero-stats-bottom {
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 0;
  }

  .hero-stat-box {
    padding: 0.75rem 1rem;
    flex: 1 1 30%;
    justify-content: center;
  }

  /* Footer bottom — allow wrapping */
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Container padding safety */
  .container {
    padding: 0 1rem;
  }

  /* Navbar container */
  .nav-container {
    padding: 0 1rem;
  }
}





/* Mobile Large */
@media (max-width: 450px) {
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #ffffff;
    backdrop-filter: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 0.75rem 1rem; width: 100%; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { letter-spacing: -1px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }

  /* About */
  .about-cards { grid-template-columns: 1fr; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

  /* Testimonials */
  .testimonial-card { min-width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Booking */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: row; text-align: left; flex-wrap: nowrap; }
}

/* Mobile Small */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .menu-highlight { flex-direction: column; text-align: center; }
  .booking-form { padding: 1.5rem; }
}

/* ============================================
   ANIMATIONS & SPECIAL EFFECTS
   ============================================ */

/* Animated gradient background for hero */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtle pulse for icons */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(15,39,68,0.15); }
  50% { box-shadow: 0 0 24px rgba(15,39,68,0.25); }
}

/* Tilt effect on room cards */
.room-card { transform-style: preserve-3d; }

/* Input date color fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.6;
  cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F0EAE0; }
::-webkit-scrollbar-thumb { background: #D49A24; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #b8841e; }

/* Selection */
::selection { background: rgba(212,154,36,0.15); color: #0F2744; }















