/* GLOBAL */
:root {
  --bg: #f7f6f4;
  --text: #111;
  --muted: #6b6b6b;
  --accent: #c46c9b; /* example accent; change to your brand color */
  --maxw: 1100px;
  --radius: 10px;
  --card-bg: #ffffff;
  --shadow: 0 6px 20px rgba(18, 18, 18, 0.06);
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

h2,
h3,
h4 {
  margin: 0 0 0.5rem 0;
}

section {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(120%) blur(4px);
  z-index: 30;
  border-bottom: 1px solid #eee;
}

footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid #f7f7f7;
}

/* Breakpoints
   xs: 520px
   sm: 600px
   md: 768px
   lg: 900px
   xl: 1024px
*/

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 1rem 0 0;
}
.logo-name {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.85;
}

/* small tablets / large phones */
@media (min-width: 768px) {
  .logo-name {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
}
/* laptops / desktop */
@media (min-width: 1024px) {
  .logo-name {
    font-size: 1.05rem;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1280px) {
  .logo-name {
    font-size: 1.1rem;
  }
}
@media (max-width: 520px) {
  .logo {
    gap: 4px;
  }

  .logo-img {
     margin: 0;
  }
}


.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.btn {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.btn-ghost {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  color: var(--text);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.service-category h3 {
  margin: 0 0 10px;
}
ul.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.price-list li {
  display: block;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.about {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-left {
  flex-direction: row;
}

.about-right {
  flex-direction: row-reverse;
}

.about-divider {
  height: 1px;
  margin: 28px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
}

.about img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Mobile layout */
@media (max-width: 520px) {
  .about {
    display: block;
  }

  .about img {
    width: 120px;
    height: 120px;
    float: left;
    margin: 0 12px 8px 0;
    border-radius: 12px;
    object-fit: cover;
  }

  .about.about-right img {
    float: right;
    margin: 0 0 8px 12px;
  }

  .about::after {
    content: "";
    display: block;
    clear: both;
  }

  .about h3 {
    margin-top: 0;
  }
  .about p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.footer-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* little hover */
.card:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease;
}
.lang-switch span {
  cursor: pointer; /* makes cursor change */
  padding: 2px 4px;
  border-radius: 4px;
  transition: 0.2s ease;
}

.lang-switch span:hover {
  color: var(--accent); /* highlight on hover */
}

/* active language */
.lang-switch .active {
  font-weight: 700;
  color: var(--accent); /* selected language colored */
  text-decoration: underline;
}

.mobile-lang {
  padding: 6px;
  border-radius: 6px;
  font-size: 14px;
}

#langSwitch span.active {
  font-weight: bold;
  text-decoration: underline;
}

/* Gallery row */
.gallery-wrapper {
  position: relative;
  margin-top: 16px;
}

.gallery-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 36px; /* space for arrows */
  height: 240px; /* adjust once, images will scale automatically */
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-row img {
  height: 100%;
  width: auto;
  max-height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
/* .gallery-row img {
  height: 220px;
  flex: 0 0 auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
} */

.gallery-row img:hover {
  transform: scale(1.04);
}

/* Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.gallery-arrow.left {
  left: 6px;
}

.gallery-arrow.right {
  right: 6px;
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-row img {
    height: 170px;
  }
}

/* Instagram related */

.instagram-cta {
  margin-top: 1rem;
}

.instagram-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--card-bg);
  color: inherit;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.instagram-btn strong {
  color: var(--accent);
}

.instagram-btn svg {
  width: 22px;
  height: 22px;
  fill: #e1306c; /* Instagram pink */
  flex-shrink: 0;
}

.instagram-text strong {
  display: block;
  font-weight: 700;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.instagram-link {
  color: var(--accent);
  font-weight: 700;
}

.ig-icon {
  width: 16px;
  height: 16px;
  font-weight: bold;
  fill: var(--accent);
  vertical-align: middle;
}

/* Services accordion */

.service-item {
  display: block; /* IMPORTANT */
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 0;
}

.service-toggle {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-weight: 500;
  gap: 8px;
  text-align: left;
}

.service-toggle span {
  padding-right: 10px;
  flex: 1;
}

.service-toggle strong {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.service-toggle::after {
  content: "▾";
  font-size: 1.5rem;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.service-item.open .service-toggle::after {
  transform: rotate(180deg);
}

.service-desc {
  display: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 6px;
  margin-left: 2px;
  padding-right: 22px;
  max-width: 92%;
}

.service-item.open .service-desc {
  display: block;
}

/* Fix accordion layout */
ul.price-list li.service-item {
  display: block;
}

/* MOBILE SERVICES CAROUSEL */
@media (max-width: 768px) {
  #services .grid-3 {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 12px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #services .grid-3::-webkit-scrollbar {
    display: none;
  }

  #services .service-category {
    flex: 0 0 90%; /* UX: size reduced to see the next card */
    scroll-snap-align: start;
  }
}

/* Map embed */

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Mobile behavior */
.map-mobile {
  display: none;
  text-align: center;
}

.map-mobile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.map-address {
  color: var(--muted);
  font-size: 1rem;;
  line-height: 1.4;
  text-decoration: none;
  flex: 1;
}

.map-address:hover {
  text-decoration: underline;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.map-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
/* Logo link fix */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

/* responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  h1 {
    font-size: 1.2rem;
  }
}
@media (max-width: 520px) {
  .nav-links {
    display: none;
  }
}
/* Hide map iframe on mobile */
@media (max-width: 520px) {
  .map-embed {
    display: none;
  }

  .map-mobile {
    display: block;
  }
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}

.review {
  min-width: 100%;
  padding: 6px;
}

.review-text {
  font-style: italic;
  line-height: 1.5;
  margin-left: 1rem;
  margin-right: 1rem;
}

.review-author {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.rev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.rev-btn.prev {
  left: 4px;
}
.rev-btn.next {
  right: 4px;
}

/* mobile */
@media (max-width: 520px) {
  .rev-btn {
    display: none;
  }
}

/* Reviews strip (mobile-first) */
.reviews-strip {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.review-img {
  position: relative;
  flex: 0 0 70%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reviews-strip::-webkit-scrollbar {
  display: none;
}

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

@media (min-width: 768px) {
  .reviews-strip {
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .review-img {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (min-width: 1024px) {
  .review-img {
    flex: 0 0 calc(33.333% - 11px);
  }
}
@media (hover: hover) {
  .review-img:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease;
  }
}


/* Source badge */
.review-source {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.review-source.google {
  color: #4285f4;
}

.review-source.instagram {
  color: #e1306c;
}

.review-source.yelp {
  color: #e1306c;
}

/* CTA */
.reviews-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  font-size: 14px;
}

.reviews-cta strong {
  color: var(--accent);
}

.reviews-cta:hover {
  background: rgba(0, 0, 0, 0.05);
}





.map-mobile .instagram-cta {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* contact and booking section */
.booking-layout {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}

.booking-photo {
  flex: 1;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-card h3 {
  margin-bottom: 16px;
}

.booking-item {
  margin-bottom: 14px;
}

.booking-item p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.booking-note {
  margin: 16px 0;
  padding: 12px 14px;
  background: #f7f7f8;
  border-radius: 10px;
  font-size: 14px;
}

.booking-note span {
  color: var(--muted);
  font-size: 13px;
}

.booking-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--accent, #c46c9b);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
}

.booking-btn:hover {
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-layout {
    flex-direction: column;
  }

  .booking-photo {
    height: 220px;
  }
}


.hero,
.about-card {
  position: relative;
  text-align: left;
  margin: 2rem 0;
  padding: 2.75rem 1.75rem 3rem;
  border-radius: 18px;
  background: var(--card-bg); 
  box-shadow: 0 10px 30px rgba(196, 108, 155, 0.06);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(196, 108, 155, 0.35),
    rgba(196, 108, 155, 0.15),
    rgba(196, 108, 155, 0.35)
  );
  z-index: -1;
  filter: blur(18px);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  opacity: 0.85;
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

.reviews-cta.google {
  margin-top: 10px;
}

.google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


.section {
  padding: 0;
}
.section.soft-top {
  position: relative;
}
.section.soft-top::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    to top,
    var(--bg),
    transparent
  );
}
.section-divider {
  height: 1px;
  margin: 3rem 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
}

@media (max-width: 600px) {
  .section.soft-top::before {
    height: 20px;
    top: -20px;
  }
  .section-divider {
    margin: 1rem 0;
  }
}
