/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #004634;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Logo Animation */
.navbar-brand img {
    transition: transform 2s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Navigation links */
.nav-link {
    color: rgb(215, 212, 194);
    font-size: 15px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: rgb(215, 212, 194);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(215, 212, 194);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    background-color: #004634;
    border: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
}

.dropdown-item {
    color: rgb(215, 212, 194);
    transition: color 0.3s ease-in-out;
}

.dropdown-item:hover {
    color: rgb(215, 212, 194);
    background-color: transparent;
}

/* Button styling */
.btn {
    color: rgb(6, 6, 77);
    background-color: rgb(215, 212, 194);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #83bef8;
    color: white;
}

/* Navbar toggler (for mobile) */
.navbar-toggler {
    background-color: #e1d39b;
    border: none;
}

/* =========== */

/* Ensure the container spans the full width */
#full-width-container {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden; /* Ensures no extra space from image scaling */
}

/* Make the image fully responsive */
#full-width-image {
    width: 100%;
    padding-top: 110px;
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures it covers the container without distortion */
    display: block; /* Avoids inline element spacing issues */
}


/* =========== */
/* Container styles */
#pree {
    padding: 50px 15px; /* Adds space around the section */
    background-color: #f8f9fa; /* Light background for contrast */
}

/* Row styling to align content and image side by side */
#pre {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for responsiveness */
    gap: 20px; /* Space between columns */
    align-items: center; /* Vertical alignment for content and image */
}

/* Text content styles */
#pre1 {
    flex: 1; /* Equal width for content */
    padding: 20px;
}

#pre-title {
    font-size: 1.8rem; /* Larger heading size */
    font-weight: bold;
    color: #004634; /* Merun red color */
    margin-bottom: 20px;
}

#pre-list {
    font-size: 1rem;
    line-height: 1.8;
    list-style: none; /* Removes default bullets */
    padding: 0;
}

#pre-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
}

/* Custom bullet for list items */
#pre-list li::before {
    content: "•"; /* Custom bullet */
    color: #004634; /* Merun red color for bullet */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Image styles */
#pre2 {
    flex: 1; /* Equal width for image */
    text-align: center;
}

#pre-image {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Adds rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #pre {
        flex-direction: column; /* Stack content and image vertically */
    }

    #pre1, #pre2 {
        flex: unset; /* Remove equal width for stacking */
        width: 100%; /* Full width for each column */
    }

    #pre-title {
        font-size: 1.5rem; /* Adjust heading size for smaller screens */
    }
}

/* ======= */

/* Fleet Section */
#fleet-section {
    background-color: #f9f9f9; /* Light gray background */

    text-align: center;
}

#fleet-title {
    font-size: 2rem;
    font-weight: bold;
    color: #004634; /* Merun red */
    margin-bottom: 30px;
}

/* Row styling */
#fleet-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Fleet Card */
.fleet-card {
    flex: 0 0 30%; /* Ensures 3 cards fit per row */
    background-color: #eaeaea; /* Card background */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s; /* Hover effect */
}

.fleet-card:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

/* Fleet Image */
.fleet-image {
    max-width: 100%; /* Responsive image */
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Car Name */
.car-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000; /* Black text */
    margin-bottom: 10px;
}

/* Car Price */
.car-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #004634; /* Merun red */
    margin-bottom: 20px;
}

/* Book Now Button */
.book-btn {
    background-color: #ae9610; /* Gold color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #b5932d; /* Darker gold on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .fleet-card {
        flex: 0 0 100%; /* Stack cards on smaller screens */
        margin-bottom: 20px;
    }

    #fleet-title {
        font-size: 1.8rem;
    }
}

/* +++++++++ */

.footer {
    background-color: #004634;
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer h5 {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #fff;
}

.footer .social-icons a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #e6e6e6;
}

.footer .divider {
    border-top: 1px solid #e6e6e6;
    margin: 20px 0;
}

.footer .copyright {
    font-size: 0.9rem;
    color: #e6e6e6;
}
