/* ===== Section Styles ===== */
.section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: floralwhite;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hero-label {
  color: #5c3e10;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.display-heading-1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
}

/* Overlay Gradient for Background Section */
.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Products Grid */
.products-grid {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.products-item-wrapper {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.products-item-wrapper:hover {
  transform: translateY(-5px);
}

.products-card-link {
  text-decoration: none;
  color: inherit;
}

.products-item-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products-item-text-wrapper {
  padding: 20px;
}

.heading-h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-list-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.products-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Responsive fallback handled in responsive.css */
.animate-slide-up {
  padding: 120px 10px 100px 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-up.visible {
  z-index: inherit;
  max-width: 100%;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .animate-slide-up.visible {
    transform: translateY(10px); /* หรืออะไรก็ตามที่คุณต้องการให้เปลี่ยน */
  }
}








.security-container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

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

.security-label {
  font-size: 0.85rem;
  color: #a57a5a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.security-heading {
  font-size: 2.25rem;
  font-weight: bold;
  color: #3c2f2f;
}

.security-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding-top: 1rem;
}

.security-feature-item {
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.security-feature-item img {
  width: 300px;
  margin-bottom: 1rem;
}

.security-feature-item p {
  font-size: 1.3rem;
    font-weight: 500;
    color: #614632;
}


.section-awards {
  padding: 60px 20px;
  background: linear-gradient(to bottom, white , white, white,#d8d8d8);
  text-align: center;
}

.section-awards .section-header {
  margin-bottom: 40px;
}

.section-awards .display-heading-1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.section-awards .section-header p {
  font-size: 16px;
  color: #666;
}

.awards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.award-item {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.award-item p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

@media (max-width: 768px) {
  .awards-grid {
    flex-direction: column;
    align-items: center;
  }

  .award-item {
    width: 80%;
  }
}




.section-featured-tour {
  position: relative;
  height: 900px;
  overflow: hidden;
}

.featured-tour {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tour-content {
  color: #fff;
  max-width: 700px;
  text-align: left;
}

.tour-title {
  text-shadow: 1px 1px 10px;
  color: white;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tour-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #eee;
}

.tour-button {
  background-color: #d4af37; /* gold tone */
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tour-button:hover {
  background-color: #c39f2b;
  color: #fff;
}



.section-spa {
  padding: 60px 20px;
  background-color: #f6f3ef;
  text-align: center;
}

.section-spa .section-header {
  margin-bottom: 50px;
}

.section-spa .display-heading-1 {
  font-size: 36px;
  font-weight: 700;
  color: #3b2e2a;
}

.section-spa .section-header p {
  font-size: 16px;
  color: #7a6b65;
}

.spa-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.spa-box {
  background: #f6f3ef;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.spa-box:hover {
  transform: translateY(-8px);
}

.spa-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.spa-caption {
  padding: 20px;
  text-align: left;
}

.spa-caption h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4a3b36;
  margin-bottom: 10px;
}

.spa-caption p {
  font-size: 14px;
  color: #777;
}

/* Positioning in grid */
.spa-img1 { grid-column: 1; grid-row: 1; }
.spa-text1 { grid-column: 2; grid-row: 1; }

.spa-text2 { grid-column: 1; grid-row: 2; }
.spa-img2 { grid-column: 2; grid-row: 2; }



/* Ready to Book Section */
.section-ready {
  background-color: #d8d8d8;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-ready .ready-heading {
  font-size: 36px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.section-ready .ready-subtext {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0d7d0;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

.btn-booking {
  display: inline-block;
  background-color: #c89b63;
  color: white;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 1.4s ease forwards;
  opacity: 0;
}

.btn-booking:hover {
  background-color: #a57845;
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background-color: #2c1f18;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-ready .ready-heading {
    font-size: 28px;
  }

  .section-ready .ready-subtext {
    font-size: 16px;
  }

  .btn-booking {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-ready {
    padding: 60px 15px;
  }

  .section-ready .ready-heading {
    font-size: 24px;
  }

  .section-ready .ready-subtext {
    font-size: 15px;
  }

  .btn-booking {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
  }
}