/* Custom styles */
body {
    /* Added Noto Sans SC for Chinese characters */
    font-family: 'Noto Sans Lao', 'Inter', 'Noto Sans SC', sans-serif;
    background-color: #fdfaf6; /* Light beige background */
}

.bg-primary {
    background-color: #6B0F1A; 
}

.text-primary-dark {
    color: #6B0F1A;
}

.text-accent {
    color: #d4af37;
}

.border-accent {
    border-color: #d4af37;
}

.bg-accent {
    background-color: #d4af37;
}

.hover-bg-accent-dark:hover {
    background-color: #c5a231;
}

.section-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: #1e293b; /* Slate 800 */
}

html {
    scroll-behavior: smooth;
}

.lang-option.active {
    background-color: #6B0F1A;
    color: white;
    font-weight: bold;
}

/* --- Swiper Styles --- */
.swiper-container {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px; /* Adjust card width */
  height: auto;
}

.swiper-slide .bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover .bg-white {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Navigation buttons color */
.swiper-button-next,
.swiper-button-prev {
  color: #6B0F1A !important; /* Use theme color */
  top: 50%;
  transform: translateY(-50%);
}

/* Pagination bullets color */
.swiper-pagination-bullet-active {
    background: #d4af37 !important; /* Use theme accent color */
}
/* Read More Button Style */
.read-more-btn {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background-color: #6B0F1A;
    color: white;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.read-more-btn:hover {
    background-color: #5a0d16;
    transform: translateY(-2px);
}