/* ===========================
   PAGE-SPECIFIC STYLES
   raumgestaltung.css
   m-parkinson.de
   =========================== */

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(245, 197, 24, 0.03) 40px,
    rgba(245, 197, 24, 0.03) 80px
  );
  pointer-events: none;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.hero p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #DDDDDD;
  position: relative;
}

.hero-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}

.hero-image-placeholder {
  background-color: #2C2C2C;
  border: 2px dashed #F5C518;
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 700px;
  color: #888888;
  font-style: italic;
  font-size: 0.9rem;
  position: relative;
}

/* INTRO SECTION */
.intro {
  background-color: #F9F9F9;
  border-bottom: 1px solid #E0E0E0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.intro-card {
  background-color: #FFFFFF;
  padding: 1.75rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #E0E0E0;
  border-top: 4px solid #F5C518;
  transition: box-shadow 0.3s;
}

.intro-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.intro-card svg {
  margin: 0 auto 1rem;
  display: block;
}

.intro-card h3 {
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.intro-card p {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

/* STEPS OVERVIEW */
.steps-overview {
  background-color: #FFFFFF;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.step-card {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: #F5C518;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.step-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background-color: #F5C518;
  color: #1A1A1A;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}

/* STEP SECTION */
.step-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid #F0F0F0;
}

.step-section:last-of-type { border-bottom: none; }

.step-section h2 { margin-top: 0; }

.step-section ul {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.step-section ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  border-bottom: 1px solid #F5F5F5;
}

.step-section ul li:last-child { border-bottom: none; }

.step-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 8px; height: 8px;
  background-color: #F5C518;
  border-radius: 50%;
}

/* FEATURE CARDS */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  background-color: #F9F9F9;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #F5C518;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}

.feature-card h4 {
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* MISTAKE ITEMS */
.mistakes-section {
  background-color: #FFF8F8;
  border-top: 1px solid #FDDEDE;
  border-bottom: 1px solid #FDDEDE;
}

.mistake-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.mistake-item {
  background-color: #FFFFFF;
  border-left: 4px solid #E74C3C;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mistake-item svg {
  margin-bottom: 0.75rem;
  display: block;
}

.mistake-item h3 {
  color: #C0392B;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.mistake-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #555;
}

/* FAQ SECTION */
.faq-section {
  background-color: #F9F9F9;
  border-top: 1px solid #E0E0E0;
}

/* CHECKLIST */
.checklist {
  background-color: #FFFBEA;
  padding: 1.75rem;
  border-radius: 8px;
  border: 1px solid #F5C518;
  margin: 1.5rem 0;
}

.checklist h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #B8860B;
}

.checklist ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.checklist ul li {
  padding: 0.5rem 0 0.5rem 2rem !important;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2) !important;
  position: relative;
}

.checklist ul li:last-child { border-bottom: none !important; }

.checklist ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px; height: 20px;
  background-color: #F5C518;
  color: #1A1A1A;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 20px;
}

/* MINI STEPS */
.mini-steps {
  background-color: #F9F9F9;
  padding: 1.75rem;
  border-radius: 8px;
  margin: 1.75rem 0;
  border: 1px solid #E0E0E0;
}

.mini-step {
  display: flex; gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E8E8E8;
}

.mini-step:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.mini-step-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background-color: #F5C518; color: #1A1A1A;
  border-radius: 50%; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}

.mini-step-content h4 { margin: 0 0 0.35rem; font-size: 1rem; }
.mini-step-content p { margin: 0; font-size: 0.9rem; color: #555; }

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
}

/* ABOUT SECTIONS */
.about-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 5rem 0;
}

.about-hero h1 { color: #FFFFFF; }
.about-hero p { color: #DDDDDD; max-width: 600px; margin: 0 auto; }

.about-section { padding: 4rem 0; }
.about-section:nth-child(even) { background-color: #F9F9F9; }

/* TIMELINE */
.timeline {
  margin: 2rem 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background-color: #F5C518;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute; left: -1.75rem; top: 6px;
  width: 14px; height: 14px;
  background-color: #F5C518;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px #F5C518;
}

.timeline-year {
  font-size: 0.8rem; font-weight: 700;
  color: #F5C518; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.25rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero { padding: 4rem 0 3rem; }

  .hero-buttons {
    flex-direction: column; align-items: center;
  }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .intro-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mistake-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}
