@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;600&family=Cinzel:wght@500;600&display=swap');
/* Hero Section */
.hero-section { position: relative; width: 100%; height: 421px; overflow: hidden; }
.hero-section img.hero_image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-section::after { content: ""; position: absolute; top:0; left:0; width:100%; height:100%; background-color: rgba(0,0,0,0.6); z-index:2; }
.hero-text { position: absolute; top:50%; left:50%; transform: translate(-50%, -50%); color:#fff; font-size:32px; font-weight:bold; text-align:center; z-index:3; }

.EXPERIENCES_BX_line {
  display: -webkit-box;
  -webkit-line-clamp: 6;  /* จำนวนบรรทัดสูงสุด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6em;
  font-weight: 100 !important;
  cursor: pointer;
  white-space: normal;
}

.EXPERIENCES_BX .title {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.EXPERIENCES_BX span{
  height: 150px;
}

.fade-in { opacity:0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
.fade-in.show { opacity:1; transform: translateY(0); }

/* Fullscreen Popup แบบ 2 คอลัมน์ */
.popup-overlay {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  display:none; justify-content:center; align-items:center; z-index:99999999999999999999;
}

.popup-content {
  position: relative;
  width: 90%;
  /* max-width: 1200px; */
  height: 80%;
  display: flex;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.popup-content img {
  width: 50%;
  height: 100%;
  /* object-fit: contain; */
  background-color: #fff;
  transition: all 0.3s ease;
}

.popup-text {
  width: 50%;
  padding: 30px 82px 30px 30px;
  overflow-y: auto;
  color: #000;
  font-size: 18px;
  line-height: 1.6em;
  white-space: normal; /* แสดงข้อความเต็ม */
}

/* Close Button */
.popup-close {
  position: absolute; top:20px; right:30px;
  font-size:40px; cursor:pointer; color:#000; font-weight:bold; z-index:20;
}

.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;     
  color: #000;         
  cursor: pointer;
  user-select: none;
  padding: 5px;         
  z-index: 20;
  background-color: transparent;  
  border-radius: 0;              
}
.popup-arrow.left { left: 10px; }
.popup-arrow.right { right: 10px; }

@media screen and (max-width: 1300px) {
  .EXPERIENCES_BX span{
    opacity: 1;
  }
  .EXPERIENCES{
    padding: 0 10px;
  }
  .EXPERIENCES_BX.small{
    flex: 0 0 calc(33.333% - 4px);
  }
  .vala-content1{
    padding: 0px 35px !important;
}
}
@media screen and (max-width: 1100px) {
    
    .woods-section{
        padding: 50px 15px;
    }
    .woods-section{
        padding: 50px 15px;
    }
  .EXPERIENCES_BX span{
    opacity: 1;
  }
  .EXPERIENCES{
    padding: 0 10px;
  }
  .EXPERIENCES_BX.small{
    flex: 0 0 calc(33.333% - 4px);
  }

  .popup-content {
    flex-direction: column;
    height: calc(100vh - 155px); /* สูงเต็มหน้าจอ เว้นขอบบนล่าง 20px */
    max-width: 95%;
    margin: 20px auto;
    border-radius: 10px;
  }
  .popup-content img {
    width: 100%;
    height: 100%; /* ครึ่งบนของ popup */
    /* object-fit: cover; */
  }
  .popup-text {
    width: 100%;
    padding: 20px;
    overflow-y: auto;
    font-size: 16px;
    line-height: 1.5em;
    height: 88%;
  }
  .popup-arrow {
    display: none; /* ซ่อนลูกศร */
  }
  .popup-close {
    top: 10px;
    right: 10px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .EXPERIENCES_BX.small {
        flex: 0 0 calc(101.333% - 4px);
        height: 278px;
    }
}















/* ---------------------------------------------------- */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #c19a6b;
    --light-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Thai', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: #fff;
}

/* Hero Section */
.hero-section { 
    position: relative; 
    width: 100%; 
    height: 421px; 
    overflow: hidden; 
}

.hero-section img.hero_image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.hero-section::after { 
    content: ""; 
    position: absolute; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color: rgba(0,0,0,0.6); 
    z-index:2; 
}

.hero-text { 
    position: absolute; 
    top:50%; 
    left:50%; 
    transform: translate(-50%, -50%); 
    color:#fff; 
    font-size:32px; 
    font-weight:bold; 
    text-align:center; 
    z-index:3; 
    font-family: 'Cinzel', serif;
    width: 90%;
}

/* VALA Dining Experience Section */
.vala-dining-section {
    padding: 80px 100px;
    margin: 0 auto;
}

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

.section-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: "Kanit", Sans-serif;
  font-weight: 300;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    font-family: "Kanit", Sans-serif;
}

.vala-content {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 50px;
    position: relative;
    margin-bottom: 40px;
}

.vala-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
}

.vala-read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.vala-read-more-content.expanded {
    max-height: 1000px;
}

.dining-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.dining-option {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
}

.dining-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dining-option h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.dining-option h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.dining-option p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-family: 'Noto Sans Thai', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.read-more-btn:hover {
    color: white;
}

.read-more-btn:hover::before {
    width: 100%;
}

.vala-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.vala-footer p {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.viile_h1{
    color: #be8036;
    font-size: 2.5rem;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .vala-dining-section {
        padding: 50px 15px 10px;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .vala-content {
        padding: 30px 20px;
    }
    
    .dining-options {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .vala-intro {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 20px;
    }
}
/* ---------------------------------- */

 /* สไตล์ส่วนหัว */
 .section-header {
    text-align: center;
    margin: 40px 0;
}

.section-header h3 {
    font-size: 2rem;
    color: #be8036;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* สไตล์สไลด์ */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    overflow: hidden;
    height: 500px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.8);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ลูกศรนำทาง */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

/* จุดนำทาง */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.vala-content1{
    text-align: center;
    padding: 0px 182px;
}
#VIEW2,#VIEW4{
    background: #4a4a4a08;
}