/* -----------------------------------------------------------
   Fonts
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* -----------------------------------------------------------
   Design Tokens (defaults = Sawasdee green/beige)
   Brand themes (e.g. mm-massage.css) override these.
----------------------------------------------------------- */
:root{
  /* brand core */
  --brand: #3b5d57;
  --accent: #2f5b55;
  --text: #1f2937;
  --muted: #6b7280;

  /* surfaces */
  --bg: #ffffff;
  --surface: #f2ece4;        /* services section */
  --surface-alt: #ebdfcf;    /* contact section */
  --surface-strong: #234e4a; /* navbar/footer/dark areas */

  /* cards/boxes */
  --card-bg: #ffffff;
  --card-title: #2f5b55;

  /* interactive */
  --btn-bg: var(--brand);
  --btn-text: #ffffff;

  /* decorations/titles */
  --icon: #2e5252;
  --title: #2e5252;
  --subtle: #466564;
}

/* -----------------------------------------------------------
   Base
----------------------------------------------------------- */
* {
  box-sizing: border-box;
  outline: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

iframe[src*="google.com/maps"] {
  border: 0;
}


html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

body{ background: var(--bg); color: var(--text); }
a{ color: var(--brand); text-decoration-color: currentColor; text-underline-offset: 3px; }
a:hover{ opacity:.95; }

.playfair{ font-family: "Playfair Display", serif; }

img, button, iframe, a { user-select: none; }

.fadeIn { animation: fadeIn 1s; }
@keyframes fadeIn { 0%{opacity:0} 100%{opacity:1} }

.myShadow { box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0; }

input:user-invalid { border: 1.5px solid rgba(255, 0, 0, 0.416); }

/* -----------------------------------------------------------
   Navbar
----------------------------------------------------------- */
.navbar{
  /* position: fixed; top: 0; left: 0; right: 0; */
  background: var(--surface-strong);
  z-index: 40;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner{
  height: 96px;
  padding: 12px;
  margin: 0 auto;
  width: 100%;
  max-width: 85vw;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
@media (min-width: 1280px){
  .nav-inner{
    height: 116px;
    padding: 20px;
    gap: 32px;
  }
}

/* Logo */
.logo img{ height: 64px; }
@media (min-width: 1280px){ .logo img{ height: 80px; } }

/* Desktop links */
.nav-links{
  display: none;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  list-style: none;
}
.nav-link{
  color: #fff;           /* white on dark navbar */
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.nav-link:hover{ opacity: .6; }
@media (min-width: 800px){ .nav-links{ display: flex; } }

/* Mobile hamburger */
.menu-toggle{
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 800px){ .menu-toggle{ display: none; } }

/* Mobile menu (overlay) */
.mobile-menu{
  position: fixed;
  left: 0; top: 0;
  width: 0;
  height: 80vh;
  background: var(--surface-strong);
  overflow: hidden;
  z-index: 50;
  transition: width 0.5s ease;
  display: flex; flex-direction: column;
}
.mobile-menu-header{
  display: flex; align-items: center; justify-content: flex-end;
  padding: 20px;
}
.close-btn{
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
}
.mobile-menu-body{ padding: 24px; }
.mobile-links{
  display: flex; flex-direction: column; gap: 28px;
  list-style: none;
}
.mobile-links li a{
  text-decoration: none;
}
.mobile-link{
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
  transition: opacity 0.5s ease;
}
.mobile-link:hover{ opacity: .6; }

#mobileMenuBtn{ display: none; }
@media (max-width: 800px){ #mobileMenuBtn{ display: block; } }

/* -----------------------------------------------------------
   Hero / Banner
----------------------------------------------------------- */
.banner {
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/banner.avif) no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* keeps the image in place */
}

.hero-section{
  position: relative;
  overflow: hidden;
  min-height: calc(80vh - 10rem);
  background-position: center;
  background-size: cover;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px){
  .hero-section{
    min-height: calc(80vh - 14.5rem);
    padding-bottom: 5rem;
  }
}

.hero-inner{
  position: relative; z-index: 20;
  margin: 0 auto;
  max-width: 80rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  min-height: calc(80vh - 10rem);
  width: 100%;
}
@media (min-width: 640px){
  .hero-inner{ padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px){
  .hero-inner{ padding-left: 3rem; padding-right: 3rem; justify-content: start; }
}
@media (min-width: 768px){
  .hero-inner{
    min-height: calc(80vh - 14.5rem);
    flex-direction: row;
    gap: 5rem;
  }
}

.hero-content{ width: 100%; }
@media (min-width: 768px){ .hero-content{ max-width: 66rem; } }

.hero-title{
  max-width: 70rem; width: 100%;
  margin-left: auto; margin-right: auto;
  font-weight: 500;
  color: #f4f4f5;
  line-height: 1.25;
  font-size: 2.5rem;
  margin-bottom: 0rem;
}
@media (min-width: 768px){
  .hero-title{ font-size: 3.75rem; margin-bottom: 0.5rem; }
}

.textShadow{ text-shadow: 0 1px 2px rgba(0,0,0,0.35); }

.hero-text{
  color: #e4e4e7;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  padding: 1rem 0;
  font-weight: 500;
}
@media (min-width: 768px){
  .hero-text{ font-size: 2rem; margin-bottom: 1.75rem; }
}

.hero-actions{ display:flex; flex-direction:column; gap:1.25rem; }
.hero-actions a{ text-decoration:none; }
@media (min-width: 768px){ .hero-actions{ flex-direction: row; } }

.btn-primary{
  display: inline-block;
  width: 100%;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  color: #fff;
  background: var(--btn-bg);
  border: 2px solid var(--btn-bg);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(16,24,40,0.06);
  transition: all 0.5s ease;
  text-align: center;
}
@media (min-width: 768px){ .btn-primary{ width:auto; padding: 1rem 2rem; } }
.btn-primary:hover{ opacity: .7; }

.btn-whatsapp {
  display: inline-flex;              /* Use flexbox */
  align-items: center;              /* Center icon + text vertically */
  justify-content: center;          /* Center contents horizontally */
  gap: 10px;                        /* Space between icon and text */
  font-weight: 500;
  color: #fff;
  background: #42C453;
  border: 2px solid #42C453;
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(16,24,40,0.06);
  transition: all 0.5s ease;
  font-size: 20px;
  text-decoration: none;
}

.btn-whatsapp img {
  width: 80px;   /* Much smaller icon size */
}

@media (min-width: 768px) { 
  .btn-whatsapp { 
    width: auto; 
    padding: 1rem 2rem; 
  } 
}

.btn-whatsapp:hover { 
  opacity: .7; 
}

.section-icon{ width:90px; height:90px; margin:0 auto 12px; display:block; }

/* -----------------------------------------------------------
   About split
----------------------------------------------------------- */
.about-split{
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){ .about-split{ grid-template-columns: 1fr; } }

/* Left column */
.about-left{
  background: var(--surface-strong);
  display: grid;
  place-items: center;
  padding: 3rem 2rem;
}
.photo-frame{ width: min(600px, 90%); margin: 0; }
.photo-frame img{ width: 100%; height: auto; display: block; }

/* Right column */
.about-right{
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 3rem 2rem;
}
.about-content{ max-width: 640px; text-align: center; }
.about-icon{
  width: 44px; height: 44px; margin: 0 auto 1.25rem; display: block;
  /* icon color derives from stroke attribute in HTML svg; leave as-is */
}
.about-title{
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
}
.about-text{
  margin: 0;
  color: var(--subtle);
  line-height: 1.9;
  max-width: 30rem;
}

/* -----------------------------------------------------------
   Services
----------------------------------------------------------- */
.services{
  background: var(--surface);
  padding:72px 0 120px;
}
.wrap{ width:min(1200px,92%); margin:0 auto; }

.services-head{ text-align:center; margin:0 auto 40px; max-width:900px; }
.services-title{
  margin:0 0 10px;
  font-size:clamp(2rem,3.8vw,2rem);
  font-weight:400;
  color: var(--title);
  font-family:Georgia,"Times New Roman",Times,serif;
}
.services-sub{
  margin:0;
  color: var(--subtle);
  font-size:clamp(1rem,1.2vw,1.125rem);
  line-height:1.8;
}

/* Grid */
.card-grid{
  display:grid;
  gap:0px;
  grid-template-columns:1fr;
  margin-top:60px;
}
@media (min-width:768px){
  .card-grid{ gap:44px; grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1100px){
  .card-grid{ grid-template-columns:repeat(3,1fr); }
}

/* Card */
.card{ position:relative; padding-bottom:88px; text-decoration:none; }
.card-media{ margin:0; background:#ddd; }
.card-media img{ width:100%; height:320px; object-fit:cover; }

/* Overlapping title box */
.card-title{
  background: var(--card-bg);
  padding:28px 26px;
  max-width:calc(100% - 48px);
  margin: 0 auto;
  margin-top: -2rem;
  z-index: 10;
  position: relative;
  color: var(--card-title);
  font-size:clamp(1.25rem,1.6vw,1.5rem);
  line-height:1.35;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  border-radius:5px;
  font-family:Georgia,"Times New Roman",Times,serif;
}

/* CTA */
.services-cta{ display:flex; justify-content:center; margin-top:1rem; }
.services-cta .btn{
  display:inline-block;
  padding:14px 2.5rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration:none;
  border-radius:5px;
  font-weight:400;
  transition:transform .2s ease, opacity .2s ease;
}
.btn{ background:#b5b1ae; color:#32302f; border:0; padding:14px 3rem; border-radius:5px; cursor:pointer; font-weight:500; transition:transform .15s ease, opacity .15s ease; }
.btn:hover{ transform:translateY(-1px); opacity:.95 }

/* -----------------------------------------------------------
   Contact
----------------------------------------------------------- */
.contact-section{ background: var(--surface-alt); padding:72px 0; }
.contact-wrap{
  width:min(1100px,92%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:56px;
}
@media (max-width: 900px){ .contact-wrap{ grid-template-columns:1fr; } }

/* Left side */
.contact-info{ color:#32302f; }
.info-icon svg{ width:26px; height:26px; margin-bottom:18px; }
.info-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight:400;
  font-size:1.8rem;
  margin:0 0 18px;
  color: var(--text);
}
.info-block{ margin:0 0 18px; color:#3f3f3f; line-height:1.8 }
.info-block a{ text-decoration:none; color: var(--text); }
.info-sub{ margin:0 0 6px; font-weight:600; color: var(--text); font-size:1.05rem; }
.info-strong{ margin-top:10px; font-weight:500; color: var(--text); }

/* Right side: form */
.form-title{
  margin:0 0 22px;
  font-weight:400;
  color: var(--text);
  font-size:clamp(1.6rem, 2.4vw, 2rem);
}

form{ margin-top:8px }
.field{ margin-bottom:18px }
.field label{
  display:block;
  font-size:.85rem;
  color: var(--text);
  font-weight: 500;
  margin:0 0 8px;
}
.field label span{ color:#a43d2f } /* required star */

input, select, textarea{
  width:100%;
  border:1px solid #2c2d31;
  background:#1c1e22;            /* dark input bg (kept as-is) */
  color:#f5f6f7;
  border-radius:12px;
  padding:14px 18px;
  font-size:1rem;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
textarea{ resize:vertical }
input::placeholder, textarea::placeholder{ color:#9aa0a6 }

/* focus */
input:focus, select:focus, textarea:focus{
  border-color:#9a6b3d;
  box-shadow:0 0 0 3px rgba(154,107,61,.25);
}

/* custom select arrow */
.select-wrap{ position:relative }
.select-wrap select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  padding-right:44px;
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23c5c7ca" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat:no-repeat;
  background-position:right 14px center;
}

/* checkbox row */
.field-inline { display:flex; align-items:flex-start; gap:8px; margin-top:8px; max-width:600px; }
.field-inline input { width: unset; }
.check { color: var(--text); font-weight:400; font-size:1rem; line-height:1.4; }
.check a{ color: var(--text); text-decoration:underline }

/* -----------------------------------------------------------
   Quote section
----------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(1rem, 4vw, 3rem);
  /* NOTE: update path if assets moved */
  background: linear-gradient(rgba(0,0,0,.288),rgba(0,0,0,.288)),url("/assets/images/banner2.png") center / cover no-repeat;
}
.content{ position: relative; max-width:1100px; width:min(90vw,1100px); }
.quote{
  margin:0;
  font-weight:400;
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  line-height:1.25;
  color: #fff;
  text-wrap: balance;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.5));
}
.cite{
  margin-top: clamp(1rem, 2.5vw, 2rem);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  letter-spacing:.02em;
}
@media (min-width:1400px){ .quote{ max-width:42ch; margin-inline:auto; } }

/* -----------------------------------------------------------
   Footer
----------------------------------------------------------- */
.site-footer {
  color: #eff7f6;
  background: var(--surface-strong);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}
.footer-wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding: 56px clamp(20px, 6vw, 72px) 28px;
}
.footer-logo { display:grid; place-items:center; margin-bottom:24px; opacity:.9; }
.footer-logo svg { width:28px; height:28px; }

/* grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* headings */
.footer-title { font-size:1.5rem; line-height:1.15; font-weight:400; margin:0 0 18px; letter-spacing:.5px; }
h4 { font-size:1.3rem; margin:22px 0 8px; font-weight:500; }

/* left column */
address { font-style: normal; }
.left p { margin: 0 0 10px; color: rgba(239,247,246,.85); }
.left .note { margin-top: 18px; }
.left .warn { font-weight: 600; margin-top: 18px; }

/* middle column */
.mid ul { margin: 8px 0 0 18px; padding: 0; }
.mid li { margin: 6px 0; color: rgba(239,247,246,.85); }

/* right column */
.right a.big { display:block; font-weight:400; margin:0 0 18px; }

/* footer links */
.site-footer a {
  color: #eff7f6;
  text-decoration-color: #d9efe8;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.site-footer a:hover { text-decoration-color: #fff; }

/* bottom row */
.footer-bottom {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  border-top: 0 solid rgba(255,255,255,.08);
  margin-top: clamp(34px, 6vw, 60px);
  padding-top: clamp(18px, 2.5vw, 28px);
  color: rgba(239,247,246,.85);
  flex-wrap: wrap;
}
.footer-bottom a { color: #eff7f6; }

/* responsive footer */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr; }
  .right { margin-top: 6px; }
}

/* -----------------------------------------------------------
   Testimonials
----------------------------------------------------------- */
section.testimonials {
  text-align: center;
  padding: 150px 20px;
  max-width: 1500px;
  margin: auto;
}
@media (max-width: 920px) {
  section.testimonials { padding: 80px 20px; }
}

.testimonials .icon { color: var(--surface-strong); font-size: 28px; margin-bottom: 18px; }
.testimonials h2 { font-size: 1.8rem; margin: 0 0 30px; font-weight: 400; color: #333; }
.testimonial-text, .testimonial-author { color: var(--title); }
.testimonial-author { font-weight: 600; font-size: 18px; margin-bottom: 40px; }

/* Swiper pagination (dots) */
.swiper-pagination-bullet { background: var(--title); opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--title) !important; }

/* -----------------------------------------------------------
   Gallery
----------------------------------------------------------- */
section.gallery { padding: 0; margin: 0; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { display:flex; justify-content:center; align-items:center; }
.swiper-slide img { width: 100%; height: 30rem; object-fit: cover; }

/* navigation arrows */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (max-width: 768px){
  .swiper-slide img { border-radius: 0; }
}
.swiper-button-next, .swiper-button-prev{ color: white !important; }

/* -----------------------------------------------------------
   Sub-service banners (update paths if moved)
----------------------------------------------------------- */
.traditionelle-thaimassage-banner{
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/traditionelle-thaimassage.avif) no-repeat center center;
  background-size: cover;
}
.thai-aromaöl-massage-banner{
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/thai-aromaöl-massage.avif) no-repeat center center;
  background-size: cover;
}
.kraeuterstempelmassage-banner{
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/kraeuterstempelmassage.avif) no-repeat center center;
  background-size: cover;
}
.kopf-nacken-schultermassage-banner{
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/kopf-nacken-schultermassage.avif) no-repeat center center;
  background-size: cover;
}
.fussmassage-banner{
  background: linear-gradient(#000000a1, #000000a1),
    url(/assets/images/fussmassage.avif) no-repeat center center;
  background-size: cover;
}



.service-prices {
  background: #f8f6f2;
  padding: 80px 0 120px;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.price-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.price-value {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title);
}

.price-duration {
  color: var(--muted);
  margin-bottom: 24px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background: #25D366;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
