:root {
  --primary-color: #0c121c;
  --secondary-color: #1a222c;
  --accent-color: #e6b800;
  --light-bg: #f5f1e8;
  --text-light: #fefefe;
  --text-dark: #2c3e50;
  --font-family: "Inter", sans-serif;
  --color-dark-brown: #3d231a;
  --color-light-brown: #f5f1e8;
  --color-accent-loader: #d4af37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
}

.section-padding {
  padding: 100px 0;
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* --- Loader Styles --- */
body.loading {
  overflow: hidden;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.75s ease-out, visibility 0.75s ease-out;
  visibility: visible;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.lines-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  position: absolute;
  background-color: var(--color-accent-loader);
  width: 2px;
  height: 150px;
  transform-origin: center;
  opacity: 0;
  animation: grow-and-fade 3s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.line:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: 0.2s;
}

.line:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: 0.4s;
}

.line:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: 0.6s;
}

.line:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: 0.8s;
}

.line:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: 1s;
}

.line:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: 1.2s;
}

@keyframes grow-and-fade {
  0%,
  100% {
    height: 0px;
    opacity: 0;
  }

  50% {
    height: 150px;
    opacity: 1;
  }
}

.brand-name {
  opacity: 0;
  transform: scale(0.95);
  animation: fade-in-scale 2s ease-out forwards 1.5s;
}

@keyframes fade-in-scale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--color-light-brown);
  opacity: 0;
  text-transform: uppercase;
  animation: fade-in-up 1.5s ease-out forwards 2s;
}

@keyframes fade-in-up {
  to {
    opacity: 0.7;
  }
}

#main-content {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

#main-content.visible {
  opacity: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
}

.section-header .pre-title {
  font-size: 0.9rem;
  color: #ff0077;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 5px;
}

.divider {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 2px;
  margin: 20px auto;
  background-color: #ccc;
}

.divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 2px solid #e91e63;
}

.bg-dark-bg {
  background: var(--secondary-color);
  color: var(--text-light);
}

.bg-dark-bg .section-header h2,
.bg-dark-bg .section-header p {
  color: var(--text-light);
}

.bg-dark-bg .section-header .pre-title {
  color: #ff0077;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  background-color: #ffcc00;
}

.cta-button.secondary {
  background: var(--primary-color);
  color: var(--accent-color);
}

.cta-button.secondary:hover {
  background-color: #2c3e50;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: var(--accent-color);
}

.top-header {
  background: black;
  color: var(--text-light);
  padding: 10px 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  z-index: 1001;
  top: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.top-header-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 25px;
  margin: auto;
}

.top-header-content a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.top-header-content a:hover {
  color: var(--accent-color);
}

.main-header {
  background-image: linear-gradient(to top, #00000000 0%, #000000 100%);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1000;
  transition: all 0.4s ease;
}

.main-header.scrolled {
  background: rgba(12, 18, 28, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 0;
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li a {
  color: var(--text-light);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 400;
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1001;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../image/hero-outdoor-img.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 3px;
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

#booking {
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-container {
  width: 100%;
  max-width: 850px;
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form-container input:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(230, 184, 0, 0.3);
}

.about-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img,
.map-container img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.video-services-grid {
  display: grid;
  /* MOBILE (Default): 1 column, centered. */
  grid-template-columns: 1fr;
  justify-items: center; /* This centers the card within the column */
  gap: 30px;
  padding: 0 15px; /* Adds some space on mobile */
}

/* DESKTOP (for screens 992px and wider) */
@media (min-width: 992px) {
  .video-services-grid {
    /* 3 columns that size to the content, not stretching */
    grid-template-columns: repeat(2, auto);
    /* This centers the whole grid block on the page */
    justify-content: center;
    padding: 0;
  }

  /* This rule correctly centers the 4th card on the next row */
  /*.video-services-grid .video-service-item:nth-child(4) {*/
  /*  grid-column: 2 / 3;*/
  /*}*/
}

/* --- Your card styles remain the same --- */
.video-service-item {
  position: relative;
  width: 100%; /* Make card take up the column width */
  max-width: 426px; /* Set a max-width for the card itself */
  height: 534px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.video-service-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-service-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  transition: background-color 0.3s ease;
}

.video-service-item .overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-service-item .overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s 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.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 10px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.gallery-item.hidden-gallery-item {
  display: none;
}

.gallery-view-more-container {
  text-align: center;
  margin-top: 40px;
}

.blog-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.blog-card-image {
  overflow: hidden;
}

.blog-card-featured .blog-card-image {
  height: 100%;
  border-radius: 15px 0 0 15px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-featured .blog-card-content {
  padding: 2rem;
}

.blog-card-standard .blog-card-image {
  height: 200px;
  border-radius: 15px 15px 0 0;
}

.blog-card-standard .blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  font-size: 1.25rem;
}

.blog-card-featured h3 {
  font-size: 2rem;
}

.blog-card-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
  color: var(--accent-color);
}

.category-tag {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 1rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}

.blog-excerpt {
  color: #555;
  margin: 1rem 0 1.5rem;
}

.read-more {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.blog-card.hidden-post {
  display: none;
}

.blog-view-more-container {
  text-align: center;
  margin-top: 40px;
}

#reviews {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../image/hero-outdoor-img.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.reviews-carousel {
  position: relative;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px 20px 60px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.review-slide {
  position: absolute;
  width: 100%;
  padding: 0 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.review-slide.active {
  display: flex;
  opacity: 1;
}

.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #ddd;
}

.review-author {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1rem;
  color: var(--accent-color);
}

.reviews-carousel .carousel-dots .dot {
  background: #777;
}

.reviews-carousel .carousel-dots .dot.active {
  background: var(--accent-color);
}

/* Styles for new Review Submission Section */
.review-form-container {
  width: 100%;
  max-width: 850px;
  background-color: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--accent-color);
}

#review-message {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

#review-message.success {
  background-color: #d4edda;
  color: #155724;
}

#review-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
  display: block;
  width: 100%;
  height: auto;
}

.map-marker {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.map-marker::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
}

.map-marker:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.marker-dot {
  width: 35px;
  height: 35px;
  background-color: #d81b60;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  transition: transform 0.3s ease;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.map-marker:hover .marker-dot {
  animation-play-state: paused;
  transform: scale(1.2);
}

.location-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-details p {
  margin-bottom: 1.5rem;
}

.location-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.location-details ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 25px;
}

.location-details ul li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 2px;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.7);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px 5px rgba(216, 27, 96, 0.7);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0);
  }
}

.events-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.events-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
}

.events-carousel .slide.active {
  opacity: 1;
  z-index: 2;
}

.events-carousel .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.events-carousel .slide-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.events-carousel .slide-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.events-carousel .slide-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.main-footer-container {
  position: relative;
  background: #f5f5f5;
  color: var(--text-dark);
  padding: 80px 0 30px 0;
  overflow: hidden;
  text-align: center;
}

.main-footer-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/footer-traditional-img.webp") no-repeat bottom
    center/cover;
  opacity: 0.1;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo-section,
.footer-links,
.footer-contact,
.footer-social {
  padding: 20px;
  flex: 1 1 200px;
}

.footer-logo-section .logo {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo-section p {
  margin-bottom: 15px;
}

.footer-logo-section input[type="email"] {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.footer-links ul li a {
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-social .social-links a {
  font-size: 1.8rem;
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 10px;
}

.footer-social .social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .design-credit a {
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .section-padding {
    padding: 80px 0;
  }

  .about-grid,
  .contact-grid,
  .location-grid,
  .blog-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image {
    order: -1;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .blog-card-image {
    height: 300px;
    border-radius: 15px 15px 0 0;
  }

  .footer-content {
    text-align: center;
    flex-direction: column;
  }

  .footer-links ul {
    display: inline-block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 280px;
    background: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.nav-open {
    right: 0;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .top-header {
    display: none;
  }

  .main-header {
    top: 0;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .booking-header h2,
  .blog-card-featured h3,
  .events-carousel .slide-content h3 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-container,
  .review-form-container,
  .contact-form-container {
    padding: 30px 20px;
  }

  .review-slide {
    padding: 0 15px;
  }

  .review-text {
    font-size: 1rem;
  }

  .footer-bottom {
    justify-content: center;
  }
}

.blog-excerpt {
  color: #555;
  margin: 1rem 0 1.5rem;
  overflow-wrap: break-word;
  word-break: break-all;
}

#blogModalContent {
  overflow-wrap: break-word;
  word-break: break-all;
}

/* ==================== Contact Section ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container {
  background-color: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-family);
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 15px;
  font-weight: 400;
}

.contact-info i {
  margin-right: 12px;
  color: var(--accent-color);
}

.social-links {
  margin-top: 30px;
  color: var(--text-light);
}

.social-links a {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-right: 20px;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent-color);
}

.contact-grid .contact-info p,
.contact-grid .contact-info h3 {
  color: var(--text-light);
}

/* ========== Responsive Fix ========== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Contact info on top, form below */
  .contact-info {
    order: -1;
  }
}



/*location*/

.map-section {
    width: 100%;
    height: 60vh; /* Sets the map height to 60% of the viewport height. Adjust as needed. */
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none; /* Removes the default border */


}
.map-section {
    width: 100%;
    height: 60vh; /* Sets the map height to 60% of the viewport height. Adjust as needed. */
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none; /* Removes the default border */
}

/*==================================
    Packages Section
====================================*/
.packages {
    background-color: #fdfaf5; /* Matches the light background from your image */
}

/* Grid for the package cards */
.packages-grid {
display: grid;
  /* MOBILE (Default): 1 column, centered. */
  grid-template-columns: 1fr;
  justify-items: center; /* This centers the card within the column */
  gap: 10px;
  padding: 0 15px; 
}

/* Individual Package Card */
.package-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 450px;
    flex: 1 1 400px; /* Flex properties for responsive sizing */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* removed max-height so cards can grow naturally */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-card img {
    width: 100%;
    height: auto;          /* makes image responsive */
    max-height: 250px;     /* optional: keeps image from being too tall */
    object-fit: cover;
}

.package-card .card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows the content to fill the card height */
}

.package-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.package-card .package-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-card .package-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes the footer down */
}

.package-card .package-features li {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Adds a checkmark icon before each feature */
.package-card .package-features li::before {
    content: '✔';
    color: #f39c12; /* Gold/yellow accent color */
    position: absolute;
    left: 0;
    top: 1px;
}

.package-card .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto; /* Aligns footer to the bottom */
}

.package-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
}

.package-card .btn-package {
    background-color: #0a0000;
    color: var(--accent-color);
    padding: 10px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.package-card .btn-package:hover {
    background-color: #1a222c;
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        max-width: 90%;  /* Cards take almost full screen */
        flex: 1 1 auto;  /* Height adjusts to content */
    }

    .package-card img {
        max-height: 200px; /* Smaller images for mobile */
    }
}

@media (min-width: 992px) {
  .packages-grid {
    /* 3 columns that size to the content, not stretching */
    grid-template-columns: repeat(4, auto);
    /* This centers the whole grid block on the page */
    justify-content: center;
    padding: 0;
  }
}

/* ===================== POPULAR PACKAGE STYLING ===================== */
/* Highlight for Guest Favorite package */
/* Highlight for Guest Favorite package */
.package-card.popular-package {
    border: 2px solid #e6b800; /* Yellow border */
    border-radius: 12px; /* Smooth rounded corners */
    box-shadow: 0 8px 20px rgba(120, 70, 20, 0.4), 0 0 15px rgba(120, 70, 20, 0.6); /* Glow + shadow */

    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

/* Add a futuristic glow effect on hover */
.package-card.popular-package:hover {
    transform: translateY(-5px); /* Slight lift */
    box-shadow: 0 12px 25px rgba(120, 70, 20, 0.5), 0 0 25px rgba(120, 70, 20, 0.8);
}

/* Badge styling */
.package-card .popular-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #e6b800, #fff700); /* Futuristic gradient */
    color: #000;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

