/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background-color: #ffffff;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar .nav-link {
    margin-left: 0.5rem;
}

/* Hero-Bereich */
header {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.75),
            rgba(15, 23, 42, 0.75)
        ),
        url("../images/hero.jpg") center / cover no-repeat;
    color: white;
}

header h1 {
    max-width: 700px;
}

header p {
    max-width: 650px;
}

/* Buttons */
.btn-primary {
    border-radius: 10px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Bereiche */
section {
    scroll-margin-top: 80px;
}

/* Karten */
.card {
    border: 0;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12) !important;
}

/* Überschriften */
h1,
h2,
h3 {
    letter-spacing: -0.5px;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #6b7280;
}

/* Smartphone */
@media (max-width: 768px) {
    header {
        min-height: 60vh;
        text-align: center;
    }

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }
}
/* Ablauf / Schritte */
.step-box {
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0d6efd;
    color: white;

    font-size: 1.5rem;
    font-weight: bold;

    border-radius: 50%;
}
/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer li {
    margin-bottom: 8px;
}

.footer hr {
    border-color: #334155;
}
/* Portfolio */
.portfolio-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;

    height: 100%;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.portfolio-card img {
    width: 100%;
    height: 250px;

    object-fit: cover;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content p {
    color: #6b7280;
    margin-bottom: 0;
}
/* Kontaktformular */
#kontakt .form-control,
#kontakt .form-select {
    min-height: 50px;
    border-radius: 10px;
    border: none;
}

#kontakt textarea.form-control {
    min-height: 140px;
}

#kontakt .form-control:focus,
#kontakt .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

#kontakt .form-label {
    font-weight: 500;
}

#kontakt .form-check-label {
    color: #d1d5db;
}

/* =========================================
   So funktioniert es
========================================= */

.process-section {
    background-color: #0b0f0c;
    color: #ffffff;
}

.section-label {
    color: #65c51c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-section .text-secondary {
    color: #9ca3af !important;
}


/* Karte */

.process-card {
    position: relative;

    height: 100%;
    min-height: 290px;

    padding: 32px;

    background: #111712;

    border: 1px solid #263126;
    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Hover */

.process-card:hover {
    transform: translateY(-6px);

    border-color: #65c51c;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);
}


/* Große Nummer */

.process-number {
    position: absolute;

    top: 15px;
    right: 22px;

    font-size: 3.5rem;
    font-weight: 800;

    color: rgba(101, 197, 28, 0.08);
}


/* Icon */

.process-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    background: rgba(101, 197, 28, 0.12);

    color: #65c51c;

    font-size: 1.7rem;
    font-weight: bold;
}


/* Überschrift */

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;

    margin-bottom: 14px;
}


/* Beschreibung */

.process-card p {
    color: #9ca3af;

    line-height: 1.7;

    margin-bottom: 0;
}
/* =========================================
   Über guis3d
========================================= */

.about-section {
    background-color: #ffffff;
}

.about-text {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    padding: 28px;

    background-color: #f8fafc;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: rgba(101, 197, 28, 0.12);

    color: #65c51c;

    font-size: 1.4rem;
    font-weight: bold;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.about-card p {
    margin-bottom: 0;

    color: #6b7280;
}


/* Smartphone */

@media (max-width: 576px) {

    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Kontakt
========================================= */

.contact-section {
    background-color: #0b0f0c;
    color: #ffffff;
}

.contact-intro {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Kontaktinfos */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(101, 197, 28, 0.12);

    color: #65c51c;

    border-radius: 12px;

    font-size: 1.3rem;
    font-weight: bold;
}

.contact-info-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: #9ca3af;
    margin-bottom: 0;
}


/* Formular-Karte */

.contact-form-card {
    background-color: #111712;

    border: 1px solid #263126;
    border-radius: 20px;

    padding: 35px;
}

.contact-form-card .form-label {
    color: #ffffff;
    font-weight: 500;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 52px;

    background-color: #171d18;
    color: #ffffff;

    border: 1px solid #303a31;
    border-radius: 10px;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background-color: #171d18;
    color: #ffffff;

    border-color: #65c51c;

    box-shadow:
        0 0 0 0.2rem rgba(101, 197, 28, 0.12);
}

.contact-form-card .form-control::placeholder {
    color: #6b7280;
}

.contact-form-card .form-text {
    color: #8b938c;
}

.contact-form-card .form-check-label {
    color: #9ca3af;
}


/* Button */

.contact-submit-btn {
    width: 100%;

    padding: 14px 25px;

    background-color: #65c51c;
    color: #071004;

    border: none;
    border-radius: 10px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.contact-submit-btn:hover {
    background-color: #76d52c;
    color: #071004;

    transform: translateY(-2px);
}


/* Smartphone */

@media (max-width: 576px) {

    .contact-form-card {
        padding: 24px;
    }
}