/* Styles personnalisés pour SIMS Groupe Hôtellerie */

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hotel.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.navbar-brand {
    font-weight: bold;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

footer {
    margin-top: auto;
}

/* Admin Dashboard Styles */
.admin-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.admin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.table th {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    font-weight: bold;
    border: none;
}

.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-sm {
    margin: 2px;
    border-radius: 20px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #333;
    font-weight: 700;
}