/* Hotel zur Heimat - Custom Styles */

/* Custom Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.custom-scrollbar::-webkit-scrollbar { height: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e7e5e4; border-radius: 10px; }

/* Room Image Hover Effect */
.group:hover .room-image { transform: scale(1.05); }
.room-image { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

/* FAQ Card Hover */
.faq-card { transition: all 0.3s ease; }
.faq-card:hover { border-color: #8b5e34; }

/* Gallery Image Hover */
.gallery-img { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); filter: grayscale(20%); }
.gallery-img:hover { filter: grayscale(0%); transform: scale(1.05); }

/* Calendar Styles */
.availability-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-day.available {
    background: #d1fae5;
    color: #065f46;
}

.calendar-day.partial {
    background: #fef3c7;
    color: #92400e;
}

.calendar-day.unavailable {
    background: #fee2e2;
    color: #991b1b;
    cursor: not-allowed;
}

.calendar-day.unknown {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid #292524;
}

/* Admin Panel Custom Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.admin-table {
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f5f5f4;
}

.admin-table th {
    background: #fafaf9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.admin-table tr:hover {
    background: #fafaf9;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #1c1917;
    color: white;
}

.btn-primary:hover {
    background: #292524;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

/* Input Date Styling */
input[type="date"] {
    color: #292524;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Checkbox Styling */
input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

