/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  min-height: 100vh;

  /* Premium textured background */
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: #111;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  height: 90px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* ================= HAMBURGER ================= */
.menu-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid #111;
  border-radius: 18px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn span {
  width: 20px;
  height: 1.5px;
  background: #111;
}

.menu-btn:hover {
  border-color: #c9a55c;
}

/* ================= MENU OVERLAY ================= */
.menu {
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4), transparent 40%),
    url("../IMG/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.menu.active {
  display: flex;
}

/* ================= MENU PANEL ================= */
.menu-content {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 50px 40px;
  border-radius: 28px;
  width: min(400px, 90%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: fadeScale 0.4s ease forwards;
}

.menu-content a {
  padding: 14px 20px;
  border: 1.5px solid #111;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.menu-content a:hover {
  background: #111;
  color: #fff;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1.5px solid #111;
  border-radius: 14px;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.close-menu:hover {
  background: #111;
  color: #fff;
}

/* ================= PAGE TITLE ================= */
.treatment-wrapper {
  padding: 120px 0;
  text-align: center;
}

.treatment-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.treatment-subtitle {
  font-size: 20px;
  margin-bottom: 100px;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* ================= GRID ================= */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* ================= TREATMENT CARD ================= */
.treatment-card {
  border: 1.5px solid #111;
  border-radius: 28px;
  padding: 35px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.treatment-card:hover {
  border-color: #c9a55c;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.treatment-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 1px;
}

.treatment-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

.treatment-card span {
  font-size: 13px;
  color: #c9a55c;
  font-weight: 500;
}
/* ================= TREATMENT SECTIONS ================= */

.treatment-section {
  padding: 120px 0;
}

.treatment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.treatment-section.reverse .treatment-inner {
  direction: rtl;
}

.treatment-section.reverse .treatment-text {
  direction: ltr;
}

.treatment-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.treatment-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.treatment-text p {
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
}
/* ================= NANO LAYOUT (bez slike) ================= */

.nano-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}

.treatment-pricing {
  border: 1.5px solid #111;
  border-radius: 28px;
  padding: 40px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
}

.treatment-pricing h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
}

.price-row:last-child {
  border-bottom: none;
}

.pricing-note {
  margin-top: 20px;
  font-size: 14px;
  color: #c9a55c;
}

.treatment-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

/* ================= CTA SECTION ================= */

.price-cta {
  padding: 140px 0;
  text-align: center;
}

.cta-image img {
  max-width: 700px;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  margin-bottom: 60px;
  transition: 0.4s ease;
}

.cta-image img:hover {
  transform: scale(1.02);
}

.cta-btn {
  display: inline-block;
  padding: 16px 60px;
  border-radius: 40px;
  border: 1.5px solid #c9a55c;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s ease;
}

.cta-btn:hover {
  background: #c9a55c;
  color: #fff;
}
/* Dva dodatna dugmeta */
.detox-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.detox-secondary {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid #111;
  border-radius: 30px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.detox-secondary:hover {
  border-color: #c9a55c;
  color: #c9a55c;
}
/* Responsive */
@media (max-width: 900px) {
  .detox-buttons {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 900px) {

  .price-cta {
    padding: 90px 20px;
  }

  .cta-image img {
    max-width: 95%;
  }

}


/* Responsive */
@media (max-width: 900px) {
  .nano-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}


/* Responsive */
@media (max-width: 900px) {

  .treatment-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .treatment-section.reverse .treatment-inner {
    direction: ltr;
  }

}


/* ================= ANIMATION ================= */
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .treatment-title {
    font-size: 36px;
  }

  .treatment-subtitle {
    margin-bottom: 60px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

}

.old-price{
  text-decoration: line-through;
  color:#888;
  margin-right:8px;
}

.new-price{
  color:#caa76b;
  font-weight:600;
}

