/* === Thailand Chapter Styles === */

.thailand-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Polaroid-style photo frame */
.polaroid {
  display: inline-block;
  padding: 12px 12px 48px 12px;
  background: #fff;
  box-shadow: 2px 4px 16px rgba(44, 62, 80, 0.15);
  transform: rotate(var(--rotation, 1deg));
}

.polaroid img { width: 100%; display: block; }

.polaroid .caption {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: #2c3e50;
  text-align: center;
  margin-top: 8px;
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

/* Palm leaf overlay */
.palm-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0.15;
  will-change: transform;
}

.palm-leaf--left {
  left: -60px;
  top: 10%;
  transform: rotate(-30deg);
}

.palm-leaf--right {
  right: -60px;
  top: 20%;
  transform: rotate(30deg) scaleX(-1);
}

/* String light dots */
.string-lights {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 5;
  pointer-events: none;
}

.string-light-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f39c12;
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
  position: absolute;
  animation: twinkle 2s ease-in-out infinite alternate;
}

/* Thai stamp style */
.thai-stamp {
  border-color: var(--thai-accent);
  color: var(--thai-accent);
}

/* Transition slide */
.transition-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.transition-stamp {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--thai-accent);
  border: 2px solid var(--thai-accent);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 4px;
  margin: 20px 0;
  opacity: 0.8;
}

.transition-flight-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-block;
  font-size: 1.12rem;
  margin-top: 16px;
}

/* Bamboo/coconut texture bar */
.tropical-divider {
  width: 80%;
  max-width: 600px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--thai-accent), transparent);
  margin: 40px auto;
  opacity: 0.5;
}
