* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.index-page {
  background-color: #232C32;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px 40px 0px;
  background-color: #232C32;
  position: relative;
}

.spacer {
    flex: 1;
}

.logo-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: left;
  z-index: 1;
  padding-right: 60px;
  padding-left: 0;
  margin-top: -7px;
}

.logo-container.hide-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.logo {
  height: 150px;
  margin-left: 0;
  display: block;
}

.site-name {
  font-size: 24px;
  font-weight: bold;
}
.ich-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 32px 16px 40px 16px;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background-color: rgba(248,236,220,1);
}
.ich-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 18px;
  color:#222;
  font-weight: 700;
}
.ich-section > p {
  text-align: center;
  font-size: 1.18rem;
  margin-bottom: 36px;
  color:#222;
  line-height: 1.6;
}
.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  margin-right: 10px;
  font-weight: 500;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.25s;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
}

.menu a:hover, .menu a:focus {
  color: #222;
  background: #f8ecdc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transform: translateY(-2px) scale(1.07);
  outline: none;
}

.menu a:active {
  background: #e0e0e0;
  color: #111;
  transform: scale(0.97);
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.blur{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hintergrund.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: 0;
}

.hero .hero-intro-box {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.15);
  padding: 40px 48px;
  max-width: 480px;
  min-height: 260px;
  text-align: left;
  color: #f5f3f3;
  font-size: 1.18rem;
  line-height: 1.7;
  z-index: 2;
}

/* Kontakt Section */
.kontakt-section {
  background: rgba(248,236,220,1);
  color: #222;
  max-width: 500px;
  margin: 60px auto 60px auto;
  padding: 40px 32px 32px 32px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.kontakt-section h2 {
  margin-bottom: 24px;
  font-size: 2.2rem;
  text-align: center;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kontakt-form label {
  font-weight: 500;
  margin-bottom: 4px;
}

.kontakt-form input,
.kontakt-form textarea,
.kontakt-form select {
  padding: 10px 12px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
  color: #222;
  resize: vertical;
}

.kontakt-form button {
  margin-top: 10px;
  padding: 12px 0;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.kontakt-form button:hover {
  background: #444;
}

.kontakt-form small {
  display: block;
  margin-top: 4px;
  margin-bottom: 10px;
  color: #636e72;
  font-size: 0.95em;
}

/* Datenschutz-Checkbox */
.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 4px;
}

.privacy-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-checkbox label {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
}

.privacy-checkbox a {
  color: #007bff;
  text-decoration: underline;
}

.privacy-checkbox a:hover {
  color: #0056b3;
}

/* Datenschutz-Info */
.privacy-info {
  margin-top: 20px;
  padding: 15px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  color: #155724;
}

.privacy-info p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Fotografie Section */
.fotografie-section {
  max-width: 1100px;
  margin: 60px auto 60px auto;
  padding: 42px 16px 40px 16px;
  background: rgba(248,236,220,1);
  color: #222;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: visible;
}

.fotografie-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.fotografie-section > p {
  text-align: center;
  font-size: 1.18rem;
  margin-bottom: 36px;
}

.shooting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 10px;
  overflow: visible;
}

.shooting-card {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 18px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  min-width: 220px;
  max-width: 240px;
  margin: 10px auto 0 auto;
}

.shooting-img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

.shooting-card h3 {
  margin: 10px 0 6px 0;
  font-size: 1.18rem;
}

.shooting-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.shooting-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  background: #ffe082;
  padding: 6px 18px;
  border-radius: 8px;
  margin-top: auto;
}

.shooting-cta {
  text-align: center;
  margin: 32px auto 0 auto;
  font-size: 1.12rem;
  max-width: 600px;
}

.shooting-cta a {
  color: #222;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.shooting-cta a:hover {
  color: #bfa100;
}

.shooting-cta-inline {
  text-align: center;
  margin: 32px auto 0 auto;
  font-size: 1.12em;
  max-width: 600px;
}

/* Galerie Section */
.galerie-abschnitt {
  margin-bottom: 48px;
  overflow: visible;
}
.galerie-abschnitt h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  color: #222;
  text-align: left;
}
.galerie-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 15px 16px 10px 16px;
  overflow: visible;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 60px 0 60px;
}

.carousel-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 16px 0 16px;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-track .galerie-card {
  flex: 0 0 280px;
  min-width: 280px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn svg {
  color: #333;
  width: 18px;
  height: 18px;
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}
.galerie-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: transform 0.2s;
  background: #fff;
}
.galerie-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.galerie-card .galerie-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.galerie-card .galerie-title {
  opacity: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0px;
  letter-spacing: 1px;
  transition: opacity 0.3s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  pointer-events: none;
}
.galerie-card:hover img,
.galerie-card:focus img {
  filter: brightness(0.7);
}
.galerie-card:hover .galerie-overlay,
.galerie-card:focus .galerie-overlay {
  background: rgba(0,0,0,0.25);
}
.galerie-card:hover .galerie-title,
.galerie-card:focus .galerie-title {
  opacity: 1;
}
.galerie-card .galerie-desc {
  padding: 14px 14px 14px 14px;
  background: #fff;
  color: #222;
  font-size: 0.98rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.galerie-events-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;   
  margin-bottom: 40px;
}
.galerie-events-link a {
  display: inline-block;
  background: #ffe082;
  color: #222;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.13rem;
  transition: background 0.2s, color 0.2s;
}
.galerie-events-link a:hover {
  background: #ffd54f;
  color: #bfa100;
}

/* Events Section */
.events-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 32px 16px 40px 16px;
  background: rgba(248,236,220,1);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.events-section h2{
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: #222;
  text-align: center;
}

.event-folder-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.event-folder {
  background: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 24px 18px 18px 18px;
  width: 220px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-folder .folder-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  transform-origin: center center;
  display: block;
}

.event-folder:hover {
  transform: translateY(-8px) scale(1.04);
  background: #ffffff;
}

.event-folder:hover .folder-icon {
  transform: scale(1.12) rotate(-8deg);
}
.event-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 6px;
}
.event-desc {
  color: #636e72;
  font-size: 0.98em;
}

.footer {
  background: #222;
  color: #fff;
  padding: 24px 0;
  text-align: center;
  margin-top: 48px;
}
.footer-content a {
  color: #ffe082;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.footer-content a:hover {
  color: #ffd54f;
}

/* Hamburger-Button - standardmäßig versteckt */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  background-color: #fff;
  left: 4px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle::before {
  top: 8px;
  box-shadow: 0 12px 0 #fff;
}

.nav-toggle::after {
  bottom: 8px;
}

.nav-toggle.open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: none;
}

.nav-toggle.open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-toggle.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Menu standardmäßig sichtbar auf Desktop */
.menu {
  display: flex;
  align-items: center;
}

.ich-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.ich-header h2 {
  flex: 1;
  margin: 0 0 24px 0;
}

.ich-image-box {
  float: right;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 0 20px 32px; 
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Text um das Bild fließen lassen */
.ich-section p {
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Clearfix nach dem letzten Paragraph */
.ich-section p:last-child {
  clear: both;
}

/* Social Media Section */
.social-media-section {
  background: #232C32;
  padding: 40px 20px;
  text-align: center;
  margin-top: 0;
}

.social-media-section h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(248, 236, 220, 0.2);
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #F8ECDC;
  color: #232C32;
  transform: translateY(-3px);
  border: 2px solid #F8ECDC;
}

.footer-links {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(248, 236, 220, 0.3);
  text-align: center;
}

.footer-links a {
  color: #F8ECDC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-separator {
  color: rgba(248, 236, 220, 0.5);
  margin: 0 12px;
  font-size: 14px;
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.copyright p {
  color: rgba(248, 236, 220, 0.7);
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
  border: 2px solid #e6683c;
}

.social-icon.email:hover {
  background: #34495e;
  color: white;
  border: 2px solid #34495e;
}

/* Legal Container für Fotografie-Seite */
.legal-container-fotografie {
  max-width: 100%;
  margin: auto;
  padding: 30px 20px 20px 20px;
  overflow: visible;
}

/* Legal Container für Galerie-Seite */
.legal-container-galerie {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px 20px 20px;
  overflow: visible;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  border-bottom: 2px solid #F8ECDC;
}

.legal-header h2 {
  color: #232C32;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.legal-intro {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.legal-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #F8ECDC;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  margin-top: 10px;
}

.legal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.highlight-card {
  border-left-color: #4CAF50;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-card h3 {
  color: #232C32;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-number {
  background: #F8ECDC;
  color: #232C32;
  font-size: 1.2rem;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.subsection {
  margin-bottom: 25px;
  padding-top: 15px;
  overflow: visible;
}

.subsection h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  border-left: 3px solid #F8ECDC;
}

/* Spezielle Styling für Shooting-Bilder in Legal-Cards */
.legal-card .shooting-img {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.legal-card .shooting-img:hover {
  transform: scale(1.02);
}

.legal-card .shooting-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #8B4513;
  background: #F8ECDC;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
}

/* Moderner Style für Shooting-Cards im Grid-Layout */
.shooting-card.modern-card {
  background: #fff !important;
  border-radius: 15px;
  padding: 20px !important;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #F8ECDC;
  position: relative;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  height: 320px !important;
  width: 100% !important;
  max-width: 280px !important;
  min-width: auto !important;
  flex: 1 !important;
}

.shooting-card.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-left: 4px solid #D4B08A;
}

.shooting-card.modern-card.highlight-card {
  background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
  border-left: 4px solid #D4B08A;
}

.shooting-card.modern-card h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 15px 0 10px 0;
  font-weight: 600;
}

.shooting-card.modern-card p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.shooting-card.modern-card .shooting-price {
  background: #F8ECDC;
  color: #8B4513;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* Moderner Style für Galerie-Cards */
.galerie-card.modern-galerie-card {
  border-left: 4px solid #F8ECDC;
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.galerie-card.modern-galerie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-left: 4px solid #D4B08A;
}

.galerie-abschnitt h3 {
  color: #333;
  font-size: 1.5rem;
  margin: 30px 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.galerie-abschnitt.highlight-card {
  background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
}

.galerie-desc {
  color: #666;
  padding: 15px;
  background: rgba(255,255,255,0.95);
  border-radius: 0 0 10px 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Spezielle Hervorhebung für Event-Karten */
.galerie-card.event-highlight {
  border-left: 4px solid #D4B08A !important;
  position: relative;
}

.galerie-card.event-highlight::before {
  content: "🔥";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #F8ECDC;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.galerie-card.event-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.contact-card {
  background: linear-gradient(135deg, #F8ECDC 0%, #f0e6d2 100%);
  border-radius: 12px;
  padding: 25px;
  margin: 15px 0;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.contact-details {
  padding: 15px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
}

.rights-list {
  list-style: none;
  padding: 0;
}

.rights-list li {
  background: #f8f9fa;
  margin: 12px 0;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #4CAF50;
  transition: background 0.3s ease;
}

.rights-list li:hover {
  background: #e9ecef;
}

.legal-footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 2px solid #F8ECDC;
}

.contact-note {
  margin-top: 15px;
  font-size: 1.1rem;
}

.contact-note a {
  color: #232C32;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #F8ECDC;
  transition: border-color 0.3s ease;
}

.contact-note a:hover {
  border-bottom-color: #232C32;
}

/* About Me Modern Design */
.about-me-card {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%) !important;
  border-left: 2px solid #D4B08A !important;
  padding: 40px !important;
}

.about-me-layout {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
  align-items: start;
}

.about-me-image {
  position: sticky;
  top: 100px;
}

.image-frame {
  background: linear-gradient(135deg, #F8ECDC 0%, #e8dcc0 100%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 600px;
}

.image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.image-frame .portrait-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.about-me-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.text-block {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #F8ECDC;
  transition: all 0.3s ease;
  position: relative;
}

.text-block:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  border-left-color: #D4B08A;
}

.text-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.text-block h3 {
  color: #232C32;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.text-block p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.inline-link {
  color: #D4B08A;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #F8ECDC;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.inline-link:hover {
  color: #232C32;
  border-bottom-color: #D4B08A;
}
/* ====================================
   BEFORE/AFTER SLIDER
   ==================================== */

.before-after-section-wrapper {
  max-width: 1100px;
  margin: 60px auto 60px auto;
  padding: 32px 16px 40px 16px;
  background: rgba(248,236,220,1);
  color: #222;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.before-after-section {
  width: 100%;
}

.before-after-section h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 36px;
  font-weight: 700;
}

.before-after-container {
  display: flex;
  justify-content: center;
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.before-after-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.before-img {
  position: relative;
  display: block;
}

.before-after-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.after-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 5;
}

.before-after-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #f8ecdc;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #222;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.arrow-left {
  left: -62px;
}

.arrow-right {
  right: -62px;
}

.before-after-handle:hover .arrow-left,
.before-after-handle:hover .arrow-right {
  background: #444;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.before-label,
.after-label {
  position: absolute;
  bottom: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
  background: rgba(248, 236, 220, 0.96);
  padding: 8px 14px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

/* ====================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ==================================== */

/* ---- MOBILE DEVICES (max-width: 768px) ---- */
@media (max-width: 768px) {
  
  /* Hamburger Button anzeigen */
  .nav-toggle {
    display: flex !important;
  }

  /* Menu verstecken und als Dropdown-Menü gestalten */
  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #232C32;
    padding: 20px 15px 24px 15px;
    width: 100%;
    gap: 8px;
    z-index: 2000;
    border-top: 1px solid rgba(248, 236, 220, 0.2);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .menu.open {
    display: flex;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    margin: 0;
    margin-left: 0;
    padding: 12px 15px;
    display: block;
    text-align: left;
    border-radius: 6px;
    font-size: 0.95rem;
  }

  /* Anpassungen für Navbar */
  .top-bar {
    padding: 24px 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    min-height: 96px;
    z-index: 1500;
  }

  .logo-container {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: auto;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    z-index: 1002;
  }

  .logo {
    height: 110px;
    margin-left: 0;
    display: block;
  }

  .hero .hero-intro-box {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 90%;
    width: 90%;
    padding: 20px 18px;
    margin: 20px auto;
    min-height: auto;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Content Sections */
  .ich-section,
  .fotografie-section,
  .kontakt-section,
  .events-section {
    margin: 40px 15px;
    padding: 20px 15px;
    border-radius: 12px;
  }

  .ich-section h2,
  .fotografie-section h2,
  .events-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .ich-section > p,
  .fotografie-section > p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .ich-image-box {
    float: none;
    margin: 0 auto 20px auto;
    width: 140px;
    height: 140px;
  }

  /* Shooting Cards */
  .shooting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .shooting-card {
    width: 100%;
    max-width: 360px;
    min-width: 260px;
    margin: 0 auto;
    min-height: 280px;
  }

  .shooting-img {
    max-width: 100%;
    height: 140px;
  }

  /* Kontakt Form */
  .kontakt-section {
    max-width: 85%;
    margin: 40px auto;
  }

  .kontakt-section h2 {
    font-size: 1.6rem;
  }

  .kontakt-form input,
  .kontakt-form textarea,
  .kontakt-form select {
    padding: 10px;
    font-size: 16px;
  }

  /* Galerie */
  .galerie-dashboard {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    padding: 0 10px;
  }

  .galerie-card img {
    height: 160px;
  }

  .galerie-card .galerie-desc {
    padding: 12px;
    min-height: 70px;
    font-size: 0.9rem;
  }

  /* Carousel: ensure full tiles on small screens without stretching */
  .carousel-container {
    padding: 15px 12px 0 12px;
  }

  .carousel-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
  }

  .carousel-track {
    gap: 16px;
    padding: 10px 0 0 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-y: visible;
  }

  .carousel-track .galerie-card {
    /* Do not stretch to full width; keep a pleasant max-width */
    flex: 0 0 clamp(240px, 88vw, 320px);
    min-width: clamp(240px, 88vw, 320px);
    scroll-snap-align: center;
  }

  /* Events */
  .event-folder-grid {
    flex-direction: column;
    gap: 15px;
  }

  .event-folder {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  /* Footer */
  .footer {
    padding: 20px 15px;
    margin-top: 30px;
  }

  .footer-content a {
    font-size: 0.95rem;
  }

  .footer-links a {
    font-size: 12px;
  }

  /* Legal Pages */
  .legal-container {
    padding: 15px;
  }

  .legal-card {
    padding: 20px 15px;
  }

  .legal-card h3 {
    font-size: 1.3rem;
  }

  /* About Me Layout */
  .about-me-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-me-image {
    position: relative;
    top: 0;
  }

  .image-frame {
    max-width: 100%;
    padding: 15px;
  }

  .text-block {
    padding: 20px 15px;
  }

  /* Smaller carousel arrows on mobile */
  .carousel-btn {
    width: 28px;
    height: 28px;
  }

  .carousel-btn svg {
    width: 14px;
    height: 14px;
  }

  .carousel-btn-prev { left: 4px; }
  .carousel-btn-next { right: 4px; }

  /* Hintergrundbild für mobile optimieren */
  .blur {
    background-size: cover;
    background-position: center center;
    filter: blur(2px);
  }

  .hero {
    height: 75vh;
    overflow: visible;
  }

}

/* ---- SEHR KLEINE HANDYS (max-width: 480px) ---- */
@media (max-width: 480px) {
  
  .hero .hero-intro-box {
    max-width: 95%;
    width: 95%;
    padding: 16px 14px;
    margin: 15px auto;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero {
    height: 70vh;
  }
}

/* ---- EXTRA KLEINE HANDYS (max-width: 360px) ---- */
@media (max-width: 360px) {
  
  .hero .hero-intro-box {
    max-width: 96%;
    width: 96%;
    padding: 14px 12px;
    margin: 12px auto;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .hero {
    height: 65vh;
  }

  .logo {
    height: 90px;
  }

  .top-bar {
    min-height: 80px;
  }
}