body {
    background-color: #f2f2f2;
    margin: 0;
    overflow-y: auto; 
}

/* Scrollbars generell */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* Social Icons */
.social-group:hover .social-icon { opacity: 0.4; }
.social-group .social-icon:hover { opacity: 1; transform: scale(1.1); }
.social-icon { transition: all 0.3s ease; }

/* Karten Design */
.card-container {
    display: flex; flex-direction: column; align-items: center; cursor: pointer;
    animation: fadeInUp 0.6s ease-out forwards; opacity: 0; 
}
.card-container:hover .card-image { transform: scale(1.03); }

.image-wrapper {
    position: relative; overflow: hidden; background-color: white;
    box-shadow: 0 10px 20px -5px rgb(0 0 0 / 0.1); margin-bottom: 1.5rem;
    width: 85vw; aspect-ratio: 3/4;
}

@media (min-width: 768px) {
    .image-wrapper { width: 350px; height: 480px; }
}

.card-image {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-line {
    width: 2rem; height: 1px; background-color: #0f172a;
    margin-top: 1rem; margin-left: auto; margin-right: auto;
    transform: scaleX(0); transition: transform 0.3s ease; transform-origin: center;
}
.card-container:hover .hover-line { transform: scaleX(1); }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER STYLE */
.header-scrolled {
    background-color: rgba(242, 242, 242, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* SEARCH INPUT STYLING */
/* Entfernt alle Standard-Browser-Styles für Inputs */
#search-input {
    background-image: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#search-input:focus {
    outline: none;
}

#search-input::placeholder {
    color: #94a3b8; /* Slate 400 */
    opacity: 1;
}

/* Hilfsklasse zum Ausblenden des Main Contents */
.content-hidden {
    opacity: 0;
    pointer-events: none;
}