/* Hero Banner */
.ast-main-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
}

.ast-banner-content {
  padding: 8rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ast-banner-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.ast-banner-subtext {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.ast-primary-btn {
  display: inline-block;
  background: white;
  color: #1e3a8a;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ast-primary-btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.ast-container {
  font-family: Arial, Helvetica, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
}

/* Content Sections */
.ast-content-section {
  padding: 5rem 1rem;
}

.ast-white-bg {
  background-color: white;
}

.ast-light-bg {
  background-color: #f8fafc;
}

.ast-section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  color: #017eb4;
}

.ast-center-heading {
  display: block;
  text-align: center;
}

/* Image Cards */
.ast-image-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ast-image-card:hover {
  transform: translateY(-8px);
}

.ast-card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ast-card-img {
  width: 100%;
  height: auto; /* Changed to auto for responsiveness */
  object-fit: cover;
  transition: transform 0.5s ease;
}




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

.ast-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ast-image-card:hover .ast-img-overlay {
  opacity: 1;
}

/* Grid Layout */
.ast-grid {
  display: grid;
  gap: 2rem;
}

.ast-two-col {
  grid-template-columns: repeat(2, 1fr);
}

.ast-four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* Text Styles */
.ast-text-muted {
  color: #6b7280;
}

/* Spacing Utilities */
.ast-mb-6 {
  margin-bottom: 1.5rem;
}

.ast-mb-12 {
  margin-bottom: 3rem;
}

/* Tailwind-like utility classes for responsiveness */
.ast-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ast-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .ast-sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ast-lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ast-two-col {
    grid-template-columns: 1fr; /* Stack columns on small screens */
  }

  .ast-four-col {
    grid-template-columns: repeat(2, 1fr); /* Two columns on small screens */
  }

  .ast-section-heading {
    font-size: 1.75rem; /* Smaller heading on small screens */
  }
}

.accomdation-image-title {
  font-weight: bold;
  color: #fff;
}

.accomdation-image-title {
  font-weight: bold;
  color: #fff;
}

/* Modal Background */
.ast-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
}

/* Centered Image */
.ast-modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  object-fit: contain;
}

/* Caption */
#ast-caption {
  text-align: center;
  color: #ddd;
  font-size: 1rem;
  padding: 12px;
}

/* Close Button */
.ast-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.ast-close:hover {
  color: #f44336;
}

/* Navigation Arrows */
.ast-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  user-select: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.ast-nav.left {
  left: 30px;
}

.ast-nav.right {
  right: 30px;
}

.ast-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ast-nav {
    font-size: 32px;
    padding: 12px;
  }

  .ast-close {
    font-size: 32px;
    top: 15px;
    right: 20px;
  }

  #ast-caption {
    font-size: 0.9rem;
    padding: 8px;
  }
}

.iast-css-vars {
  --iast-primary-blue: #03a0e3;
  --iast-dark-blue: #017eb4;
  --iast-secondary-blue: #00a4e4;
  --iast-light-gray: #f8f9fa;
}

.iast-accommodation-body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #333;
}

.iast-accommodation-hero {
  background: linear-gradient(135deg, #017eb4, #71991c);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.iast-accommodation-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
  color: #ffffff;
}

.iast-accommodation-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
