/* style.css */
body {
    font-family: 'Playfair Display', serif;
    background-color: #fcfaf7;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5a4a42 !important;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.btn-primary {
    background-color: #906088;
    border: none;
}

.btn-primary:hover {
    background-color: #be8ec0;
}

/* Einheitliche Kartenhöhe auf der Startseite */
.card-product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-product .card-img-top {
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.card-product .card-title {
    font-size: 1.1rem;
    min-height: 2.5em; /* Platz für bis zu 2 Zeilen */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-product .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}