/* Custom Styles for Airline Cargo Services */

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Header & Navigation */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
    color: #082b48 !important;
}

.navbar-nav .nav-link {
    color: #082b48 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.125rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #e4002b !important;
    background-color: rgba(8, 43, 72, 0.05);
    border-radius: 4px;
}

.navbar-toggler {
    border-color: #082b48;
    background-color: #082b48;
}

/* Home Page Hero */
.bg-dark.p-5 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/ethiopian-cargo-aircraft.jpg');
    background-size: cover;
    background-position: center;
}

/* Cards */
.card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-header {
    font-weight: bold;
}

.card-title {
    color: #082b48;
}

/* Buttons */
.btn-primary {
    background-color: #082b48;
    border-color: #082b48;
}

.btn-primary:hover {
    background-color: #0a3d68;
    border-color: #0a3d68;
}

.btn-outline-primary {
    color: #082b48;
    border-color: #082b48;
}

.btn-outline-primary:hover {
    background-color: #082b48;
    border-color: #082b48;
}

/* Forms */
.form-control:focus {
    border-color: #082b48;
    box-shadow: 0 0 0 0.25rem rgba(8, 43, 72, 0.25);
}

/* Footer */
footer {
    background-color: #082b48 !important;
}

/* Map Section */
.ratio iframe {
    border-radius: 0.25rem;
}

/* Route Cards */
.bg-primary {
    background-color: #082b48 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Custom List Styles */
.list-group-item {
    border-left: none;
    border-right: none;
}

/* Table Styling */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(8, 43, 72, 0.05);
}

/* Quote Form */
.form-check-input:checked {
    background-color: #082b48;
    border-color: #082b48;
}

/* Destinations Cards */
.border.rounded {
    transition: all 0.3s ease;
}

.border.rounded:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/ethiopian-cargo-aircraft.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

/* Destinations Image */
.destinations-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/ethiopian-cargo-aircraft.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
} 