.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

.notification {
    transition: opacity 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Termine Modal Styles */
.termine-modal {
    max-height: 70vh;
    overflow-y: auto;
}

.termine-list {
    max-height: 50vh;
    overflow-y: auto;
}

.termin-card {
    transition: all 0.2s ease;
}

.termin-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Button Styles für Tour Cards */
.tour-card .flex.flex-wrap {
    gap: 0.5rem;
}

.tour-card .flex.flex-wrap button {
    flex: 1;
    min-width: fit-content;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

/* Responsive für Tour Buttons */
@media (max-width: 640px) {
    .tour-card .flex.flex-wrap {
        flex-direction: column;
    }
    .tour-card .flex.flex-wrap button {
        width: 100%;
    }
}

/* Scrollbar für Termine Modal */
.termine-modal::-webkit-scrollbar,
.termine-list::-webkit-scrollbar {
    width: 6px;
}

.termine-modal::-webkit-scrollbar-track,
.termine-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.termine-modal::-webkit-scrollbar-thumb,
.termine-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animate-beat {
    animation: heartbeat 1.5s ease-in-out infinite;
}
/* Ausgebuchte Termine im Kalender */
.bg-red-300 {
    background-color: #fca5a5 !important;
}
.text-red-800 {
    color: #991b1b !important;
}
.cursor-not-allowed {
    cursor: not-allowed !important;
}

/* Zusätzliche Styles für bessere Sichtbarkeit */
.ausgebucht-termin {
    background: linear-gradient(135deg, #fca5a5 0%, #f87171 100%);
    color: #7f1d1d;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border: 2px solid #dc2626;
}
