/* ══════════════════════════════════════════
   ElektroGH.wien – Showroom Page Styles
   ══════════════════════════════════════════ */

/* ──────────── HERO ──────────── */
.showroom-hero {
  background: var(--black);
  padding: 64px 0;
  text-align: center;
}
.showroom-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.showroom-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.showroom-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ──────────── SHOWROOM AREAS ──────────── */
.showroom-areas {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px;
}
.showroom-areas h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 36px;
}
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.showroom-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.showroom-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.showroom-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.showroom-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--yellow-dark);
}
.showroom-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.showroom-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ──────────── VISIT SECTION ──────────── */
.visit-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.visit-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}
.visit-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-detail-icon .lucide {
  width: 22px;
  height: 22px;
  color: var(--yellow-dark);
}
.visit-detail-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.visit-detail-text {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}
.visit-map {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}
.visit-map .lucide {
  width: 40px;
  height: 40px;
}
.visit-map span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ──────────── BOOKING ──────────── */
.booking-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 60px;
}
.booking-card {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.booking-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.booking-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.booking-text p {
  font-size: 0.9rem;
  color: rgba(22,20,15,0.6);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 16px;
}
.booking-contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  transition: opacity 0.15s;
}
.booking-contact-item:hover {
  opacity: 0.7;
}
.booking-contact-item .lucide {
  width: 18px;
  height: 18px;
}
.booking-action {
  flex-shrink: 0;
}
.booking-action .btn-primary {
  background: var(--black);
  color: var(--white);
  white-space: nowrap;
}
.booking-action .btn-primary:hover {
  background: var(--dark);
  box-shadow: var(--shadow);
}

/* ──────────── VISITOR QUOTE ──────────── */
.visitor-quote-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 60px;
}
.visitor-quote {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.visitor-quote > .lucide {
  width: 32px;
  height: 32px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.visitor-quote p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.visitor-quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.visitor-quote footer strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
}
.visitor-quote footer span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ──────────── RESPONSIVE 1100px ──────────── */
@media (max-width: 1100px) {
  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-section {
    grid-template-columns: 1fr;
  }
  .visit-map {
    height: 260px;
  }
  .booking-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-action {
    width: 100%;
  }
  .booking-action .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ──────────── RESPONSIVE 768px ──────────── */
@media (max-width: 768px) {
  .showroom-hero {
    padding: 40px 0;
  }
  .showroom-hero h1 {
    font-size: 1.8rem;
  }
  .showroom-hero p {
    font-size: 0.92rem;
  }
  .showroom-areas {
    padding: 40px 16px;
  }
  .showroom-areas h2 {
    font-size: 1.3rem;
  }
  .showroom-grid {
    grid-template-columns: 1fr;
  }
  .visit-section {
    padding: 0 16px 40px;
  }
  .visit-map {
    height: 220px;
  }
  .booking-section {
    padding: 0 16px 40px;
  }
  .booking-card {
    padding: 28px 24px;
  }
  .booking-text h2 {
    font-size: 1.3rem;
  }
  .visitor-quote-section {
    padding: 0 16px 40px;
  }
  .visitor-quote {
    padding: 28px 24px;
  }
  .visitor-quote p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .showroom-hero { padding: 28px 0; }
  .showroom-hero-inner { padding: 0 16px; }
  .showroom-hero h1 { font-size: 1.4rem; }
  .showroom-areas { padding: 28px 12px; }
  .showroom-areas h2 { font-size: 1.15rem; }
  .showroom-card { padding: 24px; }
  .visit-section { padding: 0 12px 28px; }
  .visit-info h2 { font-size: 1.2rem; }
  .booking-section { padding: 0 12px 28px; }
  .booking-card { padding: 22px 18px; }
  .booking-text h2 { font-size: 1.15rem; }
  .booking-text p { font-size: 0.85rem; }
  .visitor-quote-section { padding: 0 12px 28px; }
  .visitor-quote { padding: 22px 18px; }
  .visitor-quote p { font-size: 0.88rem; }
}
