/* Zusätzliche Animationen und Stile für die Gründer-Seite, angepasst an SACO-Design */

.animate-fadeIn {
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    opacity: 0;
    transition: all 0.5s ease;
}

.founder-details {
    transition: opacity 0.3s ease;
}

/* Spezielle Effekte für die Bilder in der Galerie */
.gallery-image {
    transition: all 0.5s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Stilisierung für die Philosophie-Sektion */
.philosophy-icon {
    transition: all 0.3s ease;
}

.philosophy-icon:hover {
    transform: rotate(360deg);
    color: var(--saco-green-color);
}

/* SACO-spezifische Schatten und Effekte */
.saco-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.saco-card {
    background-color: var(--saco-bg-light);
    border: 1px solid var(--saco-border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.saco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* SACO Timeline spezifische Stile */
.timeline-dot {
    background-color: var(--saco-green-color);
    border: 2px solid white;
}

.timeline-line {
    background-color: var(--saco-green-color);
}

/* SACO-spezifische Button-Stile */
.saco-button {
    background-color: var(--saco-green-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.saco-button:hover {
    background-color: var(--saco-green-hover-color);
    transform: scale(1.05);
}

/* Spezielle Stile für das Gründer-Bild */
.founder-image {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    max-width: 220px;
    object-fit: cover;
    object-position: top;
}

/* Stilisierte Scrollbar für die Errungenschaften-Liste */
.achievement-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.achievement-scrollbar::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 10px;
}

.achievement-scrollbar::-webkit-scrollbar-thumb {
    background: var(--saco-green-color);
    border-radius: 10px;
}

.achievement-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--saco-green-hover-color);
}

/* Firefox-Scrollbar */
.achievement-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--saco-green-color) rgba(64, 90, 64, 0.5);
}

/* Verbesserte Text-Lesbarkeit */
.text-shadow-md {
    text-shadow: 0 2px 4px rgba(64, 90, 64, 0.5);
}

/* CSS-Variablen für SACO-Farben, falls noch nicht definiert */
:root {
    --saco-green-color: rgba(64, 90, 64, 0.5); /* Anpassbar an die tatsächliche SACO-Grün-Farbe */
    --saco-green-hover-color: rgba(64, 90, 64, 0.5);
    --saco-bg-color: #111827;
    --saco-bg-light: #1f2937;
    --saco-border-color: #374151;
}

.bg-pattern-grid {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%23405a40' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
}
