/* Main Styles for Venus Self Drive Car Rental */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-car.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #1e88e5;
    border-color: #1e88e5;
}

.btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
}

.card {
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    margin-top: 2rem;
}

/* Login and Registration Forms */
.auth-form {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Car listing styles */
.car-card {
    margin-bottom: 25px;
}

.car-img {
    height: 200px;
    object-fit: cover;
}

/* Booking form styles */
.booking-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

/* Dashboard styles */
.dashboard-card {
    margin-bottom: 20px;
}

.dashboard-stats {
    font-size: 24px;
    font-weight: bold;
    color: #1e88e5;
}

/* Profile section */
.profile-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
} 