﻿.project-container{
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

/* Kartenlayout */
.project-card {
    width: 256px;
    height: 468px;
    background-color: #221E27;
    border: none; /* Kein Rand */
    margin: 10px;
    border-radius: 18px;
    overflow: hidden;
    position: initial !important;
}

.project-card .tech-icon{
    width: 32px; 
    height: 32px;
}

/* Titelbereich */
.project-card .card-header {
    background-color: #7700FF;
    color: white;
    height: 96px;
    font-size: 12px;
    font-family: 'Quattrocento Sans';
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
}

/* Bild */
.project-card .card-img-top {
    height: 156px;
    object-fit: cover;
}

/* Technologie-Bereich */
.project-card .tech-section {
    height: 64px;
    background-color: #221E27;
    color: white;
    font-family: 'Hind';
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FFCA0D;
}

/* Beschreibung */
.project-card .description-section {
    height: 152px;
    background-color: #221E27;
    color: white;
    text-align: center;
    font-family: 'Hind';
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
}

/* Button im Footer */
.project-card .card-footer {
    background: none;
    border: none;
}

.details-button {
    background-color: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 22px; /* Größeren Button */
    transition: color 0.3s ease-in-out; /* Sanfter Übergang der Farbe */
    color: #FFFFFF;
}

.details-button:hover {
    color: #FFCA0D; /* Die Farbe wie in der Linie */
}