/* ============================================================
   Nawan Thai Spa — Luxury Gold & Black Theme
   Theme: Matte Black | Rich Gold | Soft Ivory
   ============================================================ */

:root {
  --primary: #0f0f0f;
  --primary-dark: #000000;
  --primary-light: #1b1b1b;

  --secondary: #d4af37;
  --secondary-dark: #b99127;
  --secondary-light: #f4e2a1;

  --wa-green: #25D366;

  --cream: #111111;
  --card-bg: #181818;
  --muted: #1f1f1f;

  --text-main: #f5f5f5;
  --text-soft: #b8b8b8;
  --border: rgba(212,175,55,0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* ---- Headings ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
}

/* ---- Image hover zoom ---- */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.5s ease;
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ---- Hero Gradient ---- */
.hero-bg {
  background:
    linear-gradient(
      135deg,
      rgba(0,0,0,0.92) 0%,
      rgba(18,18,18,0.88) 45%,
      rgba(212,175,55,0.18) 100%
    );
}

/* ---- Section Heading ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #f4e2a1);
  margin: 12px auto 0;
  border-radius: 999px;
}

.section-title.left::after {
  margin-left: 0;
}

/* ---- Paragraphs ---- */
p {
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, #d4af37, #b99127);
  color: #000;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212,175,55,0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.28);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid rgba(212,175,55,0.5);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #000;
  border-color: var(--secondary);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--wa-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-wa:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* ---- Cards ---- */
.card {
  background: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* ---- Review Card ---- */
.review-card {
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.stars {
  color: #f4c542;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ---- Check List ---- */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: #d1d1d1;
}

.check-dot {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #d4af37, #b99127);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
}

.check-dot-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ---- Trust Badge ---- */
.trust-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d9d9d9;
}

/* ---- Map ---- */
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

/* ---- Urgency Banner ---- */
.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
}

/* ---- Pricing Table ---- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.pricing-table thead tr {
  background: linear-gradient(135deg, #d4af37, #b99127);
  color: #000;
}

.pricing-table th {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}

.pricing-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d6d6d6;
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* ---- Blog ---- */
.blog-card {
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ---- Aspect Ratios ---- */
.aspect-video  { aspect-ratio: 16/9; }
.aspect-4-3    { aspect-ratio: 4/3; }
.aspect-3-4    { aspect-ratio: 3/4; }
.aspect-sq     { aspect-ratio: 1/1; }
.aspect-wide   { aspect-ratio: 16/7; }
.aspect-banner { aspect-ratio: 16/5; }

/* ---- Helpers ---- */
.text-primary {
  color: var(--secondary) !important;
}

.text-secondary {
  color: var(--secondary-light) !important;
}

.bg-primary-soft {
  background: rgba(212,175,55,0.06);
}

/* ---- Photo Strip ---- */
.photo-strip-item {
  overflow: hidden;
  border-radius: 14px;
}

.photo-strip-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip-item:hover img {
  transform: scale(1.06);
}

/* ---- Couple Banner Overlay ---- */
.overlay-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.55)
    );
}

/* ---- CTA Stack ---- */
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---- Inputs ---- */
input,
textarea,
select {
  background: #141414;
  border: 1px solid rgba(212,175,55,0.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {

  .section-title {
    font-size: 1.7rem;
  }

  .btn-primary,
  .btn-wa,
  .btn-secondary {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

}




/* =========================================================
   GLOBAL LUXURY BLACK + GOLD OVERRIDES
   Add at VERY END of CSS
   ========================================================= */

/* Main Background */
body {
  background: #0b0b0b !important;
  color: #f5f5f5 !important;
}

/* Sections */
section {
  background-color: transparent !important;
}

/* White Background Overrides */
.bg-white,
.bg-gray-50,
.bg-gray-100,
.bg-light {
  background: #111111 !important;
}

/* Soft section backgrounds */
[style*="#f5f5f0"],
[style*="#fdfbf7"] {
  background: #151515 !important;
}

/* Green background override */
[style*="38,105,77"],
[style*="#26694d"] {
  background:
    linear-gradient(
      135deg,
      rgba(0,0,0,0.96),
      rgba(18,18,18,0.92)
    ) !important;
}

/* White text */
.text-gray-800,
.text-gray-900,
.text-black {
  color: #ffffff !important;
}

/* Paragraph text */
.text-gray-500,
.text-gray-600,
.text-gray-700 {
  color: rgba(255,255,255,0.68) !important;
}

/* Gold accents */
.text-primary,
.text-secondary,
.text-success {
  color: #d4af37 !important;
}

/* Navbar */
header,
nav,
.navbar {
  background: rgba(10,10,10,0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

/* Navbar links */
nav a,
.nav-link {
  color: #f5f5f5 !important;
}

nav a:hover,
.nav-link:hover {
  color: #d4af37 !important;
}

/* Cards */
.card,
.review-card,
.blog-card,
[class*="card"] {
  background: #171717 !important;
  border: 1px solid rgba(212,175,55,0.12) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hover effects */
.card:hover,
.review-card:hover,
.blog-card:hover {
  border-color: rgba(212,175,55,0.35) !important;
  box-shadow: 0 0 30px rgba(212,175,55,0.12);
}

/* Buttons */
.btn-primary,
button {
  background: linear-gradient(135deg, #d4af37, #b99127) !important;
  color: #000 !important;
  border: none !important;
}

/* Secondary buttons */
.btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(212,175,55,0.45) !important;
  color: #d4af37 !important;
}

/* WhatsApp button keep green */
.btn-wa {
  background: #25D366 !important;
  color: white !important;
}

/* Inputs */
input,
textarea,
select {
  background: #151515 !important;
  color: #fff !important;
  border: 1px solid rgba(212,175,55,0.12) !important;
}

/* Tables */
table {
  background: #151515 !important;
}

tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* Footer */
footer {
  background: #050505 !important;
  border-top: 1px solid rgba(212,175,55,0.1);
}

/* Gold underline */
.section-title::after {
  background: linear-gradient(to right, #d4af37, #f4e2a1) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#d4af37, #b99127);
  border-radius: 10px;
}