/* WebSiteGenius Base Theme v2 — Professional Hotel Sites */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* ====== Reset & Typography ====== */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--wg-font-body, 'Montserrat', sans-serif);
  color: var(--wg-secondary, #24262d);
  line-height: 1.8;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wg-font-heading, 'Montserrat', sans-serif);
  font-weight: 600;
}

img { max-width: 100%; height: auto; }

/* ====== HEADER — Reveal / Sticky ====== */
.reveal_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, box-shadow 0.3s;
}

.reveal_header .header-inner {
  padding: 0.75rem 0;
  transition: padding 0.3s;
}

.reveal_header .header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Header states */
.reveal_header:not(.header--scrolled) {
  background: transparent;
}

.reveal_header:not(.header--scrolled) .nav-link,
.reveal_header:not(.header--scrolled) .logo-text.logo_normal,
.reveal_header:not(.header--scrolled) .nav-phone {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.reveal_header.header--scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.reveal_header.header--scrolled .header-inner {
  padding: 0.4rem 0;
}

.reveal_header.header--hidden {
  transform: translateY(-100%);
}

/* Logo dual mode */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s;
}

.logo_sticky { display: none; }
.logo_normal { display: block; }

.header--scrolled .logo_normal { display: none; }
.header--scrolled .logo_sticky { display: block; }

.header--scrolled .logo-text.logo_sticky {
  color: var(--wg-primary, #978667);
}

/* Static header override */
.header-style-static {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-style-static .logo_normal { display: none; }
.header-style-static .logo_sticky { display: block; }
.header-style-static .nav-link,
.header-style-static .nav-phone {
  color: var(--wg-secondary, #24262d) !important;
  text-shadow: none !important;
}

/* Fixed header override */
.header-style-fixed {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-style-fixed .logo_normal { display: none; }
.header-style-fixed .logo_sticky { display: block; }
.header-style-fixed .nav-link,
.header-style-fixed .nav-phone {
  color: var(--wg-secondary, #24262d) !important;
  text-shadow: none !important;
}

/* Desktop nav */
.header-nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .header-nav-desktop { display: block; }
  .hamburger_btn { display: none !important; }
}

.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.header-nav-list .nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0.75rem;
  color: var(--wg-secondary, #24262d);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.header-nav-list .nav-link:hover,
.header-nav-list .nav-link.active {
  color: var(--wg-primary, #978667);
}

/* Header actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .header-actions { display: flex; }
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wg-secondary, #24262d);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-phone i { margin-right: 0.25rem; }

.nav-phone:hover { color: var(--wg-primary, #978667); }

.header--scrolled .nav-phone {
  color: var(--wg-secondary, #24262d);
  text-shadow: none;
}

/* CTA buttons */
.btn-cta-header {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-cta-primary {
  background: var(--wg-primary, #978667);
  color: #fff;
  border: 2px solid var(--wg-primary, #978667);
}

.btn-cta-primary:hover {
  background: transparent;
  color: var(--wg-primary, #978667);
}

.header--scrolled .btn-cta-primary:hover {
  color: var(--wg-primary, #978667);
}

.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: var(--wg-secondary, #24262d);
}

.header--scrolled .btn-cta-secondary {
  color: var(--wg-secondary, #24262d);
  border-color: var(--wg-secondary, #24262d);
}

.header--scrolled .btn-cta-secondary:hover {
  background: var(--wg-secondary, #24262d);
  color: #fff;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-current {
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}

.header--scrolled .lang-current {
  color: var(--wg-secondary, #24262d);
  border-color: rgba(0,0,0,0.2);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.25rem 0;
  min-width: 50px;
  z-index: 10;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wg-secondary, #24262d);
  text-decoration: none;
  text-align: center;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  color: var(--wg-primary, #978667);
  background: var(--wg-accent, #faf8f5);
}

/* ====== HAMBURGER ====== */
.hamburger_btn {
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 1001;
}

.hamburger_btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger_btn span:nth-child(1) { top: 0; }
.hamburger_btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger_btn span:nth-child(3) { bottom: 0; }

.header--scrolled .hamburger_btn span,
.header-style-static .hamburger_btn span,
.header-style-fixed .hamburger_btn span {
  background: var(--wg-secondary, #24262d);
}

.hamburger_btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger_btn.active span:nth-child(2) { opacity: 0; }
.hamburger_btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ====== NAV PANEL (mobile side panel) ====== */
.nav-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav_panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.nav_panel.active {
  right: 0;
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.nav-panel-header .logo-img { height: 40px; }
.nav-panel-header .logo-text { font-size: 1.1rem; color: var(--wg-primary); }

.nav-panel-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--wg-secondary);
}

.nav-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-panel-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--wg-secondary, #24262d);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s;
}

.nav-panel-link:hover,
.nav-panel-link.active {
  color: var(--wg-primary, #978667);
}

.nav-panel-langs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.nav-panel-lang {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wg-secondary);
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.nav-panel-lang.active {
  background: var(--wg-primary, #978667);
  color: #fff;
  border-color: var(--wg-primary, #978667);
}

.nav-panel-phone {
  display: block;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--wg-secondary);
  text-decoration: none;
}

.nav-panel-phone i { margin-right: 0.5rem; color: var(--wg-primary); }

.nav-panel-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-panel-ctas .btn-cta-header {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

.nav-panel-ctas .btn-cta-secondary {
  color: var(--wg-secondary);
  border-color: var(--wg-secondary);
}

/* ====== HERO ====== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

@supports (-webkit-overflow-scrolling: touch) {
  .hero-section { background-attachment: scroll; }
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section p.lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ====== Fade-in on Scroll ====== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Room Cards ====== */
.room-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  margin-bottom: 2rem;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

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

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

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

.room-card .room-price {
  color: var(--wg-primary, #978667);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ====== Facilities ====== */
.facility-item {
  text-align: center;
  padding: 2rem 1rem;
}

.facility-item .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--wg-accent, #faf8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.facility-item .icon-wrapper i {
  font-size: 2rem;
  color: var(--wg-primary, #978667);
}

/* ====== Gallery ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ====== CTA Banner ====== */
.cta-banner {
  background: var(--wg-primary, #978667);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }

.cta-banner .btn {
  background: #fff;
  color: var(--wg-primary, #978667);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

/* ====== Testimonials ====== */
.testimonial-card {
  background: var(--wg-accent, #faf8f5);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.testimonial-card .stars { color: #f5c518; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ====== Contact ====== */
.contact-form .form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
}

.contact-form .btn {
  background: var(--wg-primary, #978667);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0;
}

/* ====== Restaurant Menu ====== */
.menu-section .nav-tabs .nav-link {
  color: var(--wg-secondary, #24262d);
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.menu-section .nav-tabs .nav-link.active {
  color: var(--wg-primary, #978667);
  border-bottom-color: var(--wg-primary, #978667);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px dotted #ddd;
}

.menu-item .item-name { font-weight: 500; }

.menu-item .item-price {
  color: var(--wg-primary, #978667);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 1rem;
}

/* ====== Booking Widget ====== */
.booking-widget {
  background: var(--wg-accent, #faf8f5);
  padding: 1.5rem;
  border-radius: 4px;
}

.booking-widget .btn-book {
  background: var(--wg-primary, #978667);
  color: #fff;
  border: none;
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
}

/* ====== Marquee ====== */
.marquee-section {
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  background: var(--wg-accent, #faf8f5);
}

.marquee-section .marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wg-primary, #978667);
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ====== Image + Text ====== */
.image-text-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

.image-text-section img {
  width: 50%;
  object-fit: cover;
}

.image-text-section .text-content { flex: 1; }

/* ====== Divider ====== */
.wg-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--wg-primary, #978667), transparent);
  margin: 3rem 0;
}

/* ====== VIDEO EMOTIONAL ====== */
.video-emotional {
  position: relative;
  min-height: 50vh;
  background: var(--wg-secondary, #24262d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-emotional-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.video-emotional-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.video-emotional-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.video-play-btn {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
}

.video-play-btn:hover {
  background: #fff;
  color: var(--wg-secondary, #24262d);
}

.video-play-btn i { font-size: 1.3rem; margin-right: 0.5rem; }

.video-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 90vw;
  height: 50.625vw;
  max-width: 1200px;
  max-height: 675px;
  border: none;
}

.video-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

/* ====== OFFERS ====== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  text-align: left;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.offer-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.offer-badge {
  display: inline-block;
  background: var(--wg-primary, #978667);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.offer-board {
  display: inline-block;
  background: var(--wg-accent, #faf8f5);
  color: var(--wg-secondary);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.offer-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.offer-card-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.offer-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wg-primary, #978667);
  display: block;
  margin-bottom: 0.5rem;
}

.offer-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.offer-variant {
  padding: 0.25rem 0.75rem;
  background: var(--wg-accent, #faf8f5);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.offer-countdown {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e11d48;
  margin-bottom: 1rem;
}

.offer-card-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--wg-primary, #978667);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.offer-card-cta:hover {
  background: color-mix(in srgb, var(--wg-primary, #978667) 85%, black);
  color: #fff;
}

/* ====== FOOTER ====== */
.footer-wg {
  background: var(--wg-secondary, #24262d);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 4rem 1.5rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

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

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--wg-primary, #978667);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li { margin-bottom: 0.5rem; }

.footer-nav-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav-list a:hover { color: var(--wg-primary, #978667); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-list i {
  color: var(--wg-primary, #978667);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list a:hover { color: var(--wg-primary, #978667); }

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: var(--wg-primary, #978667);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
}

.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-extra-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-extra-links a:hover { color: var(--wg-primary, #978667); }

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .image-text-section { flex-direction: column; }
  .image-text-section img { width: 100%; }
  .hero-section h1 { font-size: 2rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .video-emotional-content h2 { font-size: 1.8rem; }
}

/* Body padding for fixed/reveal header */
.header-style-reveal ~ main,
.header-style-fixed ~ main {
  /* no padding — hero goes behind header */
}

.header-style-static ~ main {
  /* static header takes flow space */
}
