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

html {
  scroll-behavior: smooth;
}

body {
  background: #FAF9F7;
  color: #3F3F3F;
  font-family: "Poppins", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  width: 175px;
}

.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #3F3F3F;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.hero {
  min-height: 100vh;
  padding: 130px 6% 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 220px 220px 10px 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.hero-text {
  max-width: 560px;
}

.eyebrow {
  display: block;
  color: #C6B09B;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 18px;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(52px, 7vw, 90px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 22px;
}

.hero-text p,
.text {
  font-size: 17px;
  line-height: 1.9;
  color: #646464;
  margin-bottom: 34px;
}

.button {
  display: inline-block;
  background: #C6B09B;
  color: white;
  padding: 15px 34px;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.button:hover {
  background: #ad9580;
  transform: translateY(-2px);
}

.section {
  padding: 120px 6%;
  text-align: center;
}

.beige {
  background: #F1E8DF;
}

.cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  height: 230px;
  background: white;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.mail {
  color: #3F3F3F;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 1px solid #C6B09B;
}

footer {
  padding: 35px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 850px) {
  .header {
    flex-direction: column;
    gap: 16px;
  }

  .nav a {
    margin: 0 8px;
    font-size: 13px;
  }

  .logo {
    width: 150px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 170px;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
    margin: auto;
  }

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


.hero-image,
.hero-text {
  animation: fadeUp 1.2s ease forwards;
}

.hero-image {
  opacity: 0;
  animation-delay: 0.2s;
}

.hero-text {
  opacity: 0;
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0,0,0,0.16);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #C6B09B;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}
.image-card {
  position: relative;
  overflow: hidden;
  color: white;
  text-decoration: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.image-card span {
  position: absolute;
  z-index: 2;
}

.image-card:hover img {
  transform: scale(1.08);
}

.about-section {
  padding: 130px 6%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  background: #FAF9F7;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 10px 220px 220px 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.about-content {
  max-width: 720px;
}

.about-content p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #646464;
  margin-bottom: 22px;
}

.about-facts {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-facts div {
  background: #F1E8DF;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 14px;
}

@media (max-width: 850px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 90px 6%;
  }

  .about-image img {
    height: 480px;
    border-radius: 180px 180px 10px 10px;
  }

  .about-content {
    text-align: center;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

/* Kundenbewertungen */

.testimonials{

    padding:120px 8%;
    text-align:center;
    background:white;

}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;

}

.testimonial{

    background:#FAF9F7;
    padding:45px;
    border-radius:25px;
    text-align:left;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;

}

.testimonial:hover{

    transform:translateY(-8px);

}

.stars{

    color:#d8b26a;
    font-size:24px;
    margin-bottom:20px;

}

.testimonial p{

    line-height:1.9;
    color:#555;

}

.testimonial h4{

    margin-top:25px;
    font-weight:500;

}

@media(max-width:900px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
/* -------- Portfolio -------- */

.portfolio{

padding:140px 6%;

text-align:center;

background:white;

}

.portfolio-subtitle{

margin-top:20px;

margin-bottom:60px;

color:#666;

font-size:18px;

}

.gallery{

display:grid;

grid-template-columns:repeat(2,1fr);

grid-template-rows:500px 320px 420px;

gap:25px;

}

.gallery-large{

grid-column:1 / 3;

position:relative;

overflow:hidden;

border-radius:30px;

}

.gallery-small{

position:relative;

overflow:hidden;

border-radius:30px;

}

.gallery-wide{

grid-column:1 / 3;

position:relative;

overflow:hidden;

border-radius:30px;

}

.gallery img{

width:100%;

height:100%;

object-fit:cover;

transition:1s;

}

.overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:40px;

background:linear-gradient(to top,
rgba(0,0,0,.65),
transparent);

color:white;

text-align:left;

}

.overlay h3{

font-family:"Cormorant Garamond";

font-size:42px;

margin-bottom:8px;

}

.gallery div:hover img{

transform:scale(1.08);

}

@media(max-width:900px){

.gallery{

grid-template-columns:1fr;

grid-template-rows:auto;

}

.gallery-large,
.gallery-wide{

grid-column:auto;

height:420px;

}

.gallery-small{

height:320px;

}

}/* -------- Unterseiten -------- */

.subpage-hero {
  min-height: 80vh;
  padding: 170px 6% 90px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
}

.subpage-hero > div {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.subpage-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  margin-bottom: 25px;
}

.subpage-hero p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.family-hero {
  background-image: url("bilder/familie.jpg");
}

.family-process {
  padding: 120px 6%;
  text-align: center;
}

.process-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid div {
  background: white;
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.process-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 15px;
}

.process-grid p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: 70vh;
  }
}
/* -------- Familienseite Erweiterung -------- */

.family-gallery-section {
  padding: 120px 6%;
  text-align: center;
  background: white;
}

.family-gallery {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.family-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.family-gallery img:nth-child(3) {
  grid-column: 1 / 3;
  height: 480px;
}

.outfit-section {
  background: #FAF9F7;
}

.outfit-grid {
  margin: 45px auto 35px;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.outfit-card {
  background: #F1E8DF;
  padding: 24px 18px;
  border-radius: 22px;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.04);
}

.small-note {
  font-size: 15px;
}

.faq-section {
  padding: 120px 6%;
  text-align: center;
  background: white;
}

.faq-list {
  max-width: 850px;
  margin: 50px auto 0;
  text-align: left;
}

.faq-list details {
  background: #FAF9F7;
  margin-bottom: 16px;
  padding: 22px 26px;
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
}

.faq-list p {
  margin-top: 15px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .family-gallery,
  .outfit-grid {
    grid-template-columns: 1fr;
  }

  .family-gallery img,
  .family-gallery img:nth-child(3) {
    grid-column: auto;
    height: 360px;
  }
}

/* -------- Warum Christina / Familienseite -------- */

.why-section {
  padding: 120px 6%;
  text-align: center;
  background: #FAF9F7;
}

.why-grid {
  max-width: 1000px;
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-grid div {
  background: white;
  padding: 28px 22px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  font-size: 15px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}/* -------- Lightbox -------- */

.family-gallery img {
  cursor: pointer;
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}


/* -------- Scroll Animationen -------- */

.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* -------- Footer -------- */

.site-footer {
  background: #3F3F3F;
  color: white;
  padding: 70px 6% 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 45px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-logo {
  width: 170px;
  background: white;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #ddd;
  line-height: 1.8;
  max-width: 340px;
}

.footer-links h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #C6B09B;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 55px;
  padding-top: 25px;
  text-align: center;
  color: #bbb;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}.portrait-hero {
  background-image: url("bilder/portrait.jpg");
}
.animal-hero {
  background-image: url("bilder/tier.jpg");
}
.wedding-hero {
  background-image: url("bilder/hochzeit.jpg");
}
.services-hero {
  background-image: url("bilder/startbild.jpg");
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  padding: 38px 28px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(0,0,0,0.10);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin-bottom: 16px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-card li {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
}

.service-card li::before {
  content: "✓ ";
  color: #C6B09B;
}

.service-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 20px;
  color: #3F3F3F;
}

.service-card a {
  color: #C6B09B;
  text-decoration: none;
  font-weight: 500;
}

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

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* -------- Bewertungen neu -------- */

.reviews-section {
  padding: 130px 6%;
  text-align: center;
  background: white;
}

.review-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.review-card {
  background: #FAF9F7;
  padding: 45px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.review-card p {
  color: #555;
  line-height: 1.9;
}

.review-card h4 {
  margin-top: 25px;
  font-weight: 500;
}

.stars {
  color: #d8b26a;
  font-size: 24px;
  margin-bottom: 20px;
}


/* -------- Kontaktbereich -------- */

.contact-section {
  padding: 130px 6%;
  background: #F1E8DF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-text p {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 30px;
}

.contact-direct a {
  display: block;
  color: #3F3F3F;
  text-decoration: none;
  margin-bottom: 12px;
  border-bottom: 1px solid #C6B09B;
  width: fit-content;
}

.contact-form {
  background: white;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
  font-size: 14px;
  color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background: #FAF9F7;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .review-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .review-card,
  .contact-form {
    padding: 32px;
  }

  .contact-direct a {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-text {
    text-align: center;
  }
}
/* ==========================================
   Kundengalerie
========================================== */

.customer-gallery{
    max-width:1200px;
    margin:80px auto;
    padding:0 25px;
}

.customer-intro{
    text-align:center;
    margin-bottom:60px;
}

.customer-intro h1{
    font-family:"Cormorant Garamond",serif;
    font-size:3rem;
    margin-bottom:20px;
    color:#4A4A4A;
}

.customer-intro p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:1.05rem;
}

.customer-images{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-bottom:80px;
}

.customer-images a{
    text-decoration:none;
    color:#4A4A4A;
    transition:.35s;
}

.customer-images img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.customer-images a:hover img{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.customer-images span{
    display:block;
    text-align:center;
    margin-top:15px;
    font-weight:500;
}

.customer-note{
    text-align:center;
    margin-bottom:100px;
}

.customer-note h2{
    font-family:"Cormorant Garamond",serif;
    font-size:2.3rem;
    margin-bottom:15px;
}

.customer-note p{
    color:#666;
    margin-bottom:35px;
}

@media(max-width:768px){

.customer-gallery{
    margin:40px auto;
}

.customer-intro h1{
    font-size:2.3rem;
}

.customer-images{
    grid-template-columns:1fr;
    gap:25px;
}

}
/* ==========================================
   Premium Kundengalerie
========================================== */

.premium-gallery {
  background: #FAF9F7;
}

.gallery-hero {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 25px;
  color: white;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.gallery-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1.05;
  margin-bottom: 25px;
}

.gallery-hero p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.premium-gallery-section {
  padding: 120px 6%;
  text-align: center;
  background: white;
}

.gallery-intro {
  max-width: 760px;
  margin: 20px auto 60px;
  color: #666;
  line-height: 1.8;
}

.premium-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.premium-image-card {
  background: #FAF9F7;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.premium-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.5s ease;
  display: block;
}

.premium-image-card:hover img {
  transform: scale(1.04);
}

.image-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.image-actions button,
.image-actions a {
  flex: 1;
  border: none;
  background: #F1E8DF;
  color: #3F3F3F;
  text-decoration: none;
  padding: 12px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
}

.image-actions button:hover,
.image-actions a:hover {
  background: #C6B09B;
  color: white;
}

.download-all {
  margin-top: 60px;
}

.favorites-section {
  padding: 110px 6%;
  text-align: center;
  background: #F1E8DF;
}

.favorites-section p {
  max-width: 700px;
  margin: 0 auto 35px;
  color: #666;
  line-height: 1.8;
}

#favorites-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 35px;
  padding: 0;
}

#favorites-list li {
  background: white;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 16px;
}

.premium-note {
  padding: 100px 6%;
  background: white;
}

.premium-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 30px;
}

.premium-lightbox.active {
  display: flex;
}

.premium-lightbox img {
  max-width: 92%;
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.premium-lightbox span {
  position: absolute;
  top: 25px;
  right: 40px;
  color: white;
  font-size: 48px;
  cursor: pointer;
}

@media (max-width: 950px) {
  .premium-image-grid {
    grid-template-columns: 1fr;
  }

  .premium-image-card img {
    height: 420px;
  }

  .image-actions {
    flex-direction: column;
  }
}/* ===== Premium Kundengalerie ===== */

.gallery-logo{
    width:220px;
    max-width:70%;
    display:block;
    margin:0 auto 35px;
}

.gallery-hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background-size:cover;
    background-position:center;
    position:relative;
}

.gallery-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.gallery-hero-content{
    position:relative;
    color:white;
    z-index:2;
    max-width:750px;
    padding:40px;
}

.premium-image-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.premium-image-card img{
    width:100%;
    border-radius:18px;
    cursor:pointer;
    transition:.3s;
}

.premium-image-card img:hover{
    transform:scale(1.03);
}

.image-actions{
    text-align:center;
    margin-top:15px;
}

.image-actions a{
    text-decoration:none;
    color:#555;
    font-weight:500;
}

.download-all{
    text-align:center;
    margin:70px 0;
}

.premium-lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.premium-lightbox.active{
    display:flex;
}

.premium-lightbox img{
    max-width:92%;
    max-height:92%;
    border-radius:12px;
}

.premium-lightbox span{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

/* ================================
   Mobiles Hamburger-Menü
================================ */

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .header {
    padding: 14px 22px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .logo {
    width: 95px !important;
    max-width: 95px !important;
  }

  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4A4A4A;
    cursor: pointer;
  }

  .nav {
    display: none !important;
  }

  .nav.nav-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: #F5F1EA;
    padding: 25px 20px;
    flex-direction: column !important;
    text-align: center;
    gap: 18px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 999;
  }
}