﻿/* Import normalize with CSS layers */
@import url('https://unpkg.com/normalize.css') layer(normalize);

@layer normalize, base, demo, grid, setup, scroll, novelty;

@layer scroll {
  :root {
    --power-1-out: linear(
      0 0%,
      0.0027 3.64%,
      0.0106 7.29%,
      0.0425 14.58%,
      0.0957 21.87%,
      0.1701 29.16%,
      0.2477 35.19%,
      0.3401 41.23%,
      0.5982 55.18%,
      0.7044 61.56%,
      0.7987 68.28%,
      0.875 75%,
      0.9297 81.25%,
      0.9687 87.5%,
      0.9922 93.75%,
      1 100%
    );
    --power-2-out: linear(
      0 0%,
      0.0036 9.62%,
      0.0185 16.66%,
      0.0489 23.03%,
      0.0962 28.86%,
      0.1705 34.93%,
      0.269 40.66%,
      0.3867 45.89%,
      0.5833 52.95%,
      0.683 57.05%,
      0.7829 62.14%,
      0.8621 67.46%,
      0.8991 70.68%,
      0.9299 74.03%,
      0.9545 77.52%,
      0.9735 81.21%,
      0.9865 85%,
      0.9949 89.15%,
      1 100%
    );
    --power-3-out: linear(
      0 0%,
      0.0029 13.8%,
      0.0184 21.9%,
      0.0339 25.51%,
      0.0551 28.81%,
      0.0827 31.88%,
      0.1168 34.76%,
      0.1962 39.57%,
      0.3005 44.02%,
      0.4084 47.53%,
      0.6242 53.45%,
      0.7493 57.93%,
      0.8495 62.97%,
      0.8888 65.67%,
      0.9213 68.51%,
      0.9629 73.9%,
      0.9876 80.16%,
      0.998 87.5%,
      1 100%
    );
    --power-4-out: linear(
      0 0%,
      0.0012 14.95%,
      0.0089 22.36%,
      0.0297 28.43%,
      0.0668 33.43%,
      0.0979 36.08%,
      0.1363 38.55%,
      0.2373 43.07%,
      0.3675 47.01%,
      0.5984 52.15%,
      0.7121 55.23%,
      0.8192 59.21%,
      0.898 63.62%,
      0.9297 66.23%,
      0.9546 69.06%,
      0.9733 72.17%,
      0.9864 75.67%,
      0.9982 83.73%,
      1 100%
    );
    --sine: linear(
      0 0%,
      0.2861 18.47%,
      0.4829 32.08%,
      0.6437 44.52%,
      0.7712 56.07%,
      0.8722 67.47%,
      0.9115 73.02%,
      0.9434 78.49%,
      0.9682 83.91%,
      0.9859 89.3%,
      0.9965 94.66%,
      1 100%
    );
  }
  
  @keyframes fade {
    0%, 55% {
      opacity: 0;
    }
  }
  
  @keyframes reveal {
    0%, 30% {
      scale: 0;
    }
  }
  
  @keyframes scale-x {
    0%, 10% {
      width: calc(100vw - (2 * var(--gutter)));
    }
  }
  
  @keyframes scale-y {
    0%, 10% {
      height: calc(100vh - (2 * var(--gutter)));
    }
  }
  
  @media (prefers-reduced-motion: no-preference) {    [data-enhanced='true'] {
      .gallery-main section:first-of-type {
        min-height: 240vh;
      }      @supports (animation-timeline: view()) and (animation-range: 0 100%) {
        .gallery-main section:first-of-type {
          view-timeline: --runner;
        }        &[data-center='true'] {
          .scaler img, .scaler video {
            animation-name: scale-x, scale-y;
            animation-fill-mode: both;
            animation-timing-function: var(--power-2-out), var(--power-1-out);
            animation-timeline: --runner, --runner;
            animation-range: entry 80% exit -10%;
          }
        }

        &[data-layers='true'] {
          .grid .layer {
            animation-name: fade, reveal;
            animation-fill-mode: both;
            animation-timeline: --runner, --runner;
            animation-timing-function: var(--sine), var(--power-1-out);
            animation-range: entry 100% exit 0%;
          }
          
          &[data-stagger='timing'] .grid .layer {
            &:nth-of-type(1) {
              animation-timing-function: var(--sine), var(--power-1-out);
            }
            &:nth-of-type(2) {
              animation-timing-function: var(--sine), var(--power-3-out);
            }
            &:nth-of-type(3) {
              animation-timing-function: var(--sine), var(--power-4-out);
            }
          }
            &[data-stagger='range'] .grid .layer {
            &:nth-of-type(1) {
              animation-range: entry 90% exit 10%;
            }
            &:nth-of-type(2) {
              animation-range: entry 85% exit 5%;
            }
            &:nth-of-type(3) {
              animation-range: entry 80% exit 0%;
            }
          }
        }
      }
    }
  }
}

@layer setup {
  :root {
    --container-width: 1400px;
    --gap: clamp(8px, 5vw, 60px);
    --gutter: 2rem;
  }
  
  @media (max-width: 768px) {
    :root {
      --gap: clamp(6px, 4vw, 40px);
      --gutter: 1.5rem;
    }
  }
  
  @media (max-width: 600px) {
    :root {
      --gap: clamp(4px, 3vw, 24px);
      --gutter: 1rem;
    }
  }
  .content {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    place-items: center;
    align-content: center;
    position: sticky;
    top: 0;
    z-index: 1;
  }  .scaler {
    z-index: 2;
    width: 100%;
    height: 100%;
    position: relative;

    img, video {
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
      object-fit: cover;
      border-radius: 1rem;
      width: 100%;
      height: 100%;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

    video {
      background-color: #000;
    }
  }
}

@layer grid {
  .grid {
    --offset: 0;
    width: 1400px;
    max-width: calc(100% - (2 * var(--gutter)));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: var(--gap);
    margin: 0 auto;
    align-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }  @media (max-width: 768px) {
    .grid {
      width: 100%;
      grid-template-columns: repeat(4, 1fr);
      --offset: -0.5;
    }

    .grid > div:nth-of-type(1) {
      display: grid;
    }
  }

  @media (max-width: 600px) {
    .grid {
      grid-template-columns: repeat(3, 1fr);
      --offset: -1;
    }

    .grid > div:nth-of-type(1) {
      display: none;
    }
  }

  .grid > .layer {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
  }

  .grid > div:nth-of-type(1) div:nth-of-type(odd) {
    grid-column: 1;
  }
  .grid > div:nth-of-type(1) div:nth-of-type(even) {
    grid-column: -2;
  }

  .grid > div:nth-of-type(2) div:nth-of-type(odd) {
    grid-column: calc(2 + var(--offset));
  }
  .grid > div:nth-of-type(2) div:nth-of-type(even) {
    grid-column: calc(-3 - var(--offset));
  }

  .grid > div:nth-of-type(3) div {
    grid-column: calc(3 + var(--offset));

    &:last-of-type {
      grid-row: -1;
    }
  }

  .grid .scaler {
    position: relative;
    grid-area: 2 / calc(3 + var(--offset));
  }
  .grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 0.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .grid img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
}

@layer demo {
  .gallery-header {
    min-height: 80vh;
    display: grid;
    margin: 0 auto;
    align-content: center;
    justify-content: center;
    max-width: calc(100% - (2 * var(--gutter)));
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f6f0 100%);
  }

  .gallery-header h2 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 0.8;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  .gallery-header::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
  }

  .gallery-main,
  .gallery-main section {
    max-width: 100%;
  }

  .gallery-main section {
    min-height: 100vh;
  }

  .content {
    overflow: hidden;
  }

  .gallery-main section:last-of-type {
    display: grid;
    place-items: center;
  }
  .content-wrap {
    overflow: visible;
    background: var(--light-cream);
    z-index: 1;
    position: relative;
  }  .gallery-outro {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c8860d 100%);
    color: white;
    min-height: 60vh;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .gallery-outro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    pointer-events: none;
  }

  .gallery-outro h3 {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.9;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .gallery-header {
      min-height: 60vh;
      padding: 1.5rem;
    }

    .gallery-header h2 {
      font-size: clamp(2rem, 8vw, 4rem);
      line-height: 0.9;
    }

    .gallery-outro {
      min-height: 50vh;
      padding: 2rem 1rem;
    }

    .gallery-outro h3 {
      font-size: clamp(1.8rem, 7vw, 3.5rem);
    }
  }

  @media (max-width: 480px) {
    .gallery-header {
      min-height: 50vh;
      padding: 1rem;
    }

    .gallery-header h2 {
      font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .gallery-outro {
      min-height: 40vh;
      padding: 1.5rem 0.5rem;
    }

    .gallery-outro h3 {
      font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
  }
}

@layer base {
  :root {
    --font-size-min: 16;
    --font-size-max: 20;
    --font-ratio-min: 1.2;
    --font-ratio-max: 1.33;
    --font-width-min: 375;
    --font-width-max: 1500;
  }

  :where(.fluid) {
    --fluid-min: calc(
      var(--font-size-min) * pow(var(--font-ratio-min), var(--font-level, 0))
    );
    --fluid-max: calc(
      var(--font-size-max) * pow(var(--font-ratio-max), var(--font-level, 0))
    );
    --fluid-preferred: calc(
      (var(--fluid-max) - var(--fluid-min)) /
        (var(--font-width-max) - var(--font-width-min))
    );
    --fluid-type: clamp(
      (var(--fluid-min) / 16) * 1rem,
      ((var(--fluid-min) / 16) * 1rem) -
        (((var(--fluid-preferred) * var(--font-width-min)) / 16) * 1rem) +
        (var(--fluid-preferred) * var(--variable-unit, 100vi)),
      (var(--fluid-max) / 16) * 1rem
    );
    font-size: var(--fluid-type);
  }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Color Scheme */
:root {
    --primary-gold: #d4a574;
    --secondary-gold: #c19660;
    --dark-brown: #8b4513;
    --light-cream: #faf8f3;
    --warm-gray: #6b5b73;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    text-decoration: none;
    color: var(--primary-gold);
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #333;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link, .nav-dropdown {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle {
    color: var(--primary-gold);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 4px;
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--primary-gold);
    padding-left: 25px;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.restaurant-link {
    color: var(--primary-gold) !important;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-now-btn {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.4);
    /* Fallback gradient in case images don't load */
    background-color: #654321;
    background-image: linear-gradient(135deg, #654321 0%, #D4AF37 100%);
}

/* Ensure images load on mobile (background-attachment: fixed issues) */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 15;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: #d4a574;
    color: white;
}

.cta-primary:hover {
    background: #c19660;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-btn.active,
.hero-nav-btn:hover {
    background: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Booking Widget */
.booking-widget {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.booking-widget.active {
    display: flex;
}

.booking-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.booking-close:hover {
    color: #333;
}

.booking-container h3 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.booking-submit {
    width: 100%;
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-submit:hover {
    background: var(--secondary-gold);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text h2 {
    margin-bottom: 1rem;
    color: #333;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.welcome-text .luxury-highlight {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    position: relative;
}

.welcome-text .luxury-highlight::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Playfair Display', serif;
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Accommodations Section */
.accommodations {
    padding: 100px 0;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile responsive - 1 column */
@media (max-width: 768px) {
    .accommodations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet responsive - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

.accommodation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accommodation-card:hover .card-overlay {
    opacity: 1;
}

.view-details {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: var(--secondary-gold);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.amenities span {
    background: var(--light-cream);
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.amenities i {
    color: var(--primary-gold);
    margin-right: 0.3rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Restaurant Card Special Styling */
.restaurant-card {
    background: linear-gradient(135deg, #f8f4e6 0%, #fff 100%);
    border: 2px solid var(--primary-gold);
    position: relative;
}

.restaurant-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), #c9a961, var(--primary-gold));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.3);
}

.restaurant-price {
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* Dining Section */
.dining {
    padding: 100px 0;
    background: var(--light-cream);
}

.dining-venues {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.venue-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.venue-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.venue-type {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.venue-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.venue-features span {
    background: var(--light-cream);
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.venue-features i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.venue-link {
    background: var(--primary-gold);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.venue-link:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.venue-grid .venue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.venue-grid .venue-card:hover {
    transform: translateY(-5px);
}

.venue-grid .venue-image {
    height: 200px;
    overflow: hidden;
}

.venue-grid .venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-grid .venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-grid .venue-content {
    padding: 1.5rem;
}

.venue-grid .venue-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.venue-grid .venue-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Experiences Section */
.experiences {
    padding: 100px 0;
    position: relative;
    color: white;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.experiences .container {
    position: relative;
    z-index: 10;
}

.experiences .section-header h2,
.experiences .section-header p {
    color: white;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.experience-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.experience-icon i {
    font-size: 2rem;
    color: white;
}

.experience-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-cream);
    position: relative;
    z-index: 2;
}

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

.contact-info h2 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    width: 25px;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-gold);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
    clear: both;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -5px;
    color: var(--primary-gold);
}

.footer-logo span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #444;
    color: white;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-gold);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Background image classes */
.hero-bg-1 {
    background-image: url('../../image/BCD/night_build_b.jpg');
}

.hero-bg-2 {
    background-image: url('../../image/BCD/C1.jpg');
}

.hero-bg-3 {
    background-image: url('../../image/BCD/dbb1.jpg');
}

.parallax-bg-main {
    background-image: url('../image/LINE_ALBUM_3d_250524_10.jpg');
}

.resort-text {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-brown);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-brown);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   NEW PAGES STYLES - About, Amenities, Reviews, Location
   ========================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--light-cream);
    padding: 1rem 0;
    border-bottom: 1px solid #e8e2d4;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-gold);
}

.breadcrumb span {
    color: var(--warm-gray);
}

/* Page Hero Sections */
.about-hero,
.amenities-hero,
.reviews-hero,
.location-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.text-content .lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.text-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-points {
    margin-top: 2rem;
}

.philosophy-point {
    margin-bottom: 2rem;
}

.philosophy-point h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.philosophy-point p {
    color: #666;
    margin-bottom: 0;
}

.story-section,
.philosophy-section,
.sustainability-section {
    padding: 4rem 0;
}

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

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.award-item h3 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
    font-weight: 300;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--light-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

.member-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info p:last-child {
    color: #6c757d;
    line-height: 1.6;
}

/* Sustainability Section */
.sustainability-initiatives {
    margin-top: 2rem;
}

.initiative {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.1);
}

.initiative h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.initiative p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Amenities Page Styles */
.amenities-content {
    padding: 4rem 0;
}

.featured-amenities {
    padding: 4rem 0;
}

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

.featured-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-8px);
}

.featured-item.large {
    grid-row: span 2;
}

.featured-image {
    height: 200px;
    overflow: hidden;
}

.featured-item.large .featured-image {
    height: 300px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-item:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.featured-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.amenity-features {
    list-style: none;
    padding: 0;
}

.amenity-features li {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.amenity-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Amenities Categories */
.amenities-categories {
    padding: 4rem 0;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    height: 200px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.amenity-content {
    padding: 1.5rem;
}

.amenity-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.amenity-type {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenity-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.amenity-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-gold);
}

/* Features Grid */
.amenities-features {
    padding: 4rem 0;
    background: var(--light-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Operating Hours */
.operating-hours {
    padding: 4rem 0;
    background: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.hours-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-item:last-child {
    border-bottom: none;
}

.venue {
    font-weight: 500;
    color: #2c3e50;
}

.time {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Reviews Page Styles */
.reviews-content {
    padding: 4rem 0;
}

.rating-summary {
    margin-top: 2rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.rating-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-gold);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-count {
    color: white;
    opacity: 0.9;
}

/* Rating Breakdown */
.rating-breakdown {
    padding: 4rem 0;
    background: var(--light-cream);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.breakdown-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breakdown-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.rating-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.rating-fill {
    height: 100%;
    background: var(--primary-gold);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-score {
    font-weight: 500;
    color: var(--primary-gold);
}

/* Featured Reviews */
.featured-reviews {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--secondary-gold) 100%);
    color: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.reviewer-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-card.featured .reviewer-location {
    color: rgba(255, 255, 255, 0.8);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-card.featured .review-date {
    color: rgba(255, 255, 255, 0.7);
}

.source-badge {
    background: var(--primary-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.review-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.review-card.featured .review-content p {
    color: rgba(255, 255, 255, 0.9);
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: var(--primary-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-card.featured .highlight {
    background: rgba(255, 255, 255, 0.2);
}

/* Review Categories */
.review-categories {
    padding: 4rem 0;
    background: var(--light-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.category-rating span {
    font-weight: 500;
    color: var(--primary-gold);
}

.category-highlights p {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Guest Photos */
.guest-photos {
    padding: 4rem 0;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-caption {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.photo-credit {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Review Submission */
.review-submission {
    padding: 4rem 0;
    background: #f8f9fa;
}

.submission-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.submission-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.submission-content p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.review-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

/* Location Page Styles */
.location-content {
    padding: 4rem 0;
}

.location-quick-info {
    display: flex;
    justify-content: center;
    gap:   2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 4;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.info-item i {
    color: var(--light-cream);
    font-size: 1.2rem;
}

.info-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding:  4rem 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.map-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.address-info,
.coordinates,
.contact-info {
    margin-bottom: 2rem;
}

.address-info p,
.coordinates p,
.contact-info p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

/* Transportation Section */
.transportation-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transport-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.transport-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.transport-card h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.transport-content h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.distance {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.transport-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transport-details,
.transfer-info,
.ferry-schedule,
.driving-info,
.parking-info {
    margin-top: 1.5rem;
}

.transport-details h5,
.transfer-info p strong,
.ferry-schedule h5,
.driving-info h5,
.parking-info p strong {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.transport-details ul,
.ferry-schedule ul {
    list-style: none;
    padding-left: 1rem;
}

.transport-details li,
.ferry-schedule li {
    color: #6c757d;
    margin-bottom: 0.25rem;
    position: relative;
}

.transport-details li::before,
.ferry-schedule li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: -1rem;
}

.driving-info ol {
    padding-left: 1.5rem;
}

.driving-info li {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.ferry-options {
    margin-bottom: 1.5rem;
}

.ferry-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.ferry-option h5 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.local-options {
    margin-bottom: 1.5rem;
}

.local-option {
    margin-bottom: 1rem;
}

.local-option h5 {
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

/* Attractions Section */
.attractions-section {
    padding: 4rem 0;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.attraction-content .distance {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.attraction-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.attraction-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Local Services */
.local-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h3 i {
    color: var(--primary-gold);
}

.service-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.service-item .distance {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Weather Section */
.weather-section {
    padding: 4rem 0;
}

.weather-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.weather-overview h3,
.seasonal-guide h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.weather-overview p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.weather-stats {
    display: grid;
    gap: 1rem;
}

.weather-stat {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-gold);
}

.weather-stat h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.weather-stat p {
    color: var(--primary-gold);
    font-weight: 500;
    margin: 0;
}

.seasons-grid {
    display: grid;
    gap: 1.5rem;
}

.season-card {    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-gold);
}

.season-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.season-months {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.season-details p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.season-details strong {
    color: #2c3e50;
}

/* Contact & Directions */
.contact-directions {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details p {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #2c3e50;
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--secondary-gold) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #d4a574;
    color: white;
}

.btn-primary:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* Active Navigation */
.nav-link.active {
    color: var(--primary-gold) !important;
    font-weight: 500;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item.large {
        grid-row: span 1;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card.featured {
        grid-column: span 1;
    }
    
    .location-quick-info {
        flex-direction: column;
        align-items: center;
    }
      .map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .weather-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .breakdown-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Rating Bar Animations */
.rating-fill[style*="96%"] { width: 96% !important; }
.rating-fill[style*="94%"] { width: 94% !important; }
.rating-fill[style*="90%"] { width: 90% !important; }
.rating-fill[style*="98%"] { width: 98% !important; }
.rating-fill[style*="92%"] { width: 92% !important; }

/* Special Offers Page Styles */
.offers-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offers-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.offers-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.offers-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.offers-content {
    padding: 4rem 0;
}

.featured-offers {
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.offer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-card.featured .offer-image {
    height: 100%;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.offer-content {
    padding: 1.5rem;
}

.offer-card.featured .offer-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-content h3 {
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
}

.offer-features i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.offer-price {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.sale-price {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

.per-night {
    color: #666;
    font-size: 0.9rem;
}

.offer-validity {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-validity i {
    color: var(--primary-gold);
}

.seasonal-offers {
    background: var(--light-cream);
    padding: 4rem 0;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seasonal-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.seasonal-card:hover {
    transform: translateY(-3px);
}

.seasonal-card h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.seasonal-card h3 i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.seasonal-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.season {
    color: #666;
    font-weight: 500;
}

.discount {
    background: var(--primary-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.terms-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.terms-section h3 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.terms-content ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.terms-content li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .seasonal-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .map-info {
        padding: 1.5rem;
    }
}

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 1rem auto 0;
    }
}

@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        align-self: center;
        width: fit-content;
        padding: 10px 20px;
    }
}