/* =====================================================
   1. RESET & GLOBAL VARIABLES
===================================================== */
:root {
  --sand: #FBF8F4;
  --ink: #151515;
  --muted: #6b6b6b;
  --gold: #C8A34A;
}

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

html, body {
  background: var(--sand);
  color: var(--ink);
  font-family: Inter, sans-serif;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

.section {
  padding: 4rem 1rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3, summary {
  font-family: "Playfair Display", serif;
}

/* =====================================================
   2. HEADER — TRANSPARENT → SOLID
===================================================== */

body { padding-top: 86px; }

.top-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 86px;
  z-index: 999;
  display: flex; justify-content: center; align-items: center;

  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
  transition: .45s ease;
}

.top-nav.scrolled {
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(200,150,80,.22);
  backdrop-filter: blur(12px);
}

.nav-divider {
  margin-top: 86px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), #9d7b2f);
}

/* NAV INNER */
.nav-inner {
  max-width: 1280px;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2rem;
}

.brand-logo {
  height: 70px;
  width: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2.3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #2b2217;
  font-size: 1.05rem;
  font-weight: 500;
  padding-bottom: 4px;
  position: relative;
}

/* GOLD UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0%; height: 2px;
  background: linear-gradient(90deg,#e9d4a6,#c7a762,#e9d4a6);
  transition: width .35s ease;
}
.nav-links a:hover::after { width: 60%; }
.nav-links a:hover { color: #c7a762; }

/* =====================================================
   3. MOBILE NAVIGATION
===================================================== */

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 22px; height: 2px;
  background: #6e5a33;
  transition: .3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:860px){

  .brand-logo { height: 48px !important; }

  .nav-toggle { display: flex !important; }

  .nav-links {
    position: absolute;
    top: 86px; left: 0;
    width: 100%;

    flex-direction: column;
    padding: 2rem 0;
    gap: 1.6rem;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200,150,80,.25);

    transform: translateY(-150%);
    opacity: 0; visibility: hidden;
    transition: .4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1; visibility: visible;
  }
}

/* =====================================================
   4. HERO
===================================================== */

.hero {
  min-height: 78vh;
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}

.hero-logo {
  height: 780px;
  max-width: 90vw;
}

@media(max-width:820px){
  .hero-logo { height: 280px !important; }
}

.hero-title {
  font-size: clamp(2.8rem,4vw,4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

/* =====================================================
   5. TITEL ZENTRIERUNG (Services + Preise)
===================================================== */

#services .section-title,
#pricing .section-title {
  width: 100%;
  text-align: center !important;
  margin: 0 auto 2.4rem !important;
}

/* =====================================================
   6. SERVICES GRID
===================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  justify-items: center;
}

@media(max-width:900px){
  .services-grid{ grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px){
  .services-grid{ grid-template-columns: 1fr; }
}

.service-card {
  background: #fffdf8;
  border: 1px solid #e8e0cf;
  border-radius: 28px;
  text-align: center;
  padding: 2.4rem 1.8rem;
  overflow: hidden;
  transition: .3s ease;

  box-shadow:
    0 8px 28px rgba(0,0,0,0.06),
    0 2px 6px rgba(255,220,160,0.35);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.04);
}

@media(max-width:820px){
  .service-card:hover { transform: scale(1.02); }
}

.service-card img {
  width: 360px; height: 360px;
  border-radius: 18px;
  object-fit: cover;
}

/* =====================================================
   7. PRICING
===================================================== */

.acc.premium {
  background: #fffdf8;
  border: 1px solid #e7dcc8;
  border-radius: 22px;
  padding: 1.4rem 1.6rem;
  margin: 1.4rem auto;
  max-width: 900px;

  box-shadow:
    0 8px 24px rgba(0,0,0,.05),
    0 2px 6px rgba(255,220,160,.35);
}

details summary {
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  padding: .8rem 0;
}

.acc-list { list-style:none; padding:0; }

.acc-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1rem 0;
  border-top: 1px solid #efe4d5;
}

/* =====================================================
   8. CONTACT — PREMIUM
===================================================== */

#contact {
  background: linear-gradient(180deg,
    rgba(255,245,225,.55),
    rgba(255,238,208,.78) 45%,
    #fff8ee);
  padding: 6rem 1.5rem 7rem;
  border-radius: 30px;
  text-align:center;
}

.contact-card {
  max-width:620px;
  margin:0 auto;
  padding: 2.4rem 2rem;
  border-radius:28px;

  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);

  box-shadow:
    0 14px 40px rgba(0,0,0,.08),
    0 0 28px rgba(220,180,120,.28);
}

/* =====================================================
   ✅ PREMIUM CTA BUTTONS
===================================================== */

#contact .contact-buttons {
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:1.8rem;
}

#contact .cta-btn {
  display:inline-block;
  padding:0.9rem 1.8rem;
  min-width:150px;

  border-radius:16px;
  font-weight:600;
  font-size:1.05rem;
  text-decoration:none;
  text-align:center;

  background: rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  color:#fff;

  transition:.35s ease;
  box-shadow:
    0 8px 24px rgba(0,0,0,.12),
    0 3px 8px rgba(255,220,160,.25);
  margin:0.35rem;
}

#contact .cta-btn:hover {
  transform:translateY(-6px) scale(1.05);
  box-shadow:
    0 18px 36px rgba(0,0,0,.18),
    0 0 12px rgba(255,230,180,.65);
}

#contact .cta-btn.whatsapp { background: linear-gradient(135deg,#24d165,#17a94c); }
#contact .cta-btn.instagram { background: linear-gradient(135deg,#e1306c,#b31e52); }
#contact .cta-btn.email     { background: linear-gradient(135deg,#444,#222); }
#contact .cta-btn.premium   { background: linear-gradient(135deg,#d6b47c,#f2d9a2,#d6b47c); color:#3e2d16; }

/* =====================================================
   9. FOOTER
===================================================== */

.footer {
  padding:1.6rem 0;
  text-align:center;
}

/* =====================================================
   10. REVEAL
===================================================== */

.reveal-up{
  opacity:0;
  transform:translateY(40px);
  transition:.9s cubic-bezier(.16,.84,.44,1);
}
.reveal-up.visible{
  opacity:1;
  transform:translateY(0);
}
``
/* =====================================================
   PREMIUM CONTACT BLOCK — EXACT STYLE LIKE THE IMAGE
===================================================== */

/* Title */
#contact .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.6rem;
  color: #2a1d0f;
  letter-spacing: -0.2px;
  text-shadow:
     0 0 9px rgba(255,230,180,0.55),
     0 0 2px rgba(0,0,0,0.15);
}

/* Card container exactly like screenshot */
.contact-card {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 2.8rem 2.2rem;

  background: #fffdf8;
  border-radius: 32px;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    0 5px 18px rgba(180,150,100,0.20);

  text-align: center;
}

/* Text lines */
.contact-card p {
  font-size: 1.08rem;
  color: #2e1f10;
  margin: 0.45rem 0;
}

.contact-card strong {
  font-weight: 700;
  color: #2d1e0f;
}

/* CTA container */
#contact .contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* CTA BUTTON BASE STYLE */
#contact .cta-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  min-width: 150px;

  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;

  color: #fff;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12),
    0 3px 8px rgba(255,220,160,0.25);

  transition: 0.35s;
}

/* Hover effect */
#contact .cta-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.18),
    0 0 12px rgba(255,230,180,0.65);
}

/* WhatsApp */
#contact .cta-btn.whatsapp {
  background: linear-gradient(135deg, #24d165, #17a94c);
}

/* Instagram */
#contact .cta-btn.instagram {
  background: linear-gradient(135deg, #e1306c, #b31e52);
}

/* Email */
#contact .cta-btn.email {
  background: linear-gradient(135deg, #444, #222);
}

/* Premium AI Button */
#contact .cta-btn.premium {
  background: linear-gradient(135deg, #d7b57c, #f1dcae, #d7b57c);
  color: #3e2a11;
  font-size: 1.05rem;
  font-weight: 700;

  margin-top: 1rem;
  min-width: 260px;
  padding: 1rem 1.8rem;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.12),
    0 0 18px rgba(255,220,160,0.45);
}

/* Footer spacing fix */
.footer {
  margin-top: 2rem;
  text-align: center;
}
/* ✅ Make the nav logo 2× bigger (Premium Safe Scaling) */
.brand-logo {
  height: 140px !important;   /* vorher 70px → jetzt doppelt */
  width: auto;
  transition: height .3s ease;
}

/* ✅ Scrolled header gets a slightly smaller logo (for elegance) */
.top-nav.scrolled .brand-logo {
  height: 110px !important;
}

/* ✅ Mobile Optimization: reduce only on very small screens */
@media (max-width: 860px) {
  .brand-logo {
    height: 90px !important;  /* still bigger than before */
  }
}

@media (max-width: 520px) {
  .brand-logo {
    height: 70px !important;  /* prevents overflow on tiny phones */
  }
}
/* =====================================================
   MOBILE ULTRA PREMIUM — LUNE BEAUTY
===================================================== */

/* ✅ Mobile Layout Base */
@media (max-width: 860px) {

  body {
    background: linear-gradient(
      180deg,
      #FBF8F4 0%,
      #F7F1E7 40%,
      #F5EAD8 100%
    );
  }

  /* ✅ Navigation (bigger, premium, glass effect) */
  .top-nav {
    height: 100px !important;
    backdrop-filter: blur(18px) brightness(1.05);
    background: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(200,150,80,0.20);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .brand-logo {
    height: 95px !important;  /* big & luxurious */
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
  }

  .nav-toggle {
    width: 50px; 
    height: 50px;
    border-radius: 14px;
    box-shadow: 
      0 6px 16px rgba(0,0,0,0.12),
      0 0 12px rgba(255,220,160,0.45);
  }

  .nav-links {
    padding: 2.4rem 0;
    gap: 2rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(220,180,110,0.3);
    box-shadow: 0 30px 40px rgba(0,0,0,0.1);
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0.4rem 0;
  }

  /* ✅ HERO Mobile */
  .hero-logo {
    height: 220px !important;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.20));
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-sub {
    font-size: 1.2rem;
    opacity: 0.88;
  }

  /* ✅ Section Titles Mobile Gold Divider */
  .section-title {
    font-size: 2rem !important;
  }
  .section-title::after {
    width: 120px;
    height: 3px;
    margin-top: 1rem;
  }

  /* ✅ Services Mobile Premium Grid */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.8rem 1.2rem;
    border-radius: 26px;
    box-shadow:
      0 10px 30px rgba(0,0,0,0.1),
      0 4px 14px rgba(210,170,110,0.25);
  }

  .service-card img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .service-card:hover {
    transform: scale(1.03); /* SMALLER tilt on mobile */
  }

  /* ✅ Pricing Section Mobile */
  .acc.premium {
    padding: 1rem 1.2rem;
    border-radius: 20px;
    margin: 1rem 0;
  }

  details summary {
    font-size: 1.35rem;
  }

  .acc-list li {
    padding: 0.8rem 0;
    grid-template-columns: 1fr auto;
  }

  /* ✅ Contact Section Ultra Premium Mobile */
  #contact {
    padding: 5rem 1rem 6rem;
    border-radius: 26px;
  }

  .contact-card {
    width: 100%;
    padding: 2rem 1.4rem;
    border-radius: 26px;
    box-shadow:
      0 16px 38px rgba(0,0,0,0.12),
      0 6px 18px rgba(200,160,100,0.25);
  }

  .contact-card p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* ✅ CTA Buttons Mobile Premium */
  #contact .cta-btn {
    min-width: 100%;
    padding: 1rem 1rem;
    border-radius: 16px;
    font-size: 1.05rem;
    margin: 0.4rem 0;
  }

  #contact .cta-btn.premium {
    min-width: 100%;
    font-size: 1.2rem;
    border-radius: 18px;
  }

  /* ✅ Footer Mobile */
  .footer {
    padding: 2.2rem 0;
    font-size: 0.95rem;
    opacity: 0.8;
  }
}

/* =====================================================
   11. LUXURY SOFT SCROLL REVEAL (Mobile Optimized)
===================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all .9s cubic-bezier(.16,.84,.44,1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
``
/* Disable Skin AI + Staff */
.nav-links a.disabled {
  pointer-events: none !important;
  opacity: 0.45;
  cursor: default !important;
  text-decoration: none !important;
  color: #8d826f !important; /* leicht entsättigt */
}

/* ============================================
   PREMIUM MOBILE PRICING LAYOUT
   Lune Beauty – La Mer Style
============================================ */
@media (max-width: 860px) {

  /* Pricing accordion container */
  .acc.premium {
    padding: 1.4rem 1rem !important;
    border-radius: 20px !important;
  }

  /* Each pricing line */
  .acc-list li {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    gap: 1rem;
    padding: 1.2rem 0 !important;
  }

  /* LEFT SIDE : title + description */
  .acc-list li .service-left {
    flex: 1;
    text-align: left !important;
  }

  .acc-list li .service-left strong {
    font-size: 1.15rem;
    line-height: 1.35;
    display: block;
    margin-bottom: 0.35rem;
  }

  .acc-list li .service-left p {
    font-size: 0.98rem;
    opacity: 0.85;
    line-height: 1.45;
  }

  /* RIGHT SIDE : PRICE */
  .acc-list li .price {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #3b2c18 !important;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    min-width: 70px;
    text-align: right;
    white-space: nowrap;

    padding-top: 0.25rem;
  }

  /* Waxing Sub-Title */
  .acc-list h3.subline {
    font-size: 1.15rem !important;
    margin: 1.2rem 0 0.8rem;
    text-align: left !important;
  }
}
``
  text-decoration: none !important;
  color: #8d826f !important;
}

/* Remove gold hover */
.nav-links a.disabled::after {
  display: none !important;
}

/* ===============================
   LUNE BEAUTY — PREMIUM TESTIMONIAL SLIDER
=============================== */

#testimonials .centered {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3b2c18;
  margin-bottom: 2rem;
}

/* Slider Layout */
.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 40px auto 60px auto;
}

/* Arrows */
.arrow-btn {
  background: linear-gradient(135deg, #e8d6b5, #c7a86c);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 22px;
  color: #3b2c18;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15), 0 0 12px rgba(210,180,120,0.4);
  transition: 0.25s ease;
}

.arrow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2), 0 0 18px rgba(230,200,150,0.55);
}

/* Wrapper */
.testimonial-wrapper {
  width: 750px;
  max-width: 92%;
  overflow: hidden;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}

/* Testimonial Card */
.testimonial-card {
  min-width: 100%;
  background: #ffffff;
  padding: 48px 38px;
  border-radius: 24px;
  box-shadow:
    0 15px 40px rgba(0,0,0,0.10),
    0 4px 18px rgba(210,175,120,0.22);
  text-align: center;

  opacity: 0;
  transform: scale(0.96);
  transition: 0.45s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card p {
  font-size: 1.25rem;
  line-height: 1.55;
  color: #3b2c18;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
}

.testimonial-card strong {
  font-size: 1.1rem;
  color: #6d5b3b;
  letter-spacing: 0.3px;
}

/* Form */
.testimonial-form {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d8c7a6;
  background: #fffdf7;
  font-size: 1rem;
  margin-bottom: 14px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.05);
}

.testimonial-form button {
  background: linear-gradient(135deg, #e8d6b5, #c7a86c);
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  width: 140px;
  color: #3b2c18;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

.testimonial-form button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
``
/* ======================================
   LUNE BEAUTY – ULTRA PREMIUM HYBRID SLIDER
====================================== */

#testimonials .centered {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
}

/* Slider row */
.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 50px auto;
}

/* Arrows */
.arrow-btn {
  background: linear-gradient(135deg, #e8d6b5, #c7a86c);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
  color: #3b2c18;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18), 0 0 16px rgba(210,180,120,0.45);
  transition: 0.3s;
}

/* Wrapper */
.testimonial-wrapper {
  width: 800px;
  max-width: 92%;
  overflow: hidden;
}

/* Track */
.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}

/* Slide Card */
.testimonial-card {
  min-width: 100%;
  background: #fff;
  border-radius: 26px;
  padding: 48px 42px;
  box-shadow: 
    0 18px 45px rgba(0,0,0,0.12), 
    0 6px 20px rgba(210,175,120,0.20);
  transform: scale(0.94);
  opacity: 0;
  transition: 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

/* TEXT */
.testimonial-card p {
  font-size: 1.35rem;
  line-height: 1.6;
  font-family: "Cormorant Garamond", serif;
  color: #3b2c18;
}

.testimonial-card strong {
  margin-top: 10px;
  display: block;
  font-size: 1.2rem;
  color: #7a6644;
}

/* IG BLOCK */
.ig-block {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.15),
    0 0 18px rgba(220,180,120,0.35);
}

.ig-widget {
  width: 100%;
  border: 0;
  overflow: hidden;
}
``