body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1E1E1E;
    margin: 0;
    padding: 0;
}

/* Logo zentriert */
.main-logo {
  height: 150px;
  margin-bottom: -2%;
  margin-top: -2%;
}

/* Navigation als Card-Stil unter dem Logo */
.main-navigation {
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 12px 0;
}

.main-navigation ul.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.main-navigation .nav-item {
    margin: 0 15px;
}

.main-navigation .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.main-navigation .nav-link:hover {
    background-color: #2c3e50;
    color: #ffffff !important;
}

/* Hero-Bereich */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #dddddd;
  margin-bottom: 25px;
}

.hero .btn {
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 6px;
}

/* Inhalt */
.section {
    padding: 60px 20px;
}

.service-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.service-box i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}


/* ========== TYPOGRAFIE & ABSCHNITTE ========== */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}

.section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  color: #2c3e50;
}

.section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.section ul {
  padding-left: 1.2rem;
}

.section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ========== HELLER HINTERGRUND ========== */
.bg-light {
  background-color: #f8f9fa !important;
}

/* ========== RESPONSIVE SPALTEN IN LEISTUNGEN ========== */
@media (max-width: 767.98px) {
  .section .col-md-6 {
    margin-bottom: 30px;
  }
}

/* ========== CALL TO ACTION / BUTTON-OPTIK (optional) ========== */
.btn-outline-primary,
.btn-outline-secondary {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ========== KONTAKT-ICONS IM FOOTER ========== */
.site-footer i {
  color: #2c3e50;
  margin-right: 6px;
}

/* ========== VERLINKUNGEN ========== */
.section a {
  color: #2c3e50;
  text-decoration: none;
}

.section a:hover {
  text-decoration: none;
  color: #1a252f;
}

.btn i {
  margin-right: 6px;
}

.cta-button-primary {
    background-color: #2c3e50;
    color: #ffffff !important;
    border: none;
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    color: #ffffff !important;
    text-decoration: none;
}

.cta-button-outline {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button-outline:hover {
    background-color: #2c3e50;
    color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

a.cta-button-primary,
a.cta-button-outline {
    text-decoration: none !important;
}

/* === PERSON PAGE === */
.about-section img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-section .card {
  margin-bottom: 30px;
  border: none;
  background-color: #f8f9fa;
}

.about-section .card-body {
  padding: 20px;
}

.about-section h2,
.about-section h3 {
  color: #2c3e50;
  font-weight: 600;
}

.about-section p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

.about-section .btn {
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
}

.about-section .btn-primary {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: #fff;
}

.about-section .btn-outline-dark {
  color: #2c3e50;
  border-color: #2c3e50;
}

.about-section .btn-outline-dark:hover {
  background-color: #2c3e50;
  color: #fff;
}

/* Responsives Bildraster für Zertifikate */
.certificates-grid img {
  margin-bottom: 20px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.cert-section .certificate-card img,
.about-section .certificate-card img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background-color: #fff;
  padding: 12px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.cert-section .certificate-card img:hover {
  transform: scale(1.02);
}


.personal-image {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}



/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.site-footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.site-footer a {
    color: #dcdcdc;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.site-footer .btn {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.site-footer .btn i {
    margin-right: 6px;
}

.site-footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .site-footer .col-md-3 {
        margin-bottom: 30px;
    }
}
