:root {
  /* Color Palette */
  --color-primary: #F9F6F0;
  /* Cream / Off-white */
  --color-secondary: #E07A5F;
  /* Terracotta */
  --color-tertiary: #81B29A;
  /* Sage Green */
  --color-text-dark: #2F3E46;
  /* Deep Charcoal */
  --color-text-light: #F4F1DE;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --border-radius: 12px;
  --transition-speed: 0.3s;
  --box-shadow: 0 10px 30px rgba(47, 62, 70, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(47, 62, 70, 0.15);
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #d16b50;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-white);
  transition: color var(--transition-speed) ease;
}

.logo:hover {
  color: var(--color-secondary);
}

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

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

.nav-links a {
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition-speed) ease;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-white);
  transition: color var(--transition-speed) ease;
}

/* Scrolled State Text Colors */
.header.scrolled .logo,
.header.scrolled .nav-links a,
.header.scrolled .hamburger {
  color: var(--color-text-dark);
}

.header.scrolled .nav-links a:hover {
  color: var(--color-secondary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/galary/1.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05) 60%, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: var(--color-text-dark) !important;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-content h2.section-title::after {
  margin: 1rem 0 0 0;
}

.about-list {
  margin-top: 2rem;
}

.about-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.about-list i {
  color: var(--color-tertiary);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Rooms Section */
.bg-light {
  background-color: var(--color-white);
}

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

.room-card {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.room-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.room-info {
  padding: 1.5rem;
}

.room-info h3 {
  color: var(--color-text-dark);
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(47, 62, 70, 0.1);
}

.room-amenities span {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-amenities i {
  color: var(--color-secondary);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.room-footer .price {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-tertiary);
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery-img {
  flex: 1 1 300px;
  max-width: 380px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform var(--transition-speed) ease;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.amenity-item i {
  font-size: 2.5rem;
  color: var(--color-tertiary);
  margin-bottom: 1rem;
}

.amenity-item p {
  font-weight: 500;
  color: var(--color-text-dark);
}

/* Travel Guide Section */
.travel-guide {
  background-color: var(--color-white);
}

.travel-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: rgba(47, 62, 70, 0.05);
  border: 1px solid rgba(47, 62, 70, 0.1);
  color: var(--color-text-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}

.filter-btn:hover {
  background-color: rgba(224, 122, 95, 0.1);
}

.filter-btn.active {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

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

.travel-card {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.travel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

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

.travel-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.travel-info h4 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

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

.badge {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-distance {
  background-color: rgba(224, 122, 95, 0.1);
  color: var(--color-secondary);
}

.badge-time {
  background-color: rgba(129, 178, 154, 0.1);
  color: var(--color-tertiary);
}

.badge-category {
  background-color: rgba(47, 62, 70, 0.1);
  color: var(--color-text-dark);
}

.travel-info p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.highlight-note {
  background-color: #FFF3CD;
  color: #856404;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.qr-code-wrapper {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(47, 62, 70, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qr-code {
  width: 60px;
  height: 60px;
  border-radius: 4px;
}

.qr-code-wrapper span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-tertiary);
}

/* Testimonials Section */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  width: 100%;
  max-width: 360px;
  background-color: var(--color-primary);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

/* Google Reviews */
#google-reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

#google-reviews-header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

#google-reviews-header .stars {
  color: #fbbc04;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

#google-reviews-header p {
  color: var(--color-tertiary);
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info h5 {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-dark);
}

.review-author-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #777;
  font-style: normal;
}

.review-stars {
  color: #fbbc04;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.reviews-actions {
  text-align: center;
  margin-top: 3rem;
}

/* Skeleton Loader */
.skeleton-card {
  position: relative;
  overflow: hidden;
}

.skeleton-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(47, 62, 70, 0.1);
  margin-bottom: 1rem;
}

.skeleton-text {
  width: 100%;
  height: 12px;
  background-color: rgba(47, 62, 70, 0.1);
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info i {
  color: var(--color-secondary);
  font-size: 1.5rem;
  width: 24px;
  text-align: center;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.whatsapp-cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background-color: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.whatsapp-cta:hover {
  background-color: #128C7E;
  color: white;
}

.directions-cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.directions-cta:hover {
  background-color: var(--color-text-dark);
  color: #ffffff;
}

.contact-right {
  min-height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container {
  width: 100%;
  height: 100%;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-tertiary);
  color: var(--color-white);
  border-radius: 50%;
  transition: background-color var(--transition-speed);
}

.social-links a:hover {
  background-color: var(--color-secondary);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(47, 62, 70, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-tertiary);
}

/* Footer */
.footer {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 0;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
}

/* Booking Widget Styles */
.booking-widget {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  color: var(--color-text-dark);
}

.hero-booking {
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-booking {
  padding: 2rem;
  background-color: var(--color-primary);
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-align: left;
}

.booking-form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.booking-form input,
.booking-form select {
  padding: 0.8rem;
  border: 1px solid rgba(47, 62, 70, 0.2);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-white);
  color: var(--color-text-dark);
  outline: none;
  width: 100%;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--color-secondary);
}

.booking-form.horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.booking-form.horizontal .form-group {
  margin-bottom: 0;
}

.booking-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  border-radius: 30px;
}

.booking-form.horizontal .booking-btn {
  height: 47px;
  margin-bottom: 0;
}

.booking-btn:disabled {
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-right {
    min-height: 300px;
  }
  .booking-form.horizontal {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-tertiary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}