/* ======================
   EXPERIENCES PAGE STYLING - NEWS DESIGN STYLE
   ====================== */

/* SERVICE HEADER */
.service-header {
  text-align: center;
  padding: 4rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
}

.service-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
}

.service-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* SERVICE CARD */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-bild {
  transform: scale(1.05);
}

/* CARD CONTENT */
.service-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.75rem;
  text-align: center;
}

.service-card-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.75rem;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.service-card-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  font-weight: 300;
  flex-grow: 1;
}

/* SERVICE BUTTON - Pillenform */
.service-button {
  display: inline-block;
  margin-top: auto;
  padding: 0.65rem 1.5rem;
  background-color: #fff;
  color: #000;
  border: 1.5px solid #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  text-align: center;
  align-self: center;
}

.service-button:hover {
  background-color: #000;
  color: #fff;
  transform: translateX(4px);
}

/* ANIMATION ON LOAD */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(n+5) { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-header {
    padding: 3rem 1.5rem 2rem;
  }

  .service-header h2 {
    font-size: 2rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-content {
    padding: 1.5rem;
  }

  .service-card-content h3 {
    font-size: 1.2rem;
  }

  .service-card-content p {
    font-size: 0.95rem;
  }

  .service-button {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ======================
   HERO SECTION - CONSISTENT WITH ABOUT PAGE
   ====================== */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 500px;
  max-height: 650px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 3rem;
  border-radius: 0;
  max-width: 800px;
  width: 85%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.hero-overlay h1 {
  font-size: 2.8rem;
  letter-spacing: 0;
  margin: 0 0 1.2rem 0;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.hero-overlay > p {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.hero-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-details span:not(:nth-child(3n+2)) {
  white-space: nowrap;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    height: 55vh;
    min-height: 450px;
    max-height: 500px;
  }
  
  .hero-overlay {
    padding: 2rem 1.8rem;
    width: 85%;
  }
  
  .hero-overlay h1 {
    font-size: 2rem;
  }
  
  .hero-overlay > p {
    font-size: 1rem;
  }
  
  .hero-details {
    font-size: 0.9rem;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 400px;
    max-height: 450px;
  }
  
  .hero-overlay {
    padding: 1.5rem 1.3rem;
    width: 80%;
  }
  
  .hero-overlay h1 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  
  .hero-overlay > p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .hero-details {
    font-size: 0.85rem;
    gap: 0.6rem;
  }
}

/* ======================
   EXPERIENCE SECTIONS
   ====================== */
.experience-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.experience-section.alt-bg {
  background-color: #fafafa;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.experience-image {
  width: 100%;
}

.experience-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.experience-text h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

.experience-text h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  margin: 2rem 0 1rem;
  letter-spacing: 0;
}

.experience-text > p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1.5rem;
  font-weight: 300;
}

.experience-text p.highlight {
  font-style: italic;
  color: #555;
  margin-top: 2rem;
  padding: 1.2rem;
  background: #f9f9f9;
  border-left: 3px solid #000;
}

.experience-text ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.experience-text li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-weight: 300;
}

.experience-text .text-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  font-weight: 400;
  transition: opacity 0.2s;
}

.experience-text .text-link:hover {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .experience-section {
    padding: 3rem 2rem;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .experience-text h2 {
    font-size: 1.75rem;
  }
  
  .experience-text h3 {
    font-size: 1.15rem;
  }
  
  .experience-text > p,
  .experience-text li {
    font-size: 1rem;
  }
}

/* ======================
   KEEPSAKE SECTION
   ====================== */
.keepsake-section {
  padding: 5rem 2rem;
  background-color: #fafafa;
}

.keepsake-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.keepsake-text h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.keepsake-text > p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 2.5rem;
  font-weight: 300;
}

.keepsake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.keepsake-detail h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.5rem;
}

.keepsake-detail p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.keepsake-detail .text-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  font-weight: 400;
  transition: opacity 0.2s;
}

.keepsake-detail .text-link:hover {
  opacity: 0.6;
}

.keepsake-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .keepsake-section {
    padding: 4rem 2rem;
  }
  
  .keepsake-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .keepsake-text h2 {
    font-size: 1.75rem;
  }
  
  .keepsake-text > p,
  .keepsake-detail p {
    font-size: 1rem;
  }
}

/* ======================
   PRACTICAL INFO
   ====================== */
.practical-info {
  padding: 5rem 2rem;
  background-color: #fff;
}

.practical-content {
  max-width: 1100px;
  margin: 0 auto;
}

.practical-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 3rem;
  letter-spacing: 0;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  margin-bottom: 3rem;
}

.info-box h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.8rem;
  letter-spacing: 0;
}

.info-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

.info-box a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: opacity 0.2s;
}

.info-box a:hover {
  opacity: 0.6;
}

.bonus-info {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: #fafafa;
}

.bonus-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1.2rem;
}

.bonus-info ul {
  margin: 0;
  padding-left: 1.2rem;
}

.bonus-info li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-weight: 300;
}

.bonus-info li:last-child {
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid #000;
}

.cta-button:hover {
  background: white;
  color: #000;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  font-weight: 300;
}

.cta-note a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: opacity 0.2s;
}

.cta-note a:hover {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .practical-info {
    padding: 4rem 2rem;
  }
  
  .practical-content h2 {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-box h3 {
    font-size: 1.2rem;
  }
  
  .info-box p,
  .bonus-info li {
    font-size: 1rem;
  }
  
  .bonus-info {
    padding: 1.5rem 1.8rem;
  }
}

/* ======================
   STEPS GRID for Paint To Go
   ====================== */
.experience-content-center {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.experience-content-center h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}

.step {
  position: relative;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

/* Schwarzer Balken - NUR auf Desktop */
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #666 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #f0f0f0;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: all 0.3s ease; /* Rotation nur auf Desktop */
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.8rem;
}

.step p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
  text-align: justify;
}

/* Mobile Navigation - Hidden on Desktop */
.steps-prev, .steps-next {
  display: none;
}

.steps-indicators {
  display: none;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .experience-content-center h2 {
    font-size: 2rem;
  }
}


/* ======================
   MOBILE SLIDESHOW - Steps
   ====================== */
@media (max-width: 768px) {
  .experience-content-center {
    padding-bottom: 0;
  }

  .steps-grid {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 2rem auto 0;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
  }
  
  .steps-grid:active {
    cursor: grabbing;
  }

  .step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 4rem 1.5rem 2rem;
    min-height: 350px;
    overflow: visible;
    border: none !important; /* WICHTIG: Kein Border auf Mobile */
  }

  /* WICHTIG: Schwarzen Balken auf Mobile entfernen */
  .step::before {
    display: none !important;
  }

  /* WICHTIG: Hover-Effekte auf Mobile deaktivieren */
  .step:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Gleicher Shadow wie normal */
    border: none !important;
  }

  .step:hover .step-number {
    transform: none !important;
  }

  .step.active {
    display: block;
    opacity: 1;
  }

  /* Nummer absolut positioniert - KEINE Animation */
  .step-number {
    position: absolute;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    top: 1.2rem;
    left: 1.2rem;
    margin-bottom: 0;
    transition: none !important;
  }

  /* Pfeile komplett entfernt */
  .steps-prev, 
  .steps-next {
    display: none !important;
  }

  /* Media (Icon) Bereich */
  .step-media {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }

  .step-media img {
    width: 120px;
    height: 120px;
  }

  /* Überschrift und Text */
  .step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .step-body p {
    font-size: 1rem;
  }

  /* Indicators */
  .steps-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
  }

  .step-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .step-indicator:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }

  .step-indicator.active {
    background-color: #000;
    width: 28px;
    border-radius: 5px;
  }
}

@media (max-width: 600px) {
  .experience-content-center h2 {
    font-size: 1.8rem;
  }

  .steps-grid {
    max-width: 350px;
  }

  .step {
    padding: 4rem 1.3rem 2rem;
    min-height: 330px;
    border: none !important; /* WICHTIG */
  }
  
  .step:hover {
    border: none !important; /* WICHTIG */
  }
  
  .step-number {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    top: 1.2rem;
    left: 1.2rem;
    transition: none !important;
  }
  
  .steps-indicators {
    margin-top: 1.5rem;
  }
}
/* ======================
   BREADCRUMB ONLY - Shop Style
   ====================== */

.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  padding-top: 2rem;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #000;
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: #ccc;
}

/* Mobile Responsive - Verbessert */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.75rem;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.6;
  }
  
  .breadcrumb span {
    margin: 0 0.25rem;
  }
  
  .breadcrumb a,
  .breadcrumb span:not(.breadcrumb span:last-child) {
    display: inline;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .breadcrumb span {
    margin: 0 0.2rem;
  }
}