* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.blog-section {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5vw;
  padding: 5vh 8vw;
  flex-wrap: wrap;
}
.blog-left {
  flex: 1;
  min-width: 280px;
  margin-top: 50px;
}
.image-placeholder-blog {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #d3d3d3;
  background-image: url("AR.png");
  background-size: cover; /* Bild skalieren, damit es komplett reinpasst */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
}
.blog-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 50px;
}
.blog-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}
.blog-right h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.blog-right p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.blog-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-form label {
  font-weight: bold;
}
.blog-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: white;
  font-family: inherit;
}
.blog-form input::placeholder {
  color: #ccc;
}
.blog-button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  font-family: "Montserrat", sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}
.blog-button:hover {
  background-color: white;
  color: #723737;
}

.footer {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5vh 8vw;
  gap: 3rem;
  font-size: 1rem;
}
.footer-service {
  width: 1200px;
  margin-top: 50px;
}
.footer-social {
  margin-top: 50px;
  margin-right: -100px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: #dddddd;
}
.footer-service p {
  margin: 0.2rem 0;
  font-size: 0.7rem;
}
.footer-address ul {
  list-style: none;
  margin-left: 1rem;
  padding: 0;
}
.footer-social .icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-social img {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
}
@media (max-width: 1024px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-service,
  .footer-social {
    width: 100%;
    margin-top: 2rem;
    margin-right: 0;
  }

  .footer-social .icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 4vh 5vw;
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.95rem;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }

  .footer-service p {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }
}

.hero-section-fingerverlangerung {
  position: relative;
  height: 110vh;
  width: 100%;
  background: url('Duo\ Fingerextentsion.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}
.scroll-down {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.scroll-down .arrow {
  display: block;
  width: 28px;
  height: 28px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(-45deg) translateY(0); }
  40% { transform: rotate(-45deg) translateY(8px); }
  60% { transform: rotate(-45deg) translateY(4px); }
}
/* ===============================
   📌 FEINJUSTIERUNG (KLEINER & ZENTRAL)
   =============================== */
@media (max-width: 768px) {

  .hero-content {
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    line-height: 1.35;
  }

  .hero-content p {
    font-size: 0.78rem;
    line-height: 1.55;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 1.8rem;
    color: rgba(255,255,255,0.75);
  }
}

/* 🍎 Extra kleine Geräte (iPhone SE etc.) */
@media (max-width: 430px) {

  .hero-content {
    max-width: 280px;
  }

  .hero-content h1 {
    font-size: 1.15rem;
    letter-spacing: 0.03em;
  }

  .hero-content p {
    font-size: 0.72rem;
    line-height: 1.5;
    max-width: 260px;
  }
}



.concept-section {
  background-color: #fff;
  color: #111;
  padding: 10rem 6vw;
}
.concept-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.concept-content {
  max-width: 600px;
}
.concept-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.concept-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
}
.concept-side {
  text-align: center;
}
.concept-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}
.concept-quote span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #999;
}
.concept-image {
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}
/* Responsive */
@media (max-width: 992px) {
  .concept-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .concept-content {
    margin: 0 auto;
  }

  .concept-content h2 {
    font-size: 1.6rem;
  }

  .concept-content p {
    font-size: 1rem;
  }

  .concept-image {
    max-width: 340px;
  }
}

/* === SPM PROCESS SECTION === */
.spm-process-section {
  background-color: #000;
  color: #fff;
  padding: 10rem 6vw;
  text-align: center;
}
.spm-process-intro {
  max-width: 800px;
  margin: 0 auto 6rem auto;
}
.spm-process-intro h2 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.spm-process-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cfcfcf;
}
/* === GRID === */
.spm-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}
.spm-process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  transition: all 0.5s ease;
}
.spm-process-icon {
  font-size: 2rem;
  color: #999;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}
.spm-process-step:hover .spm-process-icon {
  color: #fff;
  transform: scale(1.15);
}
.spm-process-step h3 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.spm-process-step p {
  font-size: 1rem;
  color: #b5b5b5;
  line-height: 1.7;
}
/* === FADE-IN EFFECT === */
.spm-process-step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease forwards;
}
.spm-process-step:nth-child(1) { animation-delay: 0.2s; }
.spm-process-step:nth-child(2) { animation-delay: 0.4s; }
.spm-process-step:nth-child(3) { animation-delay: 0.6s; }
.spm-process-step:nth-child(4) { animation-delay: 0.8s; }
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .spm-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .spm-process-step {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .spm-process-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .spm-process-intro h2 {
    font-size: 1.8rem;
  }
}

/* === SPM JOURNEY GALLERY === */
.spm-journey-gallery {
  background-color: #000;
  color: #fff;
  padding: 10rem 6vw;
}
.spm-journey-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 8rem auto;
}
.spm-journey-intro h2 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.spm-journey-intro p {
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.8;
}
/* === GRID === */
.spm-journey-grid {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.spm-journey-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.spm-journey-item.reverse {
  flex-direction: row-reverse;
}
.journey-image img {
  width: 480px;
  height: 640px;
  object-fit: cover;
  border-radius: 1.6rem;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.06);
  transition: all 1.2s ease;
  filter: grayscale(100%) brightness(70%);
}
.journey-image img:hover {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.03);
  box-shadow: 0 0 90px rgba(255, 255, 255, 0.1);
}
.journey-text {
  max-width: 420px;
}
.journey-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #bdbdbd;
  font-weight: 300;
}
/* === ANIMATION === */
.spm-journey-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.6s ease forwards;
}
.spm-journey-item:nth-child(1) { animation-delay: 0.2s; }
.spm-journey-item:nth-child(2) { animation-delay: 0.4s; }
.spm-journey-item:nth-child(3) { animation-delay: 0.6s; }
.spm-journey-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .spm-journey-item {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .journey-image img {
    width: 100%;
    height: auto;
    max-width: 420px;
  }

  .journey-text {
    max-width: 100%;
  }
}

/* === SPM Fingerverlängerung Galerie === */
.spm-finger-extension-gallery {
  background-color: #000;
  color: #fff;
  padding: 8rem 6%;
  text-align: center;
}
.spm-finger-extension-gallery .gallery-header h2 {
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.spm-finger-extension-gallery .gallery-header p {
  color: #bdbdbd;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}
.spm-finger-extension-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  justify-items: center;
  align-items: start;
}
.spm-finger-extension-gallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.spm-finger-extension-gallery .gallery-item img {
  width: 100%;
  max-width: 350px;
  filter: brightness(0.9) contrast(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}
.spm-finger-extension-gallery .gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.1);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.12);
}
.spm-finger-extension-gallery .gallery-item p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
  color: #d0d0d0;
  margin: 0 auto;
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .spm-finger-extension-gallery .gallery-header h2 {
    font-size: 2.2rem;
  }
  .spm-finger-extension-gallery .gallery-item img {
    max-width: 100%;
  }
}

/* === SPM Medienpartner Section === */
.spm-media-partners {
  background-color: #fff;
  color: #000;
  padding: 8rem 6%;
  text-align: center;
}
.spm-media-partners h2 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.spm-media-partners p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.spm-media-partners .media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.spm-media-partners .media-logos a img {
  max-height: 120px;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.spm-media-partners .media-logos a img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(100%);
}
.spm-media-partners .media-cta-button {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.spm-media-partners .media-cta-button:hover {
  background-color: #000;
  color: #fff;
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .spm-media-partners h2 {
    font-size: 2.2rem;
  }

  .spm-media-partners .media-logos a img {
    max-height: 50px;
  }
}
