/* Custom Styles */
.hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
}

.card {
    transition: transform 0.2s;
}

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

/* Navbar-Anpassungen */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .hero-logo {
        height: 200px;
        margin-top: 2rem;
    }
    .hero .text-md-start {
        text-align: center !important;
    }
} 

/* Ergänzungen für die Timeline auf der Brand-Seite */
.timeline .card {
    position: relative;
    margin-bottom: 30px;
}

.timeline .card::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #dee2e6;
    left: -30px;
    top: 0;
}

.timeline .col-md-6:nth-child(even) .card::before {
    left: auto;
    right: -30px;
}

.timeline .card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d6efd;
    left: -39px;
    top: 15px;
}

.timeline .col-md-6:nth-child(even) .card::after {
    left: auto;
    right: -39px;
}

/* Anpassungen für die Accordion-Komponente */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
} 

/* Logo Anpassungen */
.navbar-brand img {
    height: 50px;
    width: auto;
    margin-right: 0.75rem;
}

/* Footer Logo */
.footer-logo {
    height: 60px;
    width: auto;
    margin-right: 1rem;
} 

/* Hero Logo Container */
.hero .col-md-6:last-child {
    display: flex;
    justify-content: flex-end; /* Ausrichtung ganz rechts */
    padding-right: 0; /* Optional: entfernt das Padding rechts */
}

/* Hero Logo */
.hero-logo {
    height: 300px;
    width: auto;
    max-width: 100%;
} 

/* Responsive Anpassungen beibehalten */
@media (max-width: 768px) {
    .hero-logo {
        height: 200px;
        margin-top: 2rem;
    }
    /* Zentriert auf mobilen Geräten */
    .hero .col-md-6:last-child {
        justify-content: center;
        padding-right: 15px; /* Standard Padding wiederherstellen */
    }
} 