 
    :root {
      --gold-color: #C8A951;
      --gold-dark: #A88C3D;
      --dark-text: #2c3e50;
      --light-text: #555;
      --background-light: #f9fafb;
      --background-white: #fff;
      --section-padding: 100px 0;
      --border-radius: 8px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark-text);
      background: var(--background-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.3;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--dark-text);
      margin-bottom: 15px;
    }

    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--light-text);
      font-size: 1.1rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gold-color);
    }

    .btn {
  display: inline-block;
  padding: 12px 24px; /* Reduced from 14px 32px */
  background: var(--gold-color);
  color: white;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: auto;
  width: fit-content;
}

    .btn:hover {
      background: var(--gold-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* === NAVBAR === */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--background-white);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }

    .top-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 85px;
      padding: 0 25px;
    }

    .navbar-logo .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--dark-text);
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    .nav-menu {
      flex-grow: 1;
      text-align: right;
    }

    .nav-list {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      gap: 35px;
      margin: 0;
      padding: 0;
    }

    .nav-list li a {
      text-decoration: none;
      font-size: 17px;
      color: var(--dark-text);
      transition: var(--transition);
      font-weight: 500;
      position: relative;
    }

    .nav-list li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold-color);
      transition: var(--transition);
    }

    .nav-list li a:hover {
      color: var(--gold-color);
    }

    .nav-list li a:hover::after {
      width: 100%;
    }

    .nav-list li.active a {
      color: var(--gold-color);
    }

    .nav-list li.active a::after {
      width: 100%;
    }

    /* === HAMBURGER MENU === */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      margin-left: auto;
    }

    .hamburger span {
      width: 25px;
      height: 2px;
      background-color: var(--dark-text);
      margin: 4px 0;
      transition: var(--transition);
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* === MOBILE SIDEBAR === */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -280px;
      width: 250px;
      height: 100vh;
      background-color: var(--background-white);
      box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 1000;
      padding: 85px 20px 20px;
    }

    .mobile-sidebar.active {
      right: 0;
    }

    .mobile-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav-list li {
      margin-bottom: 15px;
    }

    .mobile-nav-list li a {
      text-decoration: none;
      font-size: 17px;
      color: var(--dark-text);
      display: block;
      padding: 10px 0;
      transition: var(--transition);
      font-weight: 500;
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-list li a:hover {
      color: var(--gold-color);
      padding-left: 10px;
    }

    .mobile-nav-list li.active a {
      color: var(--gold-color);
      font-weight: 600;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 999;
    }

    .overlay.active {
      display: block;
    }

    /* === HERO === */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/image-amenities/resort_image.png') center/cover no-repeat;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      color: white;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 800px;
      animation: fadeIn 1s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    /* === ABOUT === */
    .about {
      padding: var(--section-padding);
      background: var(--background-white);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-text h2 {
      font-size: 2.3rem;
      margin-bottom: 1.5rem;
      color: var(--dark-text);
    }

    .about-text p {
      color: var(--light-text);
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }

    /* === IMAGE COLLAGE === */
    .image-collage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 15px;
      height: 400px;
    }

    .collage-main {
      grid-column: 1 / span 2;
      grid-row: 1;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .collage-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .collage-main:hover img {
      transform: scale(1.05);
    }

    .collage-side-1 {
      grid-column: 1;
      grid-row: 2;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .collage-side-2 {
      grid-column: 2;
      grid-row: 2;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .collage-side-1 img,
    .collage-side-2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .collage-side-1:hover img,
    .collage-side-2:hover img {
      transform: scale(1.05);
    }

    /* === ROOMS SHOWCASE === */
    .rooms {
      padding: var(--section-padding);
      background: #f8f9fa;
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .room-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .room-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .room-image {
      height: 250px;
      overflow: hidden;
    }

    .room-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .room-card:hover .room-image img {
      transform: scale(1.1);
    }

    .room-content {
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .room-content h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--dark-text);
    }

    .room-price {
      color: var(--gold-color);
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .room-content p {
      color: var(--light-text);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* === FEATURES === */
    .features {
      padding: var(--section-padding);
      background: var(--background-white);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: var(--border-radius);
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: var(--transition);
      border-top: 4px solid transparent;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      border-top: 4px solid var(--gold-color);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .feature-icon {
      font-size: 2.8rem;
      color: var(--gold-color);
      margin-bottom: 1.5rem;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 0.7rem;
      color: var(--dark-text);
    }

    .feature-card p {
      color: var(--light-text);
    }

    /* === FOOTER === */
    footer {
      background: #1a1a1a;
      color: #ddd;
      padding: 70px 0 20px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      color: white;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold-color);
    }

    .footer-column p {
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--gold-color);
      padding-left: 5px;
    }

    .contact-info {
      list-style: none;
    }

    .contact-info li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .contact-info i {
      color: var(--gold-color);
      margin-right: 10px;
      margin-top: 5px;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: #333;
      color: white;
      border-radius: 50%;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--gold-color);
      transform: translateY(-3px);
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #333;
      font-size: 0.9rem;
      color: #888;
    }

    /* === LOADING === */
    .loading {
      text-align: center;
      padding: 40px;
      color: var(--light-text);
    }

    /* === RESPONSIVE STYLES === */
    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .image-collage {
        order: -1;
        height: 350px;
      }
      
      .hero h1 {
        font-size: 2.8rem;
      }
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-menu { display: none; }
      
      .hero h1 {
        font-size: 2.3rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .image-collage {
        height: 300px;
      }
    }

    @media (max-width: 576px) {
      .rooms-grid {
        grid-template-columns: 1fr;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
      }
      
      .image-collage {
        height: 250px;
        gap: 10px;
      }
    }