﻿    :root {
      --cream: #f5f0e8;
      --forest: #2c4a35;
      --moss: #4a7c59;
      --gold: #c8a96e;
      --sand: #e8dcc8;
      --dark: #1a2d20;
      --text: #3a3028;
      --light-text: #7a6e60;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 4rem;
      background: transparent;
      transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
    }

    nav.scrolled {
      padding: 0.6rem 4rem;
      background: rgba(26, 45, 32, 0.92);
      backdrop-filter: blur(10px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    nav .nav-logo {
      margin-left: -4rem;
    }

    .nav-logo img {
      height: 100px;
      width: auto;
      border-radius: 4px;
      transition: height 0.4s;
    }

    nav.scrolled .nav-logo img {
      height: 70px;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        linear-gradient(to bottom, rgba(26, 45, 32, 0.5) 0%, rgba(26, 45, 32, 0.2) 50%, rgba(26, 45, 32, 0.7) 100%),
        url('main.jpg') center/cover no-repeat;
      transform-origin: center;
      animation: slowzoom 20s ease-in-out infinite alternate;
    }

    @keyframes slowzoom {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.07);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: #fff;
      padding: 2rem;
      animation: fadeup 1.2s ease both;
    }

    @keyframes fadeup {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(58, 48, 40);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 1.05;
      margin-bottom: 1rem;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.85);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      border-radius: 2px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      border: 2px solid var(--gold);
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--gold);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.6);
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(8px);
      }
    }

    /* SECTIONS */
    section {
      padding: 6rem 4rem;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--moss);
      font-weight: 500;
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }

    .section-title em {
      font-style: italic;
      color: var(--moss);
    }

    .section-desc {
      font-size: 1rem;
      color: var(--light-text);
      line-height: 1.8;
      max-width: 600px;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-images {
      position: relative;
      height: 520px;
    }

    .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      height: 80%;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 20px 60px rgba(26, 45, 32, 0.2);
    }

    .about-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 55%;
      height: 55%;
      object-fit: cover;
      border-radius: 2px;
      border: 6px solid var(--cream);
      box-shadow: 0 10px 40px rgba(26, 45, 32, 0.15);
    }

    .about-badge {
      position: absolute;
      top: 45%;
      left: 65%;
      background: var(--forest);
      color: #fff;
      padding: 1.2rem;
      border-radius: 2px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(26, 45, 32, 0.3);
      z-index: 2;
    }

    .about-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      display: block;
    }

    .about-badge .label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .about-text {
      padding-left: 1rem;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .feat-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 1rem;
      background: rgba(74, 124, 89, 0.06);
      border-radius: 2px;
    }

    .feat-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .feat-label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--dark);
    }

    .feat-sub {
      font-size: 0.78rem;
      color: var(--light-text);
      margin-top: 0.1rem;
    }

    /* ROOMS */
    .rooms-section {
      background: var(--dark);
    }

    .rooms-section .section-title {
      color: var(--cream);
    }

    .rooms-section .section-eyebrow {
      color: var(--gold);
    }

    .rooms-section .section-desc {
      color: rgba(245, 240, 232, 0.65);
    }

    .rooms-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      max-width: 1200px;
      margin: 0 auto 3rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .room-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1/1;
    }

    .room-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .room-card:hover img {
      transform: scale(1.06);
    }

    .room-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 45, 32, 0.9) 0%, transparent 60%);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: background 0.3s;
    }

    .room-card:hover .room-overlay {
      background: linear-gradient(to top, rgba(26, 45, 32, 0.95) 0%, rgba(26, 45, 32, 0.3) 60%);
    }

    .room-tag {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    .room-name {
      font-family: 'Playfair Display', serif;
      color: #fff;
      font-size: 1.3rem;
      margin-bottom: 0.3rem;
    }

    .room-info {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.65);
    }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 4px;
      max-width: 1200px;
      margin: 3rem auto 0;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
    }

    .gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      cursor: pointer;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    /* AMENITIES */
    .amenities-section {
      background: var(--sand);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1200px;
      margin: 3rem auto 0;
    }

    .amenity-card {
      background: var(--cream);
      padding: 2rem 1.5rem;
      border-radius: 2px;
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
      border-bottom: 3px solid transparent;
    }

    .amenity-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(26, 45, 32, 0.12);
      border-bottom-color: var(--moss);
    }

    .amenity-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }

    .amenity-name {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--dark);
    }

    .amenity-desc {
      font-size: 0.78rem;
      color: var(--light-text);
      margin-top: 0.3rem;
      line-height: 1.5;
    }

    /* ATTRACTIONS */
    .attractions-intro {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      max-width: 1200px;
      margin: 0 auto 3rem;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .attractions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .attraction-card {
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(26, 45, 32, 0.1);
      background: #fff;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .attraction-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 50px rgba(26, 45, 32, 0.18);
    }

    .attraction-img {
      height: 200px;
      overflow: hidden;
    }

    .attraction-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .attraction-body {
      padding: 1.4rem;
    }

    .attraction-dist {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--moss);
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    .attraction-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .attraction-desc {
      font-size: 0.82rem;
      color: var(--light-text);
      line-height: 1.6;
    }

    .attraction-stars {
      color: var(--gold);
      font-size: 0.8rem;
      margin-top: 0.6rem;
    }

    /* MAP & CONTACT */
    .contact-section {
      background: var(--forest);
    }

    .contact-section .section-title {
      color: var(--cream);
    }

    .contact-section .section-eyebrow {
      color: var(--gold);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 1200px;
      margin: 3rem auto 0;
      align-items: start;
    }

    .contact-info {
      color: rgba(245, 240, 232, 0.85);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    }

    .contact-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .c-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(200, 169, 110, 0.15);
      border: 1px solid rgba(200, 169, 110, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .c-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }

    .c-value {
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .c-value a {
      color: rgba(245, 240, 232, 0.85);
      text-decoration: none;
    }

    .c-value a:hover {
      color: var(--gold);
    }

    .map-container {
      border-radius: 2px;
      overflow: hidden;
      height: 380px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(245, 240, 232, 0.6);
      padding: 3rem 4rem 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto 2rem;
    }

    .footer-brand .nav-logo {
      display: inline-block;
      margin-bottom: 0.8rem;
      margin-left: -3rem;
    }

    .footer-brand .nav-logo img {
      height: 110px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 0.5rem;
    }

    .footer-col ul a {
      color: rgba(245, 240, 232, 0.6);
      text-decoration: none;
      font-size: 0.85rem;
    }

    .footer-col ul a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(245, 240, 232, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.78rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 4rem 1.5rem;
      }

      .about-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .rooms-grid {
        grid-template-columns: 1fr 1fr;
      }

      .attractions-grid {
        grid-template-columns: 1fr 1fr;
      }

      .amenities-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .gallery-item:nth-child(1) {
        grid-column: span 2;
      }

      .about-images {
        height: 320px;
      }
    }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 50px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox.show {
      display: block;
      opacity: 1;
    }

    .lightbox-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 80vh;
      object-fit: contain;
      animation: zoomIn 0.3s;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0)
      }

      to {
        transform: scale(1)
      }
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 35px;
      color: #f1f1f1;
      font-size: 40px;
      font-weight: bold;
      transition: 0.3s;
      cursor: pointer;
    }

    .lightbox-close:hover,
    .lightbox-close:focus {
      color: var(--gold);
      text-decoration: none;
      cursor: pointer;
    }

/* MOBILE MENU & WHATSAPP BUTTON */
.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1000;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-btn-burger, .menu-btn-burger::before, .menu-btn-burger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease-in-out;
}

.menu-btn-burger::before { transform: translateY(-8px); }
.menu-btn-burger::after { transform: translateY(8px); }

.menu-btn.open .menu-btn-burger { background: transparent; }
.menu-btn.open .menu-btn-burger::before { transform: rotate(45deg); }
.menu-btn.open .menu-btn-burger::after { transform: rotate(-45deg); }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
}

@media (max-width: 900px) {
  .menu-btn { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(26, 45, 32, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    display: flex !important;
  }

  .nav-links.active { right: 0; }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
