/* ============================================================
   DEPILLAND — depilacija šećernom pastom
   Style sheet — warm, organic, mobile-first
   ============================================================ */

:root {
  --cream:      #FBF6EF;
  --sand:       #F3E7D9;
  --sand-deep:  #EAD9C5;
  --caramel:    #C8895A;
  --caramel-dk: #B0743F;
  --amber:      #E0A96D;
  --deep:       #6B4226;
  --text:       #3A2E26;
  --muted:      #8A7A6D;
  --white:      #FFFFFF;
  --shadow:     0 10px 30px rgba(107, 66, 38, 0.12);
  --shadow-sm:  0 4px 14px rgba(107, 66, 38, 0.10);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1180px;
  --serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:       'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--caramel);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--caramel-dk); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--caramel);
}
.btn-ghost:hover { background: var(--sand); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--deep);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-deep);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--deep);
  letter-spacing: .5px;
}
.brand img { height: 38px; width: auto; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: 2px;
  color: var(--caramel);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .96rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--sand); color: var(--deep); }
.nav-links a.active { background: var(--caramel); color: var(--white); }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--deep);
  border-radius: 3px;
  transition: .3s;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(224,169,109,.35), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(200,137,90,.30), transparent 55%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--caramel-dk);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 18px;
}
.hero h1 em { color: var(--caramel); font-style: italic; }
.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--deep);
}
.hero-stats .stat span { font-size: .85rem; color: var(--muted); }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: var(--sand-deep);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- Section base ---------------- */
.section { padding: 86px 0; }
.section.alt { background: var(--sand); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow {
  color: var(--caramel);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--deep);
  margin: 10px 0 14px;
}
.section-head p { color: var(--muted); }

/* ---------------- Benefits ---------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit .ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--sand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit .ico svg { width: 28px; height: 28px; stroke: var(--caramel); }
.benefit h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--deep); margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: .96rem; }

/* ---------------- Service preview cards ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--sand), var(--sand-deep));
  display: grid; place-items: center;
  position: relative;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .thumb .ph-label {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(255,255,255,.85);
  color: var(--caramel-dk);
  font-size: .7rem;
  padding: 4px 10px;
  border-radius: 50px;
}
.card .body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card .body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--deep); margin-bottom: 8px; }
.card .body p { color: var(--muted); font-size: .95rem; flex: 1; }
.card .price { margin-top: 14px; font-weight: 600; color: var(--caramel-dk); }
.card .price small { color: var(--muted); font-weight: 400; }

/* ---------------- About ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  background: var(--sand-deep);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.9rem,4vw,2.6rem); color: var(--deep); margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text .signature { font-family: var(--serif); font-style: italic; color: var(--caramel-dk); font-size: 1.15rem; margin-top: 8px; }
.checklist { list-style: none; margin: 18px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--text); }
.checklist li svg { flex: none; width: 22px; height: 22px; stroke: var(--caramel); margin-top: 3px; }

/* ---------------- Detailed services (Usluge) ---------------- */
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.svc-row .num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--caramel-dk);
}
.svc-row h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--deep); }
.svc-row p { color: var(--muted); font-size: .94rem; }
.svc-row .tag { color: var(--caramel-dk); font-weight: 600; white-space: nowrap; }

/* ---------------- Pricing note ---------------- */
.pricing-note {
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--sand-deep);
  border-radius: var(--radius);
  padding: 34px 28px;
  color: var(--muted);
  max-width: 760px;
  margin: 40px auto 0;
}
.pricing-note strong { color: var(--deep); }

/* ---------------- Gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid .g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--sand-deep);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid .g-item .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--caramel-dk);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.4) 0 12px, transparent 12px 24px),
    var(--sand);
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { font-family: var(--serif); font-size: 2rem; color: var(--deep); margin-bottom: 18px; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-list .ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--sand); display: grid; place-items: center;
}
.info-list .ico svg { width: 22px; height: 22px; stroke: var(--caramel); }
.info-list strong { display: block; color: var(--deep); }
.info-list span, .info-list a { color: var(--muted); }
.hours-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.hours-box div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--sand); color: var(--muted); }
.hours-box div:last-child { border-bottom: none; }
.hours-box div.today { color: var(--deep); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 22px;
  aspect-ratio: 16/10;
  background: var(--sand-deep);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------------- Forms ---------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-family: var(--serif); color: var(--deep); font-size: 1.4rem; margin-bottom: 6px; }
.form-card p.sub { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--deep); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--sand-deep);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: .95rem;
  background: var(--cream);
  color: var(--text);
  transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(200,137,90,.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  background: #E8F3E4;
  color: #3F6B34;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: .9rem;
}

/* ---------------- Booking / Payment placeholder ---------------- */
.placeholder-block {
  background: linear-gradient(135deg, var(--sand), var(--cream));
  border: 2px dashed var(--caramel);
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
}
.placeholder-block .ph-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  margin: 0 auto 16px; box-shadow: var(--shadow-sm);
}
.placeholder-block .ph-ico svg { width: 30px; height: 30px; stroke: var(--caramel); }
.placeholder-block h3 { font-family: var(--serif); color: var(--deep); font-size: 1.5rem; margin-bottom: 8px; }
.placeholder-block p { color: var(--muted); max-width: 540px; margin: 0 auto 18px; }
.placeholder-block code {
  background: var(--white); padding: 2px 8px; border-radius: 6px;
  font-family: monospace; color: var(--caramel-dk); font-size: .85rem;
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--caramel), var(--caramel-dk));
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 12px; }
.cta-banner p { opacity: .92; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--deep);
  color: #E9DDD0;
  padding: 54px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}
.footer-grid h4 { font-family: var(--serif); color: var(--white); font-size: 1.15rem; margin-bottom: 14px; }
.footer-grid .brand { color: var(--white); margin-bottom: 12px; }
.footer-grid .brand small { color: var(--amber); }
.footer-grid p, .footer-grid a { color: #D8C7B6; font-size: .92rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid ul a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.10); display: grid; place-items: center;
  transition: background .2s;
}
.footer-social a:hover { background: var(--caramel); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .83rem; color: #C9B7A6;
}

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .benefits-grid, .cards, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual, .map-wrap { max-width: 560px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 22px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .3s ease;
    border-bottom: 1px solid var(--sand-deep);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; border-radius: 10px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .benefits-grid, .cards, .gallery-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row .tag { grid-column: 2; white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats { gap: 18px; }
}
