:root {
  --hotel-ink: #121a1f;
  --hotel-muted: #65737b;
  --hotel-line: #e4e8e5;
  --hotel-cream: #f6f1e7;
  --hotel-gold: #b9884d;
  --hotel-green: #173f38;
  --hotel-sage: #dfe8df;
  --hotel-white: #ffffff;
  --hotel-shadow: 0 22px 60px rgba(18, 26, 31, 0.13);
  --hotel-soft-shadow: 0 12px 34px rgba(18, 26, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--hotel-ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

.font-serif {
  font-family: "Poppins", system-ui, sans-serif;
}

.text-muted-soft {
  color: var(--hotel-muted);
}

.bg-cream {
  background: var(--hotel-cream);
}

.section-padding {
  padding: 88px 0;
}

.section-kicker {
  color: var(--hotel-green);
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.section-title {
  color: var(--hotel-ink);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.lead-tight {
  max-width: 680px;
}

.section-title+p,
.section-title+.text-muted-soft {
  margin-top: 1.25rem;
}

.section-copy p+p {
  margin-top: 1rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 232, 229, 0.86);
  padding: 0.9rem 0;
  transition: box-shadow 180ms ease, padding 180ms ease;
}

.navbar.is-scrolled {
  box-shadow: 0 10px 32px rgba(23, 32, 38, 0.08);
  padding: 0.65rem 0;
}

.navbar-brand {
  color: var(--hotel-ink);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
}

.navbar-brand::after {
  background: var(--hotel-gold);
  content: "";
  display: block;
  height: 2px;
  margin-top: 0.24rem;
  width: 38px;
}

.navbar .nav-link {
  color: var(--hotel-muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-inline: 0.85rem !important;
  position: relative;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--hotel-green);
}

.menu-toggle {
  align-items: center;
  border: 1px solid rgba(18, 26, 31, 0.14);
  border-radius: 50%;
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
  z-index: 1060;
}

.menu-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 63, 56, 0.12);
}

.menu-toggle-line {
  background: var(--hotel-ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  left: 13px;
  position: absolute;
  transition: transform 240ms ease, opacity 180ms ease, top 240ms ease;
  width: 18px;
}

.menu-toggle-line:nth-child(1) {
  top: 15px;
}

.menu-toggle-line:nth-child(2) {
  top: 21px;
}

.menu-toggle-line:nth-child(3) {
  top: 27px;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.offcanvas-title {
  color: var(--hotel-ink);
  font-size: 1rem;
  font-weight: 800;
}

.mobile-menu-header,
.mobile-menu-backdrop {
  display: none;
}

.navbar-panel {
  display: flex;
}

.navbar .dropdown-menu {
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  box-shadow: var(--hotel-soft-shadow);
  padding: 0.55rem;
}

.navbar .dropdown-item {
  border-radius: 6px;
  color: var(--hotel-muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.62rem 0.8rem;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:hover {
  background: rgba(23, 63, 56, 0.08);
  color: var(--hotel-green);
}

.navbar .nav-link::before {
  background: var(--hotel-gold);
  bottom: 0.25rem;
  content: "";
  height: 2px;
  left: 0.85rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: calc(100% - 1.7rem);
}

.navbar .nav-link.active::before,
.navbar .nav-link:hover::before {
  transform: scaleX(1);
}

.navbar .dropdown-toggle::after {
  border-left: 0.32em solid transparent;
  border-right: 0.32em solid transparent;
  border-top: 0.36em solid currentColor;
  display: inline-block;
  margin-left: 0.42rem;
  vertical-align: 0.12em;
}

@media (min-width: 992px) {

  .navbar .dropdown:hover>.dropdown-menu,
  .navbar .dropdown:focus-within>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.86rem 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn-primary-hotel {
  background: var(--hotel-green);
  border: 1px solid var(--hotel-green);
  color: var(--hotel-white);
}

.btn-primary-hotel:hover,
.btn-primary-hotel:focus {
  background: #183b34;
  border-color: #183b34;
  box-shadow: 0 14px 30px rgba(23, 63, 56, 0.2);
  color: var(--hotel-white);
  transform: translateY(-2px);
}

.btn-outline-hotel {
  border: 1px solid rgba(23, 32, 38, 0.2);
  color: var(--hotel-ink);
}

.btn-outline-hotel:hover,
.btn-outline-hotel:focus {
  background: var(--hotel-ink);
  border-color: var(--hotel-ink);
  color: var(--hotel-white);
  transform: translateY(-2px);
}

.hero {
  min-height: 92vh;
  padding: 150px 0 64px;
  position: relative;
}

.hero::before {
  /* background:
    linear-gradient(90deg,
      rgba(10, 25, 20, 0.76),
      rgba(10, 25, 20, 0.43),
      rgba(10, 25, 20, 0.18)
    ),
    linear-gradient(0deg,
      rgba(10, 25, 20, 0.36),
      transparent 44%
    ); */
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-home {
  background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.page-hero {
  min-height: 52vh;
  padding: 140px 0 72px;
}

/* .page-hero::before {
  background: linear-gradient(90deg, rgba(12, 18, 22, 0.68), rgba(12, 18, 22, 0.28));
} */

.hero-rooms {
  background: url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-amenities {
  background: url("https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-gallery {
  background: url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-contact {
  background: url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-about {
  background: url("https://images.unsplash.com/photo-1606402179428-a57976d71fa4?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero-location {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero h1 {
  color: var(--hotel-white);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.85rem, 6.4vw, 5.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  max-width: 900px;
}

.hero-about h1 {
  line-height: 1.18;
  max-width: 980px;
}

.typewriter-word {
  color: #9fd3b5;
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

.typewriter-word::after {
  animation: caretBlink 850ms steps(1) infinite;
  background: currentColor;
  content: "";
  display: inline-block;
  height: 0.82em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
  width: 0.06em;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  max-width: 650px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: var(--hotel-shadow);
  margin-top: 56px;
  padding: 1.35rem;
}

.feature-item {
  align-items: center;
  display: flex;
  gap: 0.9rem;
}

.icon-box {
  align-items: center;
  background: linear-gradient(145deg, rgba(184, 136, 77, 0.18), rgba(23, 63, 56, 0.08));
  border-radius: 8px;
  color: var(--hotel-gold);
  display: inline-flex;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.card-hotel {
  background: var(--hotel-white);
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  box-shadow: var(--hotel-soft-shadow);
  height: 100%;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-hotel h2,
.card-hotel h3,
.amenity-tile h2,
.amenity-tile h3,
.contact-card h2,
.contact-card h3 {
  color: var(--hotel-ink);
  font-weight: 800;
  letter-spacing: 0;
}

.card-hotel:hover {
  border-color: rgba(184, 138, 68, 0.4);
  box-shadow: var(--hotel-shadow);
  transform: translateY(-7px);
}

.image-zoom {
  display: block;
  overflow: hidden;
}

.image-zoom img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.card-hotel:hover .image-zoom img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.room-price {
  color: var(--hotel-green);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.amenity-tile {
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  height: 100%;
  padding: 1.55rem;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.amenity-tile:hover {
  background: var(--hotel-white);
  border-color: rgba(184, 136, 77, 0.34);
  box-shadow: var(--hotel-soft-shadow);
  transform: translateY(-4px);
}

.testimonial {
  background: var(--hotel-white);
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  box-shadow: var(--hotel-soft-shadow);
  height: 100%;
  padding: 1.6rem;
  position: relative;
}

.testimonial::before {
  color: rgba(184, 136, 77, 0.22);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  left: 1.1rem;
  line-height: 1;
  position: absolute;
  top: 0.3rem;
}

.testimonial p,
.testimonial strong {
  position: relative;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(246, 241, 231, 0.96), rgba(223, 232, 223, 0.92)),
    url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=1400&q=72") center/cover no-repeat;
  border-bottom: 1px solid var(--hotel-line);
  border-top: 1px solid var(--hotel-line);
  color: var(--hotel-ink);
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  background: linear-gradient(90deg, rgba(184, 136, 77, 0.16), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .section-kicker {
  color: var(--hotel-gold) !important;
}

.cta-band .btn-light {
  background: var(--hotel-green);
  border-color: var(--hotel-green);
  color: var(--hotel-white);
}

.cta-band .btn-light:hover,
.cta-band .btn-light:focus {
  background: #102f2a;
  border-color: #102f2a;
  color: var(--hotel-white);
  transform: translateY(-2px);
}

.cta-band .btn-outline-light {
  border-color: rgba(18, 26, 31, 0.22);
  color: var(--hotel-ink);
}

.cta-band .btn-outline-light:hover,
.cta-band .btn-outline-light:focus {
  background: var(--hotel-ink);
  border-color: var(--hotel-ink);
  color: var(--hotel-white);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gallery-item {
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.contact-card {
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  box-shadow: var(--hotel-soft-shadow);
  padding: 1.5rem;
}

.policy-block {
  background: var(--hotel-white);
  border: 1px solid var(--hotel-line);
  border-radius: 8px;
  box-shadow: var(--hotel-soft-shadow);
  margin-bottom: 1.1rem;
  padding: 1.45rem;
}

.policy-block h2 {
  color: var(--hotel-ink);
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.policy-block ul {
  color: var(--hotel-muted);
  margin: 0;
  padding-left: 1.2rem;
}

.policy-block li + li {
  margin-top: 0.55rem;
}

.form-control {
  border-color: var(--hotel-line);
  border-radius: 8px;
  min-height: 52px;
  padding-inline: 1rem;
}

.form-control:focus {
  border-color: var(--hotel-gold);
  box-shadow: 0 0 0 0.2rem rgba(184, 138, 68, 0.16);
}

.map-frame {
  border: 0;
  border-radius: 8px;
  min-height: 360px;
  width: 100%;
}

.about-image {
  aspect-ratio: 4 / 5;
  box-shadow: var(--hotel-shadow);
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}

.social-bar {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  left: 18px;
  position: fixed;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1020;
}

.social-bar a,
.back-to-top {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(23, 32, 38, 0.16);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.social-bar a {
  background: var(--hotel-white);
  border: 1px solid var(--hotel-line);
  color: var(--hotel-green);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-bar a:hover {
  background: var(--hotel-green);
  color: var(--hotel-white);
  transform: translateX(2px);
}

.back-to-top {
  background: var(--hotel-ink);
  border: 0;
  bottom: 32px;
  color: var(--hotel-white);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 1020;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(23, 63, 56, 0.88), rgba(16, 24, 29, 0.98)),
    url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1600&q=72") center/cover no-repeat;
  color: rgba(255, 255, 255, 0.78);
  padding: 78px 0 28px;
  position: relative;
}

.site-footer::before {
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer h2,
.site-footer h3 {
  letter-spacing: 0.01em;
}

.site-footer .footer-text,
.site-footer .footer-links,
.site-footer .footer-bottom {
  font-size: 0.86rem;
  line-height: 1.75;
}

.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  margin-inline: auto;
  max-width: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0.25rem 0.35rem 0.25rem 0;
  padding: 0.48rem 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  align-items: center;
  background: rgba(10, 15, 18, 0.9);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 1080;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  border-radius: 8px;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  background: var(--hotel-white);
  border: 0;
  border-radius: 50%;
  height: 44px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 44px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 64px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-right: 0.55rem;
  }

  .navbar-panel {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--hotel-line);
    box-shadow: -24px 0 60px rgba(18, 26, 31, 0.18);
    display: block;
    height: 100vh;
    max-width: min(84vw, 360px);
    padding: 0 1.25rem 1.4rem;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(104%);
    transition: transform 260ms ease;
    width: min(84vw, 360px);
    z-index: 1055;
  }

  .mobile-menu-open .navbar-panel {
    transform: translateX(0);
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    background: rgba(12, 18, 22, 0.58);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 1050;
  }

  .mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-header {
    display: none;
  }

  .navbar-panel .navbar-nav {
    padding-top: 5rem;
  }

  .navbar .nav-link {
    border-bottom: 1px solid rgba(228, 232, 229, 0.85);
    font-size: 1rem;
    padding: 0.9rem 0 !important;
  }

  .navbar .nav-link::before {
    display: none;
  }

  .navbar .dropdown-menu {
    border: 0;
    display: none;
    box-shadow: none;
    margin: 0.1rem 0 0.6rem;
    padding: 0.25rem 0 0.25rem 0.7rem;
  }

  .navbar .dropdown.is-open>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-item {
    font-size: 0.94rem;
    padding: 0.65rem 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 46px;
  }

  .page-hero {
    min-height: 46vh;
  }

  .social-bar {
    left: auto;
    right: 16px;
    top: 50%;
  }

  .about-image {
    aspect-ratio: 16 / 11;
    min-height: 340px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.78rem, 9vw, 2.35rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .btn {
    width: 100%;
  }

  .hero-panel {
    margin-top: 36px;
  }

  .feature-item {
    align-items: flex-start;
  }

  .about-image {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .typewriter-word::after {
    animation: none;
  }
}

@media (max-width: 768px) {
  .site-footer::before {
    display: none !important;
    content: none;
  }

  .hero::before {
    background:
      linear-gradient(90deg,
        rgba(10, 25, 20, 0.9),
        rgba(10, 25, 20, 0.75),
        rgba(10, 25, 20, 0.55)),
      linear-gradient(0deg,
        rgba(10, 25, 20, 0.6),
        transparent 50%);
  }
}


/* New */


/* ================= HERO BASE ================= */
.hero {
  position: relative;
  overflow: hidden;

  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ================= GREEN OVERLAY ================= */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  /* background:
    linear-gradient(90deg,
      rgba(10, 25, 20, 0.76),
      rgba(10, 25, 20, 0.43),
      rgba(10, 25, 20, 0.18)
    ),
    linear-gradient(0deg,
      rgba(10, 25, 20, 0.36),
      transparent 44%
    ); */
}

/* ================= LIGHT SWEEP ================= */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.05),
      transparent 60%);

  transform: translateX(-100%);
  animation: lightSweep 10s linear infinite;
}

@keyframes lightSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* ================= CONTENT LAYER ================= */
.hero .container,
.hero .hero-panel {
  position: relative;
  z-index: 3;
}

/* ================= TEXT SAFE ================= */
.hero h1,
.hero p,
.hero .btn,
.hero .section-kicker {
  position: relative;
  z-index: 4;
}

/* ================= LOAD ANIMATION ================= */
.hero.loaded {
  animation: heroReveal 1.2s ease forwards;
}

@keyframes heroReveal {
  from {
    transform: scale(1.05);
    filter: blur(6px);
  }

  to {
    transform: scale(1);
    filter: blur(0);
  }
}

/* ================= TEXT ANIMATION ================= */
.hero.loaded h1 {
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero.loaded p {
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero.loaded .btn {
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero.loaded .section-kicker {
  animation: fadeUp 0.8s ease forwards 0.1s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }

  .hero::before {
    background:
      linear-gradient(90deg,
        rgba(10, 25, 20, 0.9),
        rgba(10, 25, 20, 0.75),
        rgba(10, 25, 20, 0.55)),
      linear-gradient(0deg,
        rgba(10, 25, 20, 0.6),
        transparent 50%);
  }

  .hero::after {
    background: linear-gradient(120deg,
        transparent 45%,
        rgba(255, 255, 255, 0.04),
        transparent 65%);
    animation: lightSweep 12s linear infinite;
  }

  .site-footer {
    background-attachment: scroll;
  }
}





/* ================= FOOTER BASE ================= */
/* ================= FOOTER BASE ================= */
.site-footer {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.9)),
    url('../images/ftr_bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 50px 0 20px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.95);
}

/* ================= FOOTER PARALLAX ================= */
.site-footer {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* ================= REMOVE UNWANTED BORDERS ONLY ================= */
.site-footer .container,
.site-footer .row {
  border: none !important;
}

/* ================= REMOVE HR LINE ================= */
.site-footer hr {
  display: none;
}

/* ================= LEFT ================= */
.site-footer h2 {
  font-weight: 700;
  margin-bottom: 6px;
}

.site-footer .section-kicker {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.75;
}

.site-footer .footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* ================= PILLS ================= */
.site-footer .footer-pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 6px;
}

/* ================= WIDGET HEADINGS ================= */
.site-footer h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  color: #729780;
}

/* fancy underline */
.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 35px;
  height: 2px;
  /* slightly improved */
  background: #729780;
  border-radius: 2px;
}

/* ================= LINKS ================= */
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
}

.site-footer .footer-links a {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.site-footer .footer-links a:hover {
  opacity: 1;
  transform: translateX(3px);
  color: #fff;
}

/* ================= BOTTOM ================= */
.site-footer .footer-bottom {
  text-align: center;
}

.site-footer .footer-bottom p {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 15px;
  }
}


/* Splide.js_css */
.gallery-wrap {
  margin: 80px auto;
  text-align: center;
}

.gallery-wrap h2 {
  color: #111a20;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* First Main Slider */
#main-slider-1 {
  max-width: 700px;
  margin: auto;
}

#main-slider-1 .splide__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* First Thumbnail Slider */
#thumbnail-slider-1 {
  max-width: 470px;
  margin: 15px auto 0;
}

#thumbnail-slider-1 .splide__slide {
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}

#thumbnail-slider-1 .splide__slide.is-active {
  opacity: 1;
  border: 2px solid #0d6efd;
}

#thumbnail-slider-1 .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* First Thumbnail Arrows */
#thumbnail-slider-1 .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  width: 28px;
  height: 28px;
}

#thumbnail-slider-1 .splide__arrow--prev {
  left: -35px;
}

#thumbnail-slider-1 .splide__arrow--next {
  right: -35px;
}

/* Slider_2 */
/* 🔹 Main Slider */
#main-slider-2 {
  max-width: 700px;
  margin: auto;
}

#main-slider-2 .splide__slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

/* 🔹 Thumbnail Slider */
#thumbnail-slider-2 {
  max-width: 470px;
  margin: 15px auto 0;
}

#thumbnail-slider-2 .splide__slide {
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
}

#thumbnail-slider-2 .splide__slide.is-active {
  opacity: 1;
  border: 2px solid #0d6efd;
}

#thumbnail-slider-2 .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔹 Arrow styling (for thumbnails) */
#thumbnail-slider-2 .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  width: 28px;
  height: 28px;
}

#thumbnail-slider-2 .splide__arrow--prev {
  left: -35px;
}

#thumbnail-slider-2 .splide__arrow--next {
  right: -35px;
}



/* big-alpha */
.pg-description::first-letter {
  font-size: 4.5rem;
  font-weight: 600;
  float: left;
  line-height: 1;
  padding-right: 8px;
  color: #9fd3b5;
  /* match your theme */
}


.pg-divider {
  position: relative;
  text-align: center;
  margin: 70px 0;
}

.pg-divider span {
  background: #f6f1e7;
  padding: 6px 18px;
  font-weight: 500;
  color: #6c757d;
  /* softer grey */
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.pg-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d6ddd9;
  /* more visible line */
  z-index: 1;
}

.logo_vgh {
  width: 250px;
}

@media (max-width: 768px) {
  .logo_vgh {
    width: 200px;
  }
}
