/* Landing Page Styles - The House of Legends */

/* ============================================
   Decophile Font Face
   ============================================ */
@font-face {
  font-family: "Decophile";
  src: url("../fonts/FREE - Decophile.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Decophile Font Class */
.font-decophile {
  font-family: "Decophile", "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Mulish", sans-serif;
  background-color: #1a1a1a !important;
  color: #e6e6e6;
  overflow-x: hidden !important;
  animation: none !important;
  /* Optimize scrolling performance */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  max-width: 100vw;
  position: relative;
}

/* Navigation */
.top-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(10px);
  padding: 16px 120px;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.nav-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #c5a059;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #4d4d4d;
  padding: 2px;
  border-radius: 800px;
}

.lang-item {
  padding: 2px;
  border-radius: 800px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.lang-item.active {
  background: #e6e6e6;
  opacity: 1;
}

.flag-icon {
  width: 30px;
  height: 20px;
  display: block;
}

/* ============================================
   Mobile Hamburger Menu
   ============================================ */
/* Hamburger Button - Hidden on desktop, visible on mobile */
.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #e6e6e6;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Content - Compact Modal */
.mobile-menu-content {
  background-color: #2e2e2e;
  border-radius: 12px;
  padding: 20px;
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
  position: relative;
  transform: translateX(20px) translateY(-10px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #e6e6e6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
  z-index: 1;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  background-color: rgba(230, 230, 230, 0.1);
  color: #c5a059;
}

.mobile-menu-link {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: color 0.2s ease;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(230, 230, 230, 0.1);
}

.mobile-menu-link:last-of-type {
  border-bottom: none;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  color: #c5a059;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  /* Fix navigation padding for mobile */
  .top-navigation {
    padding: 16px 20px;
  }

  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
  }

  /* Hide desktop navigation menu on mobile */
  .nav-menu {
    display: none;
  }

  /* Adjust nav container for mobile */
  .nav-container {
    justify-content: space-between;
    gap: 16px;
  }

  /* Keep language toggle visible on mobile */
  .language-toggle {
    display: flex;
  }
}

/* Desktop - Hide hamburger menu */
@media screen and (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 212px;
  margin-top: 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  height: calc(100% + 64px);
  min-height: 100%;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-bg-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Hero YouTube iframe background (thay video nặng, cover giống object-fit: cover) */
.hero-youtube-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-youtube-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.1);
  border: none;
  pointer-events: none;
}

.hero-youtube-iframe iframe {
  pointer-events: none; /* Ensure the embedded player never blocks clicks */
}

.hero-youtube-iframe-desktop {
  display: block;
}

.hero-youtube-iframe-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .hero-youtube-iframe-desktop {
    display: none;
  }

  .hero-youtube-iframe-mobile {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  top: -64px;
  left: 0;
  width: 100%;
  height: calc(100% + 64px);
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
}

/* Overlay đèn pin: chỉ phủ hero (video); hero-content luôn trên overlay để tránh re-render khi tắt */
.hero-section .flashlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-section .hero-content {
  z-index: 9001;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  padding: 300px 20px 0;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  animation: heroFadeIn 1s ease-out 0.5s forwards;
  will-change: opacity, transform;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-logo {
  width: 220px;
  height: 220px;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.hero-title {
  font-family: "Decophile", "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  color: #c5a059;
  font-weight: 400;
  /* Cố định chiều cao để tránh CLS khi web font Decophile được load */
  min-height: 72px;
}

.hero-subtitle {
  font-family: "Philosopher", serif;
  font-size: 32px;
  line-height: 38px;
  color: #e6e6e6;
  font-weight: 400;
}

/* Buttons */
.cta-button {
  background-color: #c5a059;
  color: #1a1a1a;
  border: none;
  padding: 8px 24px;
  border-radius: 800px;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #b8944f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  text-decoration: none;
}

/* Section Container */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
}

.section-title {
  font-family: "Decophile", "Playfair Display", serif;
  font-size: 64px;
  line-height: 72px;
  color: #c5a059;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Upcoming Shows Section */
.upcoming-shows-section {
  background-color: #1a1a1a;
}

.upcoming-shows-section .section-container {
  padding-top: 64px;
  padding-bottom: 40px;
}

.upcoming-shows-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.upcoming-shows-header .section-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 48px;
  line-height: 56px;
}

.upcoming-calendar-button {
  white-space: nowrap;
}

.upcoming-shows-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.upcoming-show-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.upcoming-show-image {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.upcoming-show-image picture,
.upcoming-show-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.upcoming-show-card:hover .upcoming-show-image img {
  transform: scale(0.97);
}

.upcoming-show-overlay {
  display: none;
}

.upcoming-show-meta {
  position: relative;
  z-index: 1;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #1a1a1a;
}

.upcoming-show-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f5e1ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upcoming-show-title {
  font-family: "Decophile", "Playfair Display", serif;
  font-size: 50px;
  line-height: 38px;
  color: #ffffff;
  margin: 0;
}

.upcoming-show-subtitle {
  font-family: "Philosopher", serif;
  font-size: 16px;
  line-height: 22px;
  color: #f3d4ff;
}

.upcoming-show-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.upcoming-show-frequency {
  display: none;
}

.upcoming-show-seats {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #c5ffb3;
  text-align: left;
}

.upcoming-show-card.sold-out .upcoming-show-seats {
  color: #ffb3b3;
}

.upcoming-show-actions {
  display: none;
}

.upcoming-show-actions .cta-button {
  padding-inline: 28px;
}

@media screen and (max-width: 1024px) {
  .upcoming-shows-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .upcoming-shows-header .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .upcoming-shows-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .upcoming-shows-section .section-container {
    padding: 40px 20px;
  }

  .upcoming-show-meta {
    padding: 20px 18px;
  }

  .upcoming-show-title {
    font-size: 26px;
    line-height: 32px;
  }

  .upcoming-show-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Calendar Section */
.calendar-section {
  background-color: #1a1a1a;
}

.calendar-section .section-container {
  padding-bottom: 40px; /* Giảm từ 80px xuống 40px */
}

.program-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

/* Hide New Year Program section (no content yet) */
#newyear-program {
  display: none !important;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.line-divider {
  flex: 1 1 0;
  height: 0px;
  outline: 1px #4d4d4d solid;
  outline-offset: -0.5px;
}

.date-text {
  font-size: 16px;
  line-height: 24px;
  color: #a6a6a6;
  white-space: nowrap;
}

.program-title {
  font-family: "Philosopher", serif;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
}

/* Desktop styles for Weekly Events */
/* ============================================
   Small Laptop / Medium Desktop (1025px - 1239px)
   Horizontal scroll for calendar cards
   ============================================ */
@media screen and (min-width: 1025px) and (max-width: 1239px) {
  /* Container - reduce padding */
  .section-container {
    padding: 80px 80px;
  }

  .top-navigation {
    padding: 16px 80px;
  }

  /* Calendar Section - horizontal scroll */
  .calendar-section .date-text {
    font-size: 18px;
    line-height: 28px;
  }

  .calendar-section .program-title {
    font-size: 32px;
    line-height: 38px;
  }

  .calendar-section .program-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .calendar-section .program-cards::-webkit-scrollbar {
    display: none;
  }

  .calendar-section .program-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    gap: 20px;
    scroll-snap-align: start;
  }

  .calendar-section .card-content {
    gap: 12px;
  }

  .calendar-section .card-title {
    font-size: 22px;
    line-height: 32px;
  }

  .calendar-section .card-description {
    font-size: 15px;
    line-height: 22px;
    height: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .calendar-section .card-description-tall {
    min-height: 88px;
  }

  .calendar-section .program-card-sunday .card-description {
    min-height: 66px;
  }

  .calendar-section .card-image {
    height: 450px;
    overflow: hidden;
  }

  .calendar-section .card-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .calendar-section .card-date-time {
    gap: 12px;
    flex-direction: column;
  }

  .calendar-section .card-date-time-row {
    gap: 12px;
  }

  .calendar-section .card-date-time .date,
  .calendar-section .card-date-time .time {
    font-size: 13px;
    line-height: 20px;
  }

  .calendar-section .card-date-time .dot {
    width: 8px;
    height: 8px;
  }

  .calendar-section .view-details-button,
  .calendar-section .reserve-button {
    font-size: 17px;
    line-height: 26px;
    padding: 8px 20px;
  }

  /* Show pagination for scroll indicator */
  .calendar-section .calendar-pagination {
    display: flex;
  }

  /* Practical Information - prevent image overflow */
  .practical-info-content {
    padding: 80px 60px 80px 80px;
    max-width: calc(100% - 420px);
  }

  .practical-info-image {
    width: 380px;
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 1;
  }
}

/* ============================================
   Full Desktop (1240px+)
   3-column wrap layout for calendar
   ============================================ */
@media screen and (min-width: 1240px) {
  .calendar-section .date-text {
    font-size: 18px;
    line-height: 28px;
  }

  .calendar-section .program-title {
    font-size: 32px;
    line-height: 38px;
  }

  .calendar-section .program-cards {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: flex-start;
    gap: 24px;
  }

  .calendar-section .program-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 320px;
    max-width: calc(33.333% - 16px);
    gap: 24px;
  }

  /* Item thứ 4 xuống hàng mới */
  .calendar-section .program-card:nth-child(4) {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .calendar-section .card-content {
    gap: 12px;
  }

  .calendar-section .card-title {
    font-size: 24px;
    line-height: 36px;
  }

  .calendar-section .card-description {
    font-size: 16px;
    line-height: 24px;
    height: auto;
    min-height: 96px;
    -webkit-line-clamp: unset;
    display: block;
  }

  .calendar-section .card-description-tall {
    min-height: 96px;
  }

  .calendar-section .program-card-sunday .card-description {
    min-height: 72px;
  }

  .calendar-section .card-image {
    height: 512px;
    overflow: hidden;
  }

  .calendar-section .card-image img {
    width: 100%;
    height: 512px;
    object-fit: cover;
  }

  .calendar-section .card-date-time {
    gap: 12px;
    flex-direction: column;
  }

  .calendar-section .card-date-time-row {
    gap: 12px;
  }

  .calendar-section .card-date-time .date,
  .calendar-section .card-date-time .time {
    font-size: 16px;
    line-height: 24px;
  }

  .calendar-section .card-date-time .dot {
    width: 8px;
    height: 8px;
  }

  .calendar-section .view-details-button,
  .calendar-section .reserve-button {
    font-size: 18px;
    line-height: 28px;
    padding: 8px 24px;
  }

  /* Hide pagination dots on full desktop */
  .calendar-section .calendar-pagination {
    display: none;
  }
}

/* ============================================
   iPad / Tablet Styles (769px - 1024px)
   ============================================ */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Ensure no horizontal scroll */
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  /* All sections should not overflow */
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Navigation */
  .top-navigation {
    padding: 16px 40px;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .nav-container {
    gap: 30px;
    max-width: 100%;
  }

  .nav-logo {
    width: 80px;
    height: 80px;
  }

  .nav-link {
    font-size: 16px;
  }

  /* Hero Section */
  .hero-section {
    padding: 64px 0 180px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-background {
    width: 100%;
    max-width: 100vw;
  }

  .hero-bg-image {
    width: 100%;
    max-width: 100vw;
    object-fit: cover;
  }

  .hero-content {
    padding: 220px 40px 0;
    max-width: 100%;
  }

  .hero-logo {
    width: 180px;
    height: 180px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 60px;
  }

  .hero-subtitle {
    font-size: 28px;
    line-height: 34px;
  }

  /* Section Container */
  .section-container {
    padding: 60px 40px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: 52px;
    line-height: 60px;
  }

  /* Calendar Section - Max 3 cards visible, scrollable */
  .calendar-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .calendar-section .section-container {
    padding: 60px 40px;
  }

  .calendar-section .program-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .calendar-section .program-cards::-webkit-scrollbar {
    display: none;
  }

  .calendar-section .program-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    gap: 20px;
    scroll-snap-align: start;
  }

  .calendar-section .card-content {
    gap: 10px;
  }

  .calendar-section .card-title {
    font-size: 20px;
    line-height: 30px;
  }

  .calendar-section .card-description {
    font-size: 15px;
    line-height: 22px;
    height: auto;
    min-height: 88px;
  }

  .calendar-section .card-image {
    height: 400px;
  }

  .calendar-section .card-image img {
    height: 400px;
    object-fit: cover;
  }

  .calendar-section .card-date-time .date,
  .calendar-section .card-date-time .time {
    font-size: 15px;
    line-height: 22px;
  }

  .calendar-section .view-details-button,
  .calendar-section .reserve-button {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 20px;
  }

  /* Show pagination on tablet for scroll indicator */
  .calendar-section .calendar-pagination {
    display: flex;
    margin-top: 24px;
  }

  /* Artists Section */
  .artists-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .artists-section .section-container {
    padding: 60px 40px;
  }

  .artists-header .section-title {
    font-size: 48px;
    line-height: 56px;
  }

  .artists-subtitle {
    font-size: 17px;
    line-height: 26px;
  }

  .carousel-item {
    height: 360px;
  }

  .carousel-item.portrait {
    width: 270px;
  }

  .carousel-item.landscape {
    width: 480px;
  }

  .artists-bg-decoration {
    right: 40px;
    width: 350px;
    height: 252px;
  }

  /* Practical Information - Vertical layout like mobile */
  .practical-info-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .practical-info-container {
    flex-direction: column !important;
    align-items: center !important;
    padding: 60px 40px;
    gap: 32px;
    max-width: 100%;
    overflow: hidden;
    display: flex;
  }

  .practical-info-content {
    padding: 60px 40px;
    gap: 36px;
    align-items: center;
    display: flex;
    flex-direction: column;
    order: 0 !important; /* Content on top */
  }

  .practical-info-content .section-title {
    font-size: 56px;
    line-height: 64px;
    text-align: center;
    margin-bottom: 40px;
  }

  .info-list {
    max-width: 600px;
    width: 100%;
    gap: 16px;
    margin: 0 auto;
    align-items: center;
    align-self: center;
    display: flex;
    flex-direction: column;
  }

  .info-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }

  .info-label {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .info-value {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }

  .fanpage-link {
    font-size: 26px;
    line-height: 36px;
  }

  .practical-cta {
    font-size: 18px;
    line-height: 28px;
    padding: 12px 28px;
    min-width: 220px;
  }

  .practical-info-image {
    width: 100%;
    max-width: 650px;
    min-width: auto;
    flex-shrink: 1;
    margin: 0 auto;
    display: block !important;
    order: 1 !important; /* Image below content */
  }

  .practical-info-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Info Items - Match mobile structure */
  .info-item {
    padding: 0;
    text-align: center;
    align-items: center !important;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Dividers - Match mobile */
  .info-divider {
    margin: 0;
    height: 0px;
    width: 100%;
    align-self: stretch;
    outline: 1px #2e2e2e solid;
    outline-offset: -0.5px;
    background: none;
  }

  /* Desktop-specific rows with multiple items */
  .info-row-desktop {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .info-row-desktop .info-item {
    width: 100%;
  }

  .info-row-desktop .info-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    outline: 1px #2e2e2e solid;
    outline-offset: -0.5px;
    background: none;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  /* Reservations Section - Improved layout */
  .reservations-section {
    min-height: 500px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .reservations-container {
    padding: 60px 40px;
    gap: 32px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background: linear-gradient(180deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 50%);
    max-width: 100%;
    box-sizing: border-box;
  }

  .reservations-title-wrapper {
    padding-top: 20px;
    width: auto;
    flex: 0 0 auto;
    text-align: left;
  }

  .reservations-title {
    font-size: 48px;
    line-height: 56px;
    text-align: left;
    writing-mode: horizontal-tb;
  }

  .reservations-form-container {
    width: auto;
    max-width: 550px;
    flex: 1;
    padding: 24px;
  }

  /* Form fields - single column on tablet */
  .form-fields-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field {
    padding: 12px;
  }

  .form-label {
    font-size: 14px;
    line-height: 20px;
  }

  .form-input,
  .form-select {
    font-size: 15px;
    line-height: 22px;
  }

  .form-submit {
    font-size: 16px;
    line-height: 26px;
    padding: 8px 20px;
  }

  /* Modal */
  .modal-content {
    max-width: 85%;
    padding: 28px;
  }

  .modal-title {
    font-size: 48px;
    line-height: 56px;
  }

  .modal-description {
    font-size: 15px;
    line-height: 22px;
  }

  .modal-info-text {
    font-size: 15px;
    line-height: 22px;
  }

  /* Calendar in Reservations */
  .dayContainer {
    grid-template-columns: repeat(7, 50px) !important;
    gap: 8px 14px !important;
  }

  .flatpickr-day {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    height: 30px !important;
    font-size: 15px !important;
  }

  .flatpickr-weekday {
    width: 50px !important;
    font-size: 15px !important;
  }

  .flatpickr-weekdays {
    gap: 14px !important;
  }

  .show-poster {
    width: 180px;
    height: 240px;
  }

  /* Calendar Wrapper - Center all calendar elements */
  .calendar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  /* Calendar and Poster - Column reverse for better layout */
  .calendar-and-poster {
    flex-direction: column-reverse !important;
    gap: 24px !important;
    align-items: center !important;
  }

  /* Flatpickr calendar centering */
  .flatpickr-calendar {
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
  }

  .flatpickr-innerContainer {
    display: flex;
    justify-content: center;
  }

  .dayContainer {
    justify-content: center !important;
    margin: 0 auto;
  }

  .flatpickr-months,
  .flatpickr-weekdays {
    justify-content: center;
  }

  /* Footer (if exists) */
  .footer-section {
    padding: 60px;
  }

  .footer-title {
    font-size: 80px;
    line-height: 88px;
  }
}

.program-coming-soon {
  text-align: center;
  color: #a6a6a6;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}

.program-cards {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.program-cards::-webkit-scrollbar {
  display: none;
}

.program-card {
  flex: 0 0 288px;
  min-width: 288px;
  max-width: 288px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  width: 100%;
  justify-content: flex-start;
}

.card-title {
  font-family: "Philosopher", serif;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
  width: 100%;
}

.card-description {
  font-size: 14px;
  line-height: 20px;
  color: #a6a6a6;
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  width: 100%;
}

.card-description-tall {
  height: 80px;
  -webkit-line-clamp: 4;
}

.card-date-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.card-date-time-row {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.card-date-time-row-show {
  width: 100%;
  justify-content: center;
}

.card-date-time .date,
.card-date-time .time {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #c5a059;
}

.card-date-time .dot {
  width: 4px;
  height: 4px;
  background: #624c22;
  border-radius: 50%;
}

.card-image {
  width: 100%;
  overflow: visible;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.view-details-button {
  background-color: #1a1a1a;
  color: #dec89e;
  border: none;
  outline: 2px #dec89e solid;
  outline-offset: -2px;
  padding: 8px 16px;
  border-radius: 800px;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-details-button:hover {
  background-color: rgba(222, 200, 158, 0.1);
  outline-color: #c5a059;
  color: #c5a059;
  text-decoration: none;
}

.reserve-button {
  background-color: #c5a059;
  color: #1a1a1a;
  border: none;
  padding: 8px 16px;
  border-radius: 800px;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.reserve-button:hover {
  background-color: #b8944f;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Calendar pagination dots - scrollbar màu vàng ở giữa */
.calendar-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  width: 100%;
}

.pagination-dot {
  width: 4px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  width: 32px;
  height: 4px;
  background: #c5a059;
  border-radius: 800px;
}

/* View Details Modal */
.view-details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.view-details-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

/* Coming Soon Modal - Smaller size, image aligned to right */
.view-details-modal.modal-coming-soon .modal-content {
  max-width: 750px;
  padding: 32px;
}

.view-details-modal.modal-coming-soon .modal-main-content {
  gap: 24px;
}

.view-details-modal.modal-coming-soon .modal-content-left {
  flex: 0 1 auto;
  max-width: 450px;
}

.view-details-modal.modal-coming-soon .modal-content-right {
  width: 270px;
  flex-shrink: 0;
}

.view-details-modal.modal-coming-soon .modal-content-right img {
  width: 270px;
  height: 360px;
  object-fit: cover;
  object-position: right center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 10001;
  background-color: #2e2e2e;
  border-radius: 4px;
  max-width: 1000px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  animation: modalFadeIn 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(46, 46, 46, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e6e6e6;
  font-size: 28px;
  transition: all 0.3s ease;
  z-index: 10002;
}

.modal-close:hover {
  background: rgba(197, 160, 89, 0.9);
  color: #1a1a1a;
  transform: rotate(90deg);
}

.modal-main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  flex-shrink: 0;
}

.modal-content-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-content-right {
  display: none;
}

.modal-content-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #1a1a1a;
}

.modal-poster-mobile {
  display: none;
}

.modal-title {
  font-family: "Decophile", "Playfair Display", serif;
  font-size: 36px;
  line-height: 44px;
  color: #c5a059;
  font-weight: 400;
  margin: 0;
  text-align: left;
  width: 100%;
  word-wrap: break-word;
}

.modal-description {
  font-size: 14px;
  line-height: 20px;
  color: #e6e6e6;
  margin: 0;
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  font-family: "Mulish", sans-serif;
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.modal-info-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.modal-info-row:first-child {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.modal-info-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  width: auto;
}

.modal-info-row:last-child .modal-info-item {
  justify-content: flex-start;
  width: 100%;
}

.modal-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-info-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.modal-info-text {
  color: #ffffff;
  font-size: 14px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  line-height: 20px;
  word-wrap: break-word;
}

.modal-gallery {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.modal-gallery-scroll {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.modal-gallery-track {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  will-change: transform;
}

.modal-gallery-scroll.animate .modal-gallery-track {
  animation: modalGalleryScroll 45s linear infinite;
}

.modal-gallery-scroll:hover .modal-gallery-track {
  animation-play-state: paused;
}

.modal-gallery-item {
  flex-shrink: 0;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modal-gallery-item:hover {
  transform: scale(1.05);
}

.modal-gallery-item img {
  height: 180px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
}

@keyframes modalGalleryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.modal-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-shrink: 0;
}

.modal-close-button {
  background-color: #1a1a1a;
  color: #dec89e;
  border: none;
  outline: 2px #dec89e solid;
  outline-offset: -2px;
  padding: 8px 24px;
  border-radius: 800px;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.modal-close-button:hover {
  background-color: rgba(222, 200, 158, 0.1);
  outline-color: #c5a059;
  color: #c5a059;
  text-decoration: none;
}

.modal-reserve-button {
  background-color: #c5a059;
  color: #1a1a1a;
  border: none;
  padding: 8px 24px;
  border-radius: 800px;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.modal-reserve-button:hover {
  background-color: #b8944f;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Gallery Lightbox - Fullscreen Image View */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10003;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-header {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10004;
}

.lightbox-title {
  font-family: "Philosopher", serif;
  font-size: 20px;
  line-height: 28px;
  color: #a6a6a6;
  font-weight: 400;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 26, 26, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #e6e6e6;
  font-size: 28px;
  cursor: pointer;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(197, 160, 89, 0.9);
  color: #1a1a1a;
  transform: rotate(90deg);
}

.lightbox-image-container {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #a6a6a6;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  font-family: "Mulish", sans-serif;
}

/* ============================================
   View Details Modal - Desktop Layout
   Mobile: dùng style mặc định ở trên
   Desktop: override theo design (Night of legends)
   ============================================ */
@media (min-width: 1024px) {
  .modal-content {
    padding: 32px;
    gap: 24px;
    max-width: 1000px;
  }

  .modal-main-content {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }

  .modal-content-left {
    flex: 0 1 auto;
    max-width: 630px;
  }

  .modal-content-right {
    display: block;
    flex-shrink: 0;
    width: 270px;
  }

  .modal-content-right img {
    width: 270px;
    height: 360px;
    object-fit: cover;
  }

  .modal-title {
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
  }

  .modal-description {
    font-size: 16px;
    line-height: 24px;
    color: #e6e6e6;
  }

  .modal-info-row:first-child {
    justify-content: flex-start;
    gap: 32px;
  }

  .modal-info-text {
    font-size: 16px;
    line-height: 24px;
  }

  .modal-buttons {
    justify-content: center;
  }

  /* Coming Soon Modal - Smaller size, image aligned to right */
  .view-details-modal.modal-coming-soon .modal-content {
    max-width: 750px;
    padding: 32px;
  }

  .view-details-modal.modal-coming-soon .modal-main-content {
    gap: 24px;
  }

  .view-details-modal.modal-coming-soon .modal-content-left {
    flex: 0 1 auto;
    max-width: 450px;
  }

  .view-details-modal.modal-coming-soon .modal-content-right {
    width: 270px;
    flex-shrink: 0;
  }

  .view-details-modal.modal-coming-soon .modal-content-right img {
    width: 270px;
    height: 360px;
    object-fit: cover;
    object-position: right center;
  }
}

/* Artists Section */
.artists-section {
  background-color: #2e2e2e;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.artists-section .section-container {
  padding-top: 80px;
  padding-bottom: 0px;
}

.artists-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 721px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 3;
}

.artists-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #a6a6a6;
}

.artists-carousel-wrapper {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 0 80px 0;
}

.artists-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.artists-carousel-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  align-items: center;
}

.artists-carousel.animate .artists-carousel-track {
  animation: modalGalleryScroll 60s linear infinite;
}

.artists-carousel:hover .artists-carousel-track {
  animation-play-state: paused;
}

.carousel-item {
  flex-shrink: 0;
  height: 400px;
  overflow: hidden;
}

.carousel-item.portrait {
  width: 300px;
}

.carousel-item.landscape {
  width: 534px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-item img:hover {
  opacity: 0.9;
}

.artists-bg-decoration {
  position: absolute;
  top: 77.14px;
  right: 120px;
  width: 423.24px;
  height: 304.88px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-11deg);
  transform-origin: top left;
  overflow: hidden;
  opacity: 0.1;
  filter: blur(1px);
}

@media screen and (max-width: 1440px) {
  .artists-bg-decoration {
    right: 50px;
  }
}

.bg-decoration-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Practical Information Section */
.practical-info-section {
  background-color: #1a1a1a;
  padding: 0;
  position: relative;
  isolation: isolate;
  max-width: 100vw;
  overflow-x: hidden;
}

.practical-info-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.practical-info-content {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 120px;
  min-width: 0;
}

.practical-cta {
  width: auto;
  max-width: fit-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  text-align: center;
  white-space: nowrap;
}

.practical-info-content .section-title {
  text-align: left;
  margin-bottom: 0;
  color: #c5a059;
  font-size: 64px;
  line-height: 72px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.info-row {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  gap: 0;
}

.info-row:last-of-type {
  justify-content: space-between;
}

.info-row .info-item {
  flex: 1 1 0;
}

.info-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #a6a6a6;
  font-family: "Mulish", sans-serif;
  margin-bottom: 0;
}

.info-value {
  font-family: "Philosopher", serif;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0;
}

.info-value-link {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.fanpage-link {
  font-family: "Philosopher", serif;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fanpage-link:hover {
  color: #c5a059;
  text-decoration: none;
}

.arrow-icon-wrapper {
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.arrow-icon {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 7px;
  position: absolute;
  outline: 2px #808080 solid;
  outline-offset: -1px;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

/* Keep old arrow-up-right for backward compatibility */
.arrow-up-right {
  width: 24px;
  height: 24px;
  color: #808080;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.info-value-link:hover .arrow-up-right {
  color: #c5a059;
}

.info-divider {
  height: 0px;
  width: 100%;
  align-self: stretch;
  outline: 1px #2e2e2e solid;
  outline-offset: -0.5px;
  background: none;
}

.practical-info-image {
  width: 619px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.practical-info-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.practical-info-bg-decoration {
  position: absolute;
  bottom: 0;
  left: 400px;
  width: 360.335px;
  height: 317.128px;
  transform: rotate(336.423deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  filter: blur(1px);
}

/* Reservations Section */
.reservations-section {
  background-color: #1a1a1a;
  position: relative;
}

.reservations-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px 80px 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  min-height: 532px;
  background: linear-gradient(180deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 60%);
  overflow: hidden;
}

.reservations-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.reservations-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Title Wrapper (Left Side) */
.reservations-title-wrapper {
  align-self: stretch;
  padding-top: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.reservations-title {
  text-align: left;
  margin-bottom: 0;
  color: #c5a059;
  font-size: 64px;
  line-height: 72px;
  font-weight: 400;
}

.reservations-form-container {
  background-color: #1a1a1a;
  padding: 24px;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  width: 792px;
  align-self: flex-start;
}

.reservations-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* Form Fields Grid (2 columns) */
.form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field-wrapper.form-field-full {
  grid-column: 1 / -1;
}

/* Form Field (Label + Input in same box) */
.form-field {
  padding: 12px;
  background: #2e2e2e;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  position: relative;
}

.form-label {
  font-size: 14px;
  line-height: 20px;
  color: #e6e6e6;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  padding: 0;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: white;
  width: 100%;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #808080;
}

/* Ghi đè nền xanh khi browser autofill/suggest — giữ nền tối */
.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #2e2e2e inset !important;
  box-shadow: 0 0 0 30px #2e2e2e inset !important;
  -webkit-text-fill-color: #e6e6e6 !important;
  caret-color: #e6e6e6;
  transition: background-color 5000s ease-in-out 0s;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  padding: 12px 0;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px; /* Moved from .form-field-select to extend under chevron */
}

/* Dropdown option styling - giữ màu tối như cũ */
.form-select option {
  background-color: #2e2e2e !important;
  color: #e6e6e6 !important;
  padding: 12px;
}

/* Dropdown khi mở - override browser default để giữ màu tối */
.form-select:focus {
  outline: none;
}

/* Đảm bảo select dropdown menu có background tối */
select.form-select {
  background-color: #2e2e2e;
}

select.form-select:focus {
  background-color: #2e2e2e;
}

.form-field-select .chevron-down {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #e6e6e6;
  width: 24px;
  height: 24px;
}

/* Error state */
.form-field.error {
  border: 1px solid #c45652;
  background-color: #3a2a1a;
}

/* Terms & Conditions block — layout theo design: khối nền xám đậm, icon info, list, checkbox + link cam */
.terms-block {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #363636;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
  font-family: "Mulish", sans-serif;
}

/* Scroll box: nội dung điều khoản tóm tắt */
.terms-scroll-box {
  max-height: 140px;
  overflow-y: auto;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  margin-bottom: 14px;
}

.terms-scroll-box .terms-intro {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-intro-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1em;
}

.terms-intro-text {
  flex: 1;
}

.terms-scroll-box .terms-list {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: disc;
}

.terms-scroll-box .terms-list li {
  margin-bottom: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.terms-block .terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 0;
  color: #e6e6e6;
  font-size: 14px;
}

.terms-block .terms-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #f7b32b;
  cursor: pointer;
}

.terms-block .terms-checkbox-text {
  flex: 1;
  font-size: 14px;
}

.terms-checkbox-prefix {
  color: rgba(255, 255, 255, 0.9);
}

.terms-checkbox-link {
  color: #f7b32b;
  text-decoration: none;
  font-weight: 500;
}

.terms-checkbox-link:hover {
  color: #f5c04d;
  text-decoration: none;
}

/* Modal đầy đủ Terms & Conditions — tiêu đề gold, nội dung scroll, nút Close */
.terms-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.terms-modal.active {
  display: flex;
}

.terms-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.terms-modal-dialog {
  position: relative;
  background: #2a2a2a;
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: termsModalFadeIn 0.3s ease;
}

@keyframes termsModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.terms-modal-title {
  font-family: "Philosopher", "Decophile", serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  color: #c5a059;
  text-align: center;
  margin: 0;
  padding: 28px 24px 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.terms-modal-body {
  overflow-y: auto;
  padding: 0 24px 20px;
  flex: 1;
  min-height: 0;
}

.terms-modal-section {
  margin-bottom: 20px;
}

.terms-modal-section-title {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 8px 0;
}

.terms-modal-section-content {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.terms-modal-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 16px 0;
}

.terms-modal-close {
  margin: 0 24px 24px;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  background: #c5a059;
  color: #1a1a1a;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  flex-shrink: 0;
}

.terms-modal-close:hover {
  background: #d4b068;
}

.form-submit {
  padding: 8px 24px;
  border-radius: 800px;
  align-self: flex-start;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #666;
}

.show-slots-info {
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
}

.show-slots-info .slots-text {
  color: #e6e6e6;
}

.show-slots-info.sold-out {
  background-color: #7a2d2a;
  border: 1px solid #c45652;
}

.show-slots-info.sold-out .slots-text {
  color: #ffffff;
  font-weight: 600;
}

.show-slots-info.available {
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.show-slots-info.available .slots-text {
  color: #c5a059;
}

/* Zone-Bundle Row (after calendar) */
#zone-bundle-row {
  margin-top: 24px;
}

/* Payment Method and Customer Note Rows */
#payment-method-row,
#customer-note-row {
  margin-top: 16px;
}

/* Zone Availability Label (outside form-field) */
.zone-availability-label {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(197, 160, 89, 0.08);
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #c5a059;
  border-left: 3px solid #c5a059;
}

.zone-availability-label > div:first-child {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 6px;
}

.zone-availability-label #availability-text {
  font-weight: 600;
  font-style: italic;
  color: #e6e6e6;
}

.zone-availability-label.sold-out {
  background: rgba(255, 107, 107, 0.08);
  border-left-color: #ff6b6b;
}

.zone-availability-label.sold-out > div:first-child {
  color: #ff6b6b;
}

.zone-availability-label.sold-out #availability-text {
  color: #ff6b6b;
  font-weight: 700;
  margin-bottom: 0;
}

.zone-availability-label.available {
  background: rgba(197, 160, 89, 0.08);
  border-left-color: #c5a059;
}

.zone-availability-label.available > div:first-child {
  color: #c5a059;
}

/* Bundle Description (outside form-field) */
.bundle-description {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(197, 160, 89, 0.08);
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #c5a059;
  border-left: 3px solid #c5a059;
}

.bundle-description > div:first-child {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 6px;
}

.bundle-description #bundle-included-text {
  font-weight: 600;
  font-style: italic;
  color: #e6e6e6;
}

/* Footer */
.footer-section {
  background-color: #1a1a1a;
  padding: 40px 0 24px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-divider {
  width: 1200px;
  height: 1px;
  background: #1a1a1a;
  max-width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.footer-title {
  font-family: "Decophile", "Playfair Display", serif;
  font-size: 120px;
  line-height: 144px;
  color: #c5a059;
  font-weight: 400;
  margin-bottom: 0;
}

.footer-subtitle {
  font-family: "Philosopher", serif;
  font-size: 32px;
  line-height: 38px;
  color: #e6e6e6;
  font-weight: 400;
  margin-bottom: 0;
}

.footer-copyright {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #9aa0a5;
  margin-bottom: 0;
}

/* Error Toast */
.error-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.error-toast.show {
  opacity: 1;
  visibility: visible;
}

.toast-content {
  width: 100%;
  height: 100%;
  padding: 12px;
  background: #7a2d2a;
  border-radius: 8px;
  outline: 1px #c45652 solid;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 300px;
  max-width: 500px;
}

.toast-icon {
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.toast-icon-circle {
  width: 20px;
  height: 20px;
  left: 2px;
  top: 2px;
  position: absolute;
  outline: 2px #c45652 solid;
  outline-offset: -1px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon-circle::after {
  content: "!";
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}

.toast-message {
  color: white;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  flex: 1;
}

.form-input.error,
.form-select.error {
  border: 1px solid #c45652;
  background-color: #3a2a1a;
}

/* Confirmation Popup */
.confirmation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.confirmation-popup.active {
  display: flex;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.popup-content {
  position: relative;
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 40px;
  max-width: 591px;
  width: 90%;
  text-align: center;
  z-index: 10001;
  animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-icon {
  margin: 0 auto 16px;
  width: 80px;
  height: 80px;
}

.popup-title {
  font-family: "Philosopher", serif;
  font-size: 32px;
  line-height: 44px;
  color: #c5a059;
  font-weight: 400;
  margin-bottom: 24px;
}

.popup-message {
  margin-bottom: 32px;
}

.popup-message p {
  font-size: 16px;
  line-height: 24px;
  color: #e6e6e6;
  margin-bottom: 16px;
}

.popup-message p:last-child {
  margin-bottom: 0;
}

.popup-contact {
  font-size: 16px;
  line-height: 24px;
  color: #e6e6e6;
  font-family: Mulish, sans-serif;
  font-weight: 400;
}

.popup-close {
  width: 95px;
}

/* Image Lightbox Modal */
.image-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image-lightbox.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 26, 26, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #e6e6e6;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lightbox-close:hover {
  background: rgba(197, 160, 89, 0.9);
  color: #1a1a1a;
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Optimize scrolling performance */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scroll animations for sections */
.section-container {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.section-container.scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Optimize images for smooth scrolling */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
}

/* Parallax container */
.parallax-container {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ============================================
   Fade-in on Scroll Animation (Optimized)
   ============================================ */
.fade-in-element {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fade-in-element.fade-in-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Delay variations for staggered effect */
.fade-in-element.delay-1 {
  transition-delay: 0.1s;
}

.fade-in-element.delay-2 {
  transition-delay: 0.2s;
}

.fade-in-element.delay-3 {
  transition-delay: 0.3s;
}

/* Scale fade-in variant */
.fade-in-scale {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in-scale.fade-in-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* ============================================
   Curtain Effect (Page Load)
   ============================================ */
.curtain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: top;
}

.curtain-overlay.hidden {
  transform: translateY(-100%);
}

.curtain-overlay.removed {
  display: none;
}

.curtain-logo {
  width: 150px;
  height: 150px;
  opacity: 0;
  animation: curtainLogoFadeIn 0.8s ease-out 0.3s forwards;
}

@keyframes curtainLogoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.curtain-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Design */
/* Ensure horizontal scroll on desktop for calendar section */

@media screen and (max-width: 1440px) {
  .section-container,
  .nav-container,
  .reservations-container,
  .practical-info-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .reservations-title {
    left: 60px;
  }

  /* Only apply wrap to non-calendar program-cards */
  .program-cards:not(.calendar-section .program-cards) {
    flex-wrap: wrap;
  }

  .program-card:not(.calendar-section .program-card) {
    min-width: calc(33.333% - 16px);
  }

  .practical-info-content {
    padding: 80px 60px;
  }

  .practical-info-image {
    width: 604px;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Tablet and smaller desktop */
@media screen and (max-width: 1200px) and (min-width: 1025px) {
  .practical-info-content {
    padding: 60px 40px;
  }

  .practical-info-image {
    width: 604px;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Ensure horizontal scroll on tablets and mobile */
@media screen and (max-width: 1024px) {
  .program-cards {
    flex-wrap: nowrap !important;
  }
}

@media screen and (max-width: 1024px) {
  .nav-container {
    padding: 16px 40px;
    gap: 40px;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-link {
    font-size: 16px;
  }

  .section-container {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .section-title {
    font-size: 48px;
  }

  .program-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    padding: 0 16px;
    padding-bottom: 8px;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    margin-left: -16px;
    margin-right: -16px;
  }

  .program-cards::-webkit-scrollbar {
    display: none;
  }

  .program-card {
    min-width: 320px !important;
    max-width: 320px !important;
    width: 320px !important;
    flex: 0 0 320px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
  }

  .practical-info-container {
    flex-direction: column;
  }

  .practical-info-content {
    padding: 60px 40px;
  }

  .practical-info-image {
    width: 100%;
    height: auto;
    /*min-height: 400px;*/
    /*max-height: 600px;*/
    margin-left: 0;
    margin-right: 0;
  }

  .practical-info-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .reservations-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 60px 80px 60px;
  }

  .reservations-title-wrapper {
    padding-top: 40px;
    margin-bottom: 24px;
  }

  .reservations-title {
    font-size: 48px;
    line-height: 56px;
  }

  .reservations-form-container {
    width: 100%;
    max-width: 100%;
  }

  .reservations-form {
    width: 100%;
  }

  .form-fields-grid {
    grid-template-columns: 1fr;
  }

  .footer-title {
    font-size: 80px;
  }
}

@media screen and (max-width: 768px) {
  .nav-container {
    gap: 16px;
    padding: 0;
  }

  .nav-logo {
    width: 100px;
    height: 100px;
  }

  .language-toggle {
    flex-shrink: 0;
  }

  .hero-section {
    min-height: 416px;
    padding: 0;
    margin-top: 0;
    position: relative;
  }

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .hero-bg-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
  }

  .hero-youtube-iframe {
    min-height: 100%;
  }

  .hero-content {
    gap: 0;
    padding: 70px 0 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .hero-text {
    gap: 0;
    padding: 0 16px;
    max-width: 343px;
    margin: 0 auto;
    margin-top: 8px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 44px;
    font-family: "Decophile", "Playfair Display", serif;
    font-weight: 400;
    /* Mobile: dự trù tối đa 2 dòng để tránh nhảy layout khi font đổi */
    min-height: 88px;
    margin-bottom: 0;
    text-align: center;
    word-wrap: break-word;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-family: "Philosopher", serif;
    font-weight: 400;
    margin-top: 0;
    text-align: center;
    word-wrap: break-word;
  }

  .hero-cta {
    width: auto;
    min-width: 220px;
    max-width: 90%;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    padding: 8px 20px;
    margin: 16px auto 0;
    display: block;
    white-space: normal;
    word-wrap: break-word;
  }

  /* Section Container Mobile */
  .section-container {
    padding: 40px 16px 40px 16px;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 32px;
    text-align: center;
  }

  /* Calendar Section Mobile */

  .calendar-section .section-container {
    padding: 40px 16px 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .calendar-section .section-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .calendar-section .program-group {
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 0;
  }

  .calendar-section .program-group:last-child {
    margin-bottom: 0;
  }

  .calendar-section .program-group > .date-range {
    margin-bottom: 0;
  }

  .calendar-section .program-group > .program-title {
    margin-bottom: 0;
  }

  .calendar-section .program-group > .program-cards {
    margin-top: 0;
  }

  .calendar-section .date-range {
    gap: 8px;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .calendar-section .line-divider {
    flex: 1 1 0;
    height: 0px;
    outline: 1px #4d4d4d solid;
    outline-offset: -0.5px;
  }

  .calendar-section .date-text {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    padding: 0;
    color: #a6a6a6;
  }

  /* Special handling for longer date ranges */
  .calendar-section .program-group-long-date .date-range .line-divider {
    flex: 1 1 0;
  }

  .calendar-section .program-title {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .calendar-section .program-coming-soon {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .calendar-section .program-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    padding: 0 !important;
    padding-bottom: 0;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  .calendar-section .program-cards::-webkit-scrollbar {
    display: none;
  }

  .calendar-section .program-card {
    min-width: 288px !important;
    max-width: 288px !important;
    width: 288px !important;
    flex: 0 0 288px !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    gap: 16px;
    align-items: center;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
  }

  .calendar-section .card-content {
    gap: 8px;
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0;
    min-height: auto;
    height: auto;
    justify-content: flex-start;
  }

  .calendar-section .card-title {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    color: #ffffff;
  }

  .calendar-section .card-description {
    font-size: 14px;
    line-height: 20px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    -webkit-line-clamp: 4;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    color: #a6a6a6;
  }

  .calendar-section .card-description-tall {
    height: 80px;
  }

  .calendar-section .card-date-time {
    gap: 4px;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    flex-direction: column;
  }

  .calendar-section .card-date-time-row {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
  }

  .calendar-section .card-date-time-row-show {
    width: 100%;
    justify-content: center;
  }

  .calendar-section .card-date-time .date,
  .calendar-section .card-date-time .time {
    font-size: 14px;
    line-height: 20px;
    color: #c5a059;
  }

  .calendar-section .card-date-time .dot {
    background: #624c22;
  }

  .calendar-section .card-image {
    width: 100%;
    height: 384px;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }

  .calendar-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .calendar-section .card-buttons {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .calendar-section .view-details-button {
    display: inline-block;
    width: auto;
    min-width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    align-self: flex-start;
    margin-top: 0;
  }

  .calendar-section .reserve-button {
    width: auto;
    min-width: auto;
    height: auto;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    align-self: flex-start;
    margin-top: 0;
  }

  /* Sunday Salon buttons - về mobile size như các item khác */
  .calendar-section .program-card-sunday .view-details-button,
  .calendar-section .program-card-sunday .reserve-button {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
  }

  /* Artists Section Mobile */
  .artists-section {
    padding: 20px 0 40px 0;
    position: relative;
  }

  .artists-section .section-container {
    padding: 20px 16px 40px 16px;
  }

  .artists-header {
    padding: 0;
    margin-bottom: 40px;
    max-width: 343px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .artists-header .section-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .artists-subtitle {
    font-size: 16px;
    line-height: 20px;
    color: #a6a6a6;
  }

  .artists-carousel-wrapper {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .artists-carousel-track {
    gap: 16px;
  }

  .carousel-item {
    height: 300px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    cursor: default;
  }

  .artists-section {
    background-color: #2e2e2e;
  }

  .artists-bg-decoration {
    display: none; /* Hide decoration on mobile */
  }

  /* Practical Information Mobile */
  .practical-info-section {
    padding: 0;
  }

  .practical-info-container {
    flex-direction: column;
    padding: 0;
    max-width: 100%;
  }

  .practical-info-content {
    padding: 40px 16px 40px 16px;
    gap: 32px;
    align-items: center;
    width: 100%;
    order: -1; /* Show content first on mobile */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .practical-info-image {
    width: 100%;
    height: auto;
    order: 1; /* Show image after content on mobile */
    flex-shrink: 0;
  }

  .practical-info-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .practical-info-content .section-title {
    text-align: center;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 0;
    color: #c5a059;
  }

  .info-list {
    gap: 12px;
    padding: 0;
    max-width: 343px;
    margin: 0 auto;
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .info-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }

  .info-row-desktop {
    display: flex;
    flex-direction: column;
  }

  .info-row-desktop .info-item {
    width: 100%;
  }

  .info-row-desktop .info-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    outline: 1px #2e2e2e solid;
    outline-offset: -0.5px;
    background: none;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .info-item-order-1 {
    order: 1;
  }

  .info-item-order-2 {
    order: 2;
  }

  .info-item-order-3 {
    order: 3;
  }

  .info-item-order-4 {
    order: 4;
  }

  .info-item {
    padding: 0;
    text-align: center;
    align-items: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .info-label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 700;
    color: #a6a6a6;
    font-family: "Mulish", sans-serif;
  }

  .info-value {
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    margin-top: 0;
    font-family: "Philosopher", serif;
    font-weight: 400;
    text-align: center;
  }

  .info-value-link {
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    display: inline-flex;
  }

  .fanpage-link {
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Philosopher", serif;
    font-weight: 400;
  }

  .info-divider {
    margin: 0;
    height: 0px;
    width: 100%;
    align-self: stretch;
    outline: 1px #2e2e2e solid;
    outline-offset: -0.5px;
    background: none;
  }

  /* Arrow icon for mobile */
  .arrow-icon-wrapper {
    width: 24px;
    height: 24px;
  }

  .arrow-icon {
    width: 10px;
    height: 10px;
    left: 7px;
    top: 7px;
    outline: 2px #808080 solid;
    outline-offset: -1px;
  }

  /* Arrow icon color for mobile - backward compatibility */
  .info-value-link .arrow-up-right {
    color: #808080;
    width: 24px;
    height: 24px;
  }

  .practical-cta {
    width: auto;
    min-width: 191px;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    margin: 0 auto;
  }

  .practical-info-bg-decoration {
    display: none; /* Hide decoration on mobile */
  }

  /* Reservations Section Mobile */
  .reservations-section {
    padding: 0;
    position: relative;
    min-height: 632px;
  }

  .reservations-container {
    padding: 40px 16px 0px 16px;
    flex-direction: column;
    align-items: center;
    min-height: 632px;
    position: relative;
    justify-content: flex-start;
    max-width: 375px;
    margin: 0 auto;
    gap: 24px;
    display: flex;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 60%);
  }

  .reservations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 632px;
    z-index: 0;
    overflow: hidden;
  }

  .reservations-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom; /* Hiển thị phần dưới của background */
  }

  /* Gradient overlay cho mobile */
  .reservations-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 55%, #1a1a1a 100%);
    z-index: 1;
    pointer-events: none;
  }

  .reservations-title-wrapper {
    position: relative;
    padding-top: 0;
    z-index: 2;
    width: 100%;
  }

  .reservations-title {
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 36px;
    line-height: 44px;
    color: #c5a059;
    width: 100%;
  }

  .reservations-form-container {
    width: 100%;
    max-width: 343px;
    padding: 24px;
    margin: 0;
    position: relative;
    z-index: 2;
    background-color: #1a1a1a;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .reservations-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-fields-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .form-field-wrapper {
    width: 100%;
    min-width: 0;
  }

  .form-field {
    width: 100%;
    min-width: 0;
  }

  .form-label {
    font-size: 14px;
    line-height: 20px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    width: 100%;
  }

  .form-textarea {
    min-height: 70px;
    padding: 10px 0;
  }

  .form-select {
    font-size: 16px;
    line-height: 24px;
    padding: 0 40px 0 0; /* Keep right padding for chevron on mobile */
    width: 100%;
  }

  .form-submit {
    width: auto;
    min-width: auto;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    margin-top: 8px;
    align-self: flex-start;
  }

  /* Zone-Bundle Row - Mobile */
  #zone-bundle-row {
    margin-top: 16px;
  }

  /* Payment Method and Customer Note Rows - Mobile */
  #payment-method-row,
  #customer-note-row {
    margin-top: 14px;
  }

  /* Availability and Bundle Description - Mobile */
  .zone-availability-label,
  .bundle-description {
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 18px;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 0 0 40px 0;
  }

  .footer-container {
    padding: 0 16px;
    gap: 40px;
  }

  .footer-divider {
    width: 100%;
    max-width: 375px;
    height: 1px;
    background: #1a1a1a;
  }

  .footer-content {
    padding: 0 9px;
  }

  .footer-title {
    font-size: 32px;
    line-height: 36px;
  }

  .footer-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .footer-copyright {
    font-size: 12px;
    line-height: 16px;
    padding: 0;
  }

  /* Confirmation Popup Mobile */
  .popup-content {
    padding: 24px;
    max-width: 343px;
  }

  .popup-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .popup-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 16px;
  }

  .popup-message {
    margin-bottom: 24px;
  }

  .popup-message p {
    font-size: 16px;
    line-height: 24px;
  }

  .popup-contact {
    font-size: 16px;
    line-height: 24px;
    color: #e6e6e6;
    font-family: Mulish, sans-serif;
    font-weight: 400;
  }

  .popup-close {
    width: auto;
    min-width: 74px;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 20px;
  }

  /* View Details Modal Mobile */
  .view-details-modal .modal-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: none;
  }

  .view-details-modal .modal-content {
    width: calc(100% - 48px);
    max-width: 400px;
    max-height: 90vh;
    height: auto;
    border-radius: 4px;
    padding: 24px;
    gap: 24px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
  }

  .view-details-modal .modal-main-content {
    flex-direction: column;
    gap: 24px;
  }

  .view-details-modal .modal-content-right {
    display: none;
  }

  .view-details-modal .modal-poster-mobile {
    display: block;
    width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    margin-bottom: 12px;
    background: #111;
  }

  .view-details-modal .modal-title {
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }

  .view-details-modal .modal-description {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }

  .view-details-modal .modal-info {
    gap: 8px;
  }

  .view-details-modal .modal-info-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
  }

  .view-details-modal .modal-info-row:first-child {
    flex-direction: column;
    gap: 8px;
  }

  .view-details-modal .modal-info-item {
    width: 100%;
    justify-content: flex-start;
  }

  .view-details-modal .modal-info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .view-details-modal .modal-buttons {
    flex-direction: row;
    gap: 16px;
    width: 100%;
    padding: 0;
    justify-content: center;
  }

  .view-details-modal .modal-close-button,
  .view-details-modal .modal-reserve-button {
    width: auto;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .modal-gallery {
    width: 100%;
  }

  .modal-gallery-item {
    height: 140px;
  }

  .modal-gallery-item img {
    height: 140px;
  }

  .modal-gallery-scroll.animate .modal-gallery-track {
    animation: modalGalleryScroll 50s linear infinite;
  }
}

/* ============================================
   Vietnamese Language Font Override
   ============================================ */
/* Khi chuyển sang tiếng Việt, dùng Libre Baskerville thay vì Decophile */
body.lang-vi .hero-title,
body.lang-vi .section-title,
body.lang-vi .footer-title,
body.lang-vi .font-decophile {
  font-family: "Libre Baskerville", "Playfair Display", serif !important;
}

/* Giảm font-size cho tiếng Việt để tránh tràn layout */
body.lang-vi .section-title {
  font-size: 48px !important;
  line-height: 56px !important;
  letter-spacing: -0.7px !important;
}

body.lang-vi .practical-info-content .section-title {
  font-size: 48px !important;
  line-height: 56px !important;
  letter-spacing: -0.7px !important;
}

body.lang-vi .footer-title {
  font-size: 100px !important;
  line-height: 108px !important;
}

/* Mobile - giảm thêm cho tiếng Việt */
@media (max-width: 768px) {
  body.lang-vi .hero-title {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  body.lang-vi .section-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  body.lang-vi .practical-info-content .section-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  body.lang-vi .calendar-section .section-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  body.lang-vi .footer-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}

/* ============================================
   Enhanced Mobile / Landscape Phones (500px - 768px)
   Scale up elements for better visual balance with images
   ============================================ */
@media screen and (min-width: 500px) and (max-width: 768px) {
  /* Reservations Section */
  .reservations-title {
    font-size: 44px;
    line-height: 52px;
  }

  .reservations-form-container {
    max-width: 520px;
    padding: 28px;
  }

  /* Practical Information Section */
  .practical-info-content .section-title {
    font-size: 44px;
    line-height: 52px;
  }

  /* Calendar Section */
  .calendar-section .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  /* Vietnamese Language Adjustments */
  body.lang-vi .reservations-title {
    font-size: 40px !important;
    line-height: 48px !important;
  }

  body.lang-vi .practical-info-content .section-title {
    font-size: 40px !important;
    line-height: 48px !important;
  }

  body.lang-vi .calendar-section .section-title {
    font-size: 36px !important;
    line-height: 44px !important;
  }

  /* Show Poster - Fixed image display */
  .show-poster {
    max-width: 250px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .show-poster img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }
}

/* ============================================
   Social Chat Buttons (Zalo, WhatsApp & Instagram)
   ============================================ */
.social-chat-buttons {
  position: fixed;
  bottom: 88px;
  right: 10px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.social-chat-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.social-chat-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-chat-button.zalo-button {
  background-color: transparent;
}

.social-chat-button.zalo-button:hover {
  box-shadow: 0 6px 16px rgba(41, 98, 255, 0.4);
}

.social-chat-button.whatsapp-button {
  background-color: transparent;
}

.social-chat-button.whatsapp-button:hover {
  box-shadow: 0 6px 16px rgba(64, 195, 81, 0.4);
}

.social-chat-button.instagram-button {
  background-color: transparent;
}

.social-chat-button.instagram-button:hover {
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.4);
}

.social-chat-button img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.popup-contact .popup-facebook-link {
  color: #c5a059 !important;
  font-size: 16px !important;
  font-family: Mulish, sans-serif !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 24px !important;
  transition: color 0.3s ease;
}

.popup-contact .popup-facebook-link:hover {
  color: #c5a059 !important;
  text-decoration: none !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .social-chat-buttons {
    bottom: 80px;
    right: 10px;
    gap: 10px;
  }

  .social-chat-button {
    width: 42px;
    height: 42px;
  }

  .social-chat-button img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .popup-contact .popup-facebook-link {
    color: #c5a059 !important;
    font-size: 16px !important;
    font-family: Mulish, sans-serif !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    line-height: 24px !important;
    transition: color 0.3s ease;
  }

  .popup-contact .popup-facebook-link:hover {
    color: #c5a059 !important;
    text-decoration: none !important;
  }
}

/* ============================================
   Reservations Calendar & Flatpickr Custom Styles
   ============================================ */

/* Calendar Helper Text */
.calendar-helper-text {
  text-align: center;
  color: #a6a6a6;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.calendar-helper-text p {
  margin: 0;
}

/* Calendar Wrapper */
.calendar-wrapper {
  margin-top: 24px;
  width: 100%;
}

.calendar-and-poster {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
}

.calendar-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0; /* Allow flex item to shrink */
}

/* Poster should be on the right side of calendar */
.show-poster {
  width: 214px;
  height: 285px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
}

/* Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.month-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-arrow {
  background: transparent;
  border: none;
  color: #e6e6e6;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.nav-arrow:hover {
  color: #c5a059;
}

.nav-arrow svg {
  width: 24px;
  height: 24px;
}

.current-month {
  color: #c5a059;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  min-width: 140px;
}

.available-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background: #a6a6a6;
  border-radius: 9999px;
}

.indicator-text {
  color: white;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 24px;
}

/* Show Poster - defined above in calendar-and-poster section */

/* ============================================
 Flatpickr Calendar Customization
 ============================================ */

/* Reset Flatpickr defaults */
.flatpickr-calendar {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

/* Hide Flatpickr's month navigation */
.flatpickr-months {
  display: none !important;
}

/* Calendar weekdays header */
.flatpickr-weekdays {
  margin-bottom: 8px !important;
  display: flex !important;
  gap: 16px !important;
}

.flatpickr-weekday {
  color: #e6e6e6 !important;
  font-size: 16px !important;
  font-family: "Mulish", sans-serif !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  text-align: center !important;
  width: 40px !important;
  flex: 1 1 0 !important;
}

/* Calendar container */
#calendar-container {
  width: auto;
  flex: 0 0 auto;
}

/* Calendar days grid */
.flatpickr-days {
  width: auto !important;
  flex: 0 0 auto !important;
}

.dayContainer {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(7, 56.28571px) !important;
  gap: 8px 16px !important;
  justify-content: start !important;
}

/* Individual date cells */
.flatpickr-day {
  background: #2e2e2e !important;
  border: 1px solid #808080 !important;
  border-radius: 8px !important;
  color: #808080 !important;
  font-size: 16px !important;
  font-family: "Mulish", sans-serif !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  height: 28px !important;
  width: 56.28571px !important;
  min-width: 56.28571px !important;
  max-width: 56.28571px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  cursor: not-allowed !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}

/* Available dates */
.flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay) {
  background: #808080 !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: white !important;
  cursor: pointer !important;
}

.flatpickr-day:not(.flatpickr-disabled):hover {
  background: #999999 !important;
  border: 1px solid #c5a059 !important;
}

/* Selected date - must override available date styles */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: #c5a059 !important;
  border: 1px solid #1a1a1a !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  position: relative !important;
}

/* Ensure selected state overrides available state with higher specificity */
.flatpickr-day.selected:not(.flatpickr-disabled):not(.prevMonthDay):not(
    .nextMonthDay
  ) {
  background: #c5a059 !important;
  border: 1px solid #1a1a1a !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
}

/* Checkmark icon for selected date */
.flatpickr-day.selected::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #c5a059;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  z-index: 1;
}

/* Checkmark tick inside circle - cùng gốc với vòng tròn, dịch vào tâm */
.flatpickr-day.selected::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  transform: translate(-5px, 5px);
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M2 7l4 4 8-8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Hide prev/next month dates */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .calendar-wrapper {
    width: 100%;
    margin-top: 24px;
  }

  .calendar-and-poster {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
    width: 100%;
    display: flex;
  }

  /* Đảm bảo thứ tự: Calendar trước, Poster sau */
  .calendar-section {
    width: 100%;
    align-items: flex-start;
    gap: 16px;
    order: 1;
  }

  .show-poster {
    width: 120px;
    height: 160px;
    max-width: 120px;
    margin: 0 auto;
    object-fit: cover;
    align-self: center;
    order: 2;
  }

  /* Calendar Header Mobile */
  .calendar-header {
    width: 100%;
    align-items: center;
  }

  .month-navigation {
    gap: 8px;
  }

  .current-month {
    font-size: 14px;
    line-height: 20px;
    min-width: auto;
  }

  .available-indicator {
    gap: 4px;
  }

  .indicator-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* Calendar Container Mobile */
  #calendar-container {
    width: 100%;
  }

  /* Calendar Weekdays Mobile */
  .flatpickr-weekdays {
    gap: 8px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
  }

  .flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: contents !important;
  }

  .flatpickr-weekday {
    font-size: 14px !important;
    line-height: 20px !important;
    width: 35.2px !important;
    flex: 0 0 35.2px !important;
    text-align: center !important;
  }

  /* Calendar Days Container Mobile */
  .dayContainer {
    grid-template-columns: repeat(7, 35.2px) !important;
    gap: 8px 8px !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  /* Calendar Day Mobile */
  .flatpickr-day {
    width: 35.2px !important;
    min-width: 35.2px !important;
    max-width: 35.2px !important;
    height: 32px !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }

  /* Checkmark icon for selected date - Mobile adjustments */
  .flatpickr-day.selected::after {
    width: 20px;
    height: 20px;
    top: -6px;
    right: -6px;
  }

  .flatpickr-day.selected::before {
    width: 12px;
    height: 12px;
    top: -6px;
    right: -6px;
    transform: translate(-5px, 5px);
  }
}

/* ============================================
   Loading Modal/Overlay
   ============================================ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(197, 160, 89, 0.2);
  border-top-color: #c5a059;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: #e6e6e6;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .loading-content {
    padding: 32px 24px;
  }

  .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .loading-text {
    font-size: 14px;
    line-height: 20px;
  }
}
