:root{
  --bg: #F7DBD9; /* zart-lachsrosa Hintergrund */
  --accent: #A77B47;
  --text: #4B2E1A;
  --muted: rgba(75,46,26,0.75);
  --max-width: 980px;
  
  color-scheme: light;
}

html {
  color-scheme: light;
  background-color: var(--bg);
}


*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.wrapper{
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:48px 22px;
}

.card{
  width:100%;
  max-width:var(--max-width);
  background: var(--bg);
  padding:56px;
  border-radius:14px;
  text-align:center;
  position:relative;
  box-shadow: 0 6px 30px rgba(75,46,26,0.06);
  z-index:1;
}

/* Hintergrund-Deko */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><g fill='none' stroke='%23A77B47' stroke-width='2' opacity='0.06'><path d='M70 720 C 220 520 120 320 320 220' /><path d='M730 80 C 580 280 680 480 480 700' /></g></svg>");
  background-repeat:no-repeat;
  background-position:left bottom, right top;
  background-size:50% 50%;
  border-radius:14px;
  z-index:-1;
}

/* Logo */
.logo img{
  max-width:300px;
  height:auto;
  display:inline-block;
  margin-bottom:22px;
}

h1{
  font-family:'Playfair Display', serif;
  font-size:26px;
  margin:6px 0 6px;
  color:var(--accent);
  letter-spacing:0.2px;
  font-weight:600;
  text-align:center;
}

h2{
  font-family:'Playfair Display', serif;
  font-size:22px;
  margin:6px 0 6px;
  color:var(--accent);
  letter-spacing:0.2px;
  font-weight:600;
  text-align:center;
}


h3{
  font-family:'Playfair Display', serif;
  font-size:20px;
  margin:6px 0 6px;
  color:var(--accent);
  letter-spacing:0.2px;
  font-weight:600;
  text-align:center;
}


h4 {
  font-family:'Playfair Display', serif;
  font-size:18px;          /* etwas kleiner als h3 (20px) */
  margin:6px 0 2px;        /* oben mehr Abstand, unten sehr wenig */
  color:var(--accent);
  letter-spacing:0.2px;
  font-weight:500;
  text-align:center;
}

.lead{
  font-size:18px;
  margin:0 auto 8px;
  max-width:760px;
  color:var(--muted);
}

.contact{
  margin-top:20px;
  font-size:16px;
}

.contact a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

footer.small{
  margin-top:40px;
  font-size:13px;
  color:rgba(75,46,26,0.6);
}


/* Hero */
.hero-wrap{
  margin:18px 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-wrap img{
  width:720px;
  max-width:100%;
  height:auto;
  border-radius:12px;
  display:block;
  box-shadow:0 8px 30px rgba(75,46,26,0.08);
}

/* wir.png */
.small-img-wrap{
  margin:18px 0;
  display:flex;
  justify-content:center;
  align-items:center;
}

.small-img-wrap img{
  width:25vw;
  max-width:180px;
  height:auto;
  border-radius:8px;
  cursor:pointer;
  display:block;
}

/* Mobile */
@media (max-width:480px){

  .wrapper{ padding:28px 12px; }

  h1{
    font-size:22px;
    line-height:1.2;
  }

  .logo img{ max-width:220px; }

  .card{
    padding:24px 12px;
    border-radius:0;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .gallery img{ height:90px; }

  .hero-wrap{
    margin-left:50%;
    transform:translateX(-50%);
    width:100vw;
    padding:0;
  }

  .hero-wrap img{
    width:100vw;
    max-width:none;
    border-radius:0;
  }
}

@media (max-width:980px){
  .card{ padding:40px; }
  h1{ font-size:34px; }
  .gallery{
    grid-template-columns:repeat(2,1fr);
  }
  .gallery img{ height:130px; }
}




/* =========================
   HAUPTMENÜ
========================= */



/* Abstand wegen fixem Menü */
body {
  padding-top: 80px;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ======================
   HAMBURGER MENÜ
====================== */

.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;          /* Höhe der Menüleiste */
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Hamburger Icon */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  color: var(--accent);
}

/* Menü versteckt */
.nav-links {
  position: absolute;
  top: 70px;
  right: 20px;
  background: white;
  list-style: none;
  padding: 20px;
  margin: 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  border-radius: 10px;

  display: none;
  flex-direction: column;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* sichtbar wenn aktiv */
.nav-links.active {
  display: flex;
}


[id] {
  scroll-margin-top: 100px;
}

/* aktiver Menüpunkt */

.nav-links a.active {
  background: #f3e4e2;
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 6px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* ======================
   Rahmen für TABELLEN
====================== */

.price-table {
  max-width: 750 px;
  margin: 40px auto;
  padding: 30px 10px;
  background: #fdeeee; /* etwas heller als Seitenhintergrund */
  border: 2px solid white;
  border-radius: 16px;
  text-align: center;
}


/* ======================
   PREISTABELLE
====================== */


.price-table h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--accent);
}

.price-table table {
  width: 100%;
  table-layout: fixed;
}

.price-table td,
.price-table th {
  padding: 5px;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
}

.price-table th span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
}

.price-table td:not(:first-child) {
  font-size: 15px;
  font-weight: 400;
}

.price-table td:first-child {
  font-size: 11px;
  text-align: left;
}

.price-table th span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
}

.price-table td span {
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
}

.price-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}




/* ======================
   WunschfarbenTABELLE
====================== */


.color-table {
  width: 100%;
  border-collapse: collapse;
}

.color-table td {
  padding: 12px 12px;
  vertical-align: middle;
}

.color-table td:first-child {
  text-align: left;
}

.color-table td:last-child {
  text-align: right;
}

.color-table h4 {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 8px 0 4px;
}

/* Farbfeld links */
.color-box {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  margin: 0 ;
}

.color-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding-top: 12px;
}






/* Farben */
.weiss { background-color: #ffffff; }

.lichtgrau { background-color: #d9d9d9; }

.hellbeige { background-color: #f1e4d3; }

.schwarz { background-color: #000000; }


.messing { background-color: #C59042; }

.gold { background-color: #d4af37; }

.kupfer { background-color: #97564A; }

.silber { background-color: #c0c0c0; }

.rosegold { background-color: #DEA194; }


.elfenbein { background-color: #F4EFE6; }

.tiefschiefer { background-color: #2B2F36; }




.gallery-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  
}

.gallery-large img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


.gallery-large {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

.gallery-large img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* leichter Hover Effekt auf Desktop */
.gallery-large img:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* Mobile Optimierung */
@media (max-width: 768px) {

  .gallery-large {
    gap: 18px;
  }

  .gallery-large img {
    border-radius: 10px;
  }

}


@media (max-width: 768px){

  .gallery-large img{
    width: calc(100% + 40px);
    margin-left: -20px;
  }

}

.ich-lightbox{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.85);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.ich-lightbox[hidden]{
  display:none;
}

.ich-large{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}

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

footer.small {
  margin-bottom: 5mm;
}

#bookingModal,
.ich-lightbox,
script {
  display: none;
}

.makingof-videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}




.calendly-btn {
  display: inline-block;
  background: linear-gradient(to bottom, #9a7a4b, #8b6b3f);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  box-shadow: 0 4px 0 #6f542f, 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
}

.calendly-btn:hover {
  filter: brightness(1.05);
}

.calendly-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #6f542f, 0 3px 8px rgba(0, 0, 0, 0.18);
}




footer.small {
  margin-bottom: 5mm;
}





.makingof-videos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

  .makingof-grid {
    grid-template-columns: 1fr;
  }




html {
  color-scheme: light;
}


.nav-links a.highlight {
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent);
}

 



.bildtext {
  font-size: 0.85em;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}




.swipe-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 30px 0;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 14px;
}



/* Bildtitel im Bild */
.caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 14px;
  background: rgba(0,0,0,0.4);
  padding: 6px 0;
  border-radius: 0 0 14px 14px;
}

/* Punkte */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  display: block;
}

.dots span.active {
  background: var(--accent);
} 

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  display: block;
}


.dots span.active {
  background: var(--accent);
}



.swipe-gallery {
  touch-action: pan-y;
}


.map-container {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
}





-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}



/* Alle Standard-Links wie Email einfärben */
main a {
  color: var(--accent);
  text-decoration: none;
}


/* ALLE Links im Inhalt erzwingen */
main a:not(.calendly-btn) {
  color: var(--accent) !important;
  text-decoration: none;
}btn) {
  color: var(--accent) !important;
  text-decoration: none;
}