﻿/* Page: Technologien
   Loaded after site.css. Keep only styles used by this page here. */

/* Technologien: Hero verfeinern */
.tech-hero {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.tech-hero .hero-title {
  max-width: 860px;
  margin-bottom: 1.4rem;
}

.tech-hero .hero-content {
  align-items: center;
  gap: 3rem;
}

.tech-hero .hero-text {
  max-width: 680px;
}

.tech-hero .lead {
  font-size: 1.08rem;
  line-height: 1.75;
}

.tech-hero .hero-media {
  flex: 0 0 400px;
}

.tech-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .tech-hero .hero-content {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .tech-hero .hero-media {
    flex: none;
  }

  .tech-hero .hero-image {
    max-width: 360px;
  }
}

/* Technologien: Technologiegruppen als Karten */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.tech-card {
  position: relative;
  padding: 1.45rem 1.45rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tech-card::before {
  content: "";
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(62, 166, 161, 0.10);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.tech-card:nth-child(1)::before {
  content: "C#";
}

.tech-card:nth-child(2)::before {
  content: ".NET";
}

.tech-card:nth-child(3)::before {
  content: "DB";
}

.tech-card:nth-child(4)::before {
  content: "API";
}

.tech-card:nth-child(5)::before {
  content: "DEV";
}

.tech-card:nth-child(6)::before {
  content: "+";
}

.tech-card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.22rem;
  line-height: 1.25;
  color: #123f46;
}

.tech-card .bullet-list {
  margin: 0;
  padding-left: 1.15rem;
}

.tech-card .bullet-list li {
  margin-bottom: 0.4rem;
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.45;
}

.tech-card:hover {
  transform: translateY(-3px);
  border-color: rgba(62, 166, 161, 0.34);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-card {
    padding: 1.25rem;
  }
}

/* Technologien: Einordnung vor Technologiegruppen */
.tech-note {
  margin: 2.2rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  border-left: 5px solid var(--accent);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.tech-note p {
  margin: 0;
  color: #4b5f70;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Technologien: Listen in Karten verfeinern */
.tech-card .bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 0.5rem;
}

.tech-card .bullet-list li {
  position: relative;
  margin: 0;
  padding: 0.58rem 0.7rem 0.58rem 2rem;

  border-radius: 11px;
  background: rgba(62, 166, 161, 0.055);
  border: 1px solid rgba(62, 166, 161, 0.12);

  color: #4b5f70;
  font-size: 0.98rem;
  line-height: 1.35;
}

.tech-card .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);

  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(62, 166, 161, 0.13);
}

/* Technologien: Abschluss-CTA */
.tech-final-cta-section {
  padding-top: 3.4rem;
}

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

.tech-card h2 {
  margin-bottom: 1rem;
}

.tech-card .bullet-list {
  margin: 0;
  padding-left: 1.25rem;
}

@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}
