/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #084298 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

/* Destination Cards */
.destination-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Booking Form */
.booking-form .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.booking-form .card-header {
    padding: 1.5rem;
}

/* Confirmation Page */
.booking-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* Admin Dashboard */
.sidebar {
    min-height: calc(100vh - 56px);
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    border-radius: 5px;
}

.sidebar .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

.fixed-img {
    height: 200px;         /* or any consistent height */
    width: 100%;           /* to cover the card width */
    object-fit: cover;     /* ensures it fills the area without stretching */
    border-radius: 0.375rem; /* optional: matches Bootstrap's rounded corners */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2.5rem;
    }
    
    .search-section .card-body {
        padding: 1rem;
    }
    
    .booking-form .col-md-6, 
    .booking-form .col-md-4 {
        margin-bottom: 15px;
    }
}

/* Datepicker customization */
.datepicker {
    background-color: white;
    cursor: pointer;
}

.datepicker-dropdown {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.datepicker table tr td.active.active {
    background-color: #0d6efd;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}