/* Surf Bayay Pacifico — styles.css */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800;900&family=Mukta:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --dark:      #0D1E2C;
  --bg-alt:    #162535;
  --accent:    #2E7CA4;
  --highlight: #E88A50;
  --cream:     #F2EBD9;
  --mid:       #3A6A8A;
  --muted:     #7EA8C0;
  --text:      #2A3A48;
  --text-light:#5A7A90;
  --white:     #FFFFFF;
  --shadow:    rgba(13, 30, 44, 0.18);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Mukta', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Saira', sans-serif;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

p { font-size: 1.05rem; color: var(--text); }

.section-label {
  display: inline-block;
  font-family: 'Saira', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.text-center { text-align: center; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #256A8E;
  border-color: #256A8E;
  transform: translateY(-2px);
}

.btn-highlight {
  background: var(--highlight);
  color: var(--white);
  border-color: var(--highlight);
}
.btn-highlight:hover {
  background: #D07840;
  border-color: #D07840;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: var(--dark);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.navbar-name {
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 160px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: 'Saira', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active { color: var(--white); }

.navbar-links .btn-book {
  margin-left: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--highlight);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.82rem;
}
.navbar-links .btn-book:hover { background: #D07840; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,30,44,0.75) 0%,
    rgba(22,37,53,0.45) 60%,
    rgba(46,124,164,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero-label {
  display: inline-block;
  font-family: 'Saira', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(242,235,217,0.85);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Saira', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =============================================
   FEATURES STRIP
============================================= */
.features-strip {
  background: var(--dark);
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.04); }

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--accent);
}

.feature-item h4 {
  font-family: 'Saira', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.feature-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* =============================================
   PHOTO GRID (3x3 style)
============================================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 6px;
}

.photo-grid-item {
  overflow: hidden;
  position: relative;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-grid-item:hover img { transform: scale(1.06); }

.photo-grid-item.tall { grid-row: span 2; }
.photo-grid-item.wide { grid-column: span 2; }

/* =============================================
   BRAND TEASER
============================================= */
.brand-teaser {
  background: var(--bg-alt);
  color: var(--white);
}

.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-teaser-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.brand-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--highlight);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  font-family: 'Saira', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-teaser-text .section-label { color: var(--muted); }
.brand-teaser-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.brand-teaser-text p { color: rgba(242,235,217,0.75); margin-bottom: 1.25rem; }

/* =============================================
   STATS
============================================= */
.stats-section { background: var(--cream); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 4px;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 20px var(--shadow);
}

.stat-number {
  font-family: 'Saira', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   REVIEWS
============================================= */
.reviews-section { background: var(--dark); }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-label { color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem;
  transition: background 0.25s;
}
.review-card:hover { background: rgba(255,255,255,0.1); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #F5C842;
}

.review-text {
  font-size: 0.95rem;
  color: rgba(242,235,217,0.8);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Saira', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-name {
  font-family: 'Saira', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.review-source {
  font-size: 0.75rem;
  color: var(--muted);
}

/* =============================================
   SOCIAL CTA
============================================= */
.social-cta {
  background: var(--accent);
  padding: 4rem 0;
}

.social-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-cta h2 { color: var(--white); }
.social-cta p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

.social-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* =============================================
   SOCIAL FEED
============================================= */
.social-feed { background: var(--cream); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 2.5rem;
}

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item:hover img { transform: scale(1.08); }

.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,30,44,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}
.feed-item:hover .feed-overlay { opacity: 1; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,44,0.9) 0%, rgba(13,30,44,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Saira', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--muted); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* =============================================
   ABOUT PAGE
============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  background: var(--highlight);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Saira', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  font-size: 1.1rem;
  text-align: center;
  border: 4px solid var(--cream);
}

.about-image-badge span { font-size: 0.7rem; font-weight: 400; }

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1.25rem; color: var(--text-light); }

.values-section { background: var(--bg-alt); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: background 0.25s;
}
.value-card:hover { background: rgba(255,255,255,0.12); }

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--highlight);
}

.value-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.timeline-section { background: var(--cream); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content { text-align: right; grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }

.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
}

.timeline-year {
  font-family: 'Saira', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.timeline-desc { font-size: 0.88rem; color: var(--text-light); }

/* =============================================
   ROOMS PAGE
============================================= */
.room-categories { background: var(--dark); padding: 5rem 0; }

.room-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.room-cat-tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: default;
  display: flex;
  align-items: flex-end;
}

.room-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-cat-tile:hover img { transform: scale(1.05); }

.room-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,44,0.85) 0%, transparent 60%);
}

.room-cat-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.room-cat-tag {
  font-family: 'Saira', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.room-cat-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.room-cat-info p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

.rooms-list { background: var(--cream); }

.room-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(46,124,164,0.15);
}
.room-section:last-child { border-bottom: none; }

.room-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.room-section-inner.reverse { direction: rtl; }
.room-section-inner.reverse > * { direction: ltr; }

.room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.room-images .main-img {
  grid-column: span 2;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
}

.room-images .thumb-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}

.room-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-images .main-img:hover img,
.room-images .thumb-img:hover img { transform: scale(1.05); }

.room-info .room-cat-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  font-family: 'Saira', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.room-info h2 { margin-bottom: 1rem; }

.room-info p { color: var(--text-light); margin-bottom: 1.25rem; }

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.room-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* =============================================
   SURF PACKAGES
============================================= */
.surf-section { background: var(--bg-alt); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.package-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.package-card-header {
  background: var(--accent);
  padding: 1.5rem;
  text-align: center;
}
.package-card:nth-child(2) .package-card-header { background: var(--highlight); }

.package-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; color: var(--white); }

.package-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.package-card-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.83rem;
}

.package-card-body {
  padding: 1.5rem;
}

.package-card-body ul {
  list-style: none;
  padding: 0;
}

.package-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.package-card-body li:last-child { border-bottom: none; }
.package-card-body li svg { color: var(--muted); flex-shrink: 0; margin-top: 3px; }

/* =============================================
   GALLERY PAGE
============================================= */
.gallery-section { background: var(--cream); }

.gallery-filter {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid rgba(46,124,164,0.3);
  border-radius: 3px;
  font-family: 'Saira', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 8px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.gallery-masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }

.gallery-zoom {
  position: absolute;
  inset: 0;
  background: rgba(13,30,44,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}
.gallery-masonry-item:hover .gallery-zoom { opacity: 1; }

/* =============================================
   LIGHTBOX
============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Saira', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-blocks { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px var(--shadow);
  border-left: 3px solid var(--accent);
}

.contact-block-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-block p, .contact-block a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-block a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
}

.contact-form-wrap h3 { margin-bottom: 1.5rem; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Saira', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(46,124,164,0.2);
  border-radius: 3px;
  font-family: 'Mukta', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#formSuccess {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(46,124,164,0.1);
  border: 2px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
}

#formSuccess svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
#formSuccess h3 { color: var(--accent); margin-bottom: 0.5rem; }

.map-section { background: var(--bg-alt); }

.map-placeholder {
  background: var(--dark);
  border-radius: 4px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  margin-top: 2rem;
}

.map-placeholder svg { width: 48px; height: 48px; margin-bottom: 1rem; }
.map-placeholder p { font-size: 0.9rem; }
.map-placeholder a { color: var(--accent); }

.faq-section { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Saira', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-name {
  font-family: 'Saira', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--accent); color: var(--white); }
.footer-social-link svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: 'Saira', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p, .footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ANIMATIONS
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-rows: repeat(3, 180px); }
  .feed-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .navbar-links { display: none; position: fixed; top: 0; right: 0; height: 100vh; width: 280px; background: var(--dark); flex-direction: column; align-items: flex-start; justify-content: center; padding: 2rem; gap: 0.5rem; z-index: 990; transform: translateX(100%); transition: transform 0.35s ease; }
  .navbar-links.open { display: flex; transform: translateX(0); }
  .navbar-links a { font-size: 1rem; padding: 0.75rem 0; }
  .navbar-links .btn-book { margin-left: 0; margin-top: 1rem; }
  .hamburger { display: flex; z-index: 995; }

  .hero-content { padding: 7rem 1.5rem 3rem; }

  .brand-teaser-inner,
  .about-intro,
  .room-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .room-section-inner.reverse { direction: ltr; }
  .about-image-badge { display: none; }

  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-item.tall, .photo-grid-item.wide { grid-row: auto; grid-column: auto; }
  .photo-grid-item { height: 180px; }

  .reviews-grid,
  .packages-grid { grid-template-columns: 1fr; }

  .room-cats-grid { grid-template-columns: 1fr; }
  .room-images { grid-template-columns: 1fr; }
  .room-images .main-img { grid-column: 1; }

  .gallery-masonry { columns: 2; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .social-cta-inner { flex-direction: column; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline::before { left: 0.7rem; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 2.5rem; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { display: none; }
  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }

  .feed-grid { grid-template-columns: repeat(3, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .values-grid { grid-template-columns: 1fr; }
}
