/*
 * braunschweig.club – Custom Styles
 * Autor: Marabu-Digital.de
 */

/* ===== Grundlegendes ===== */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ===== Venue Cards ===== */
.venue-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* ===== Hero Section ===== */
.bg-dark .input-group-text {
    border-right: none;
}

.bg-dark .form-control {
    border-left: none;
}

.bg-dark .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* ===== Badges ===== */
.badge {
    font-weight: 500;
}

/* ===== Footer ===== */
footer a:hover {
    color: #fff !important;
}

/* ===== Responsive Anpassungen ===== */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .venue-card .card-img-top {
        height: 140px !important;
    }
}
