/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
   /* background-color: #B20000 !important;*/
    background-image: url("images/background.jpeg");
}

.header {
    /*background-color: #333;*/
    padding: 10px 0;
    color: #fff;
}

.header .logo {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav .nav-list li {
    margin-right: 20px;
}

.nav .nav-list li a {
    color: #EEF602;
    text-decoration: none;
}

.search-bar input {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.hero-section {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero-section .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    color: #fff;
}

.content-section {
    padding: 50px 0;
}

.content-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #EEF602;
}

.content-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

.content-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.footer {
    background-color: #393e42;
    color: #fff;
    padding: 20px 0;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.5rem;
}

.carousel-item img {
    height: 500px;
    /*object-fit: cover;*/
    width: 100%;
}
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.hero-section {
    margin-top: 20px;
    position: relative;
}

.carousel-inner img {
    height: 100vh; /* Full height for larger screens */
    /*object-fit: cover;  Ensure image covers the entire slide */
}

@media (max-width: 768px) {
    .carousel-inner img {
        height: 60vh; /* Reduce height for tablets and small screens */
    }
}

@media (max-width: 576px) {
    .carousel-inner img {
        height: 50vh; /* Further reduce height for mobile devices */
    }
}

/* Optional: Make carousel captions responsive */
.carousel-caption {
    text-align: left;
}

@media (max-width: 768px) {
    .carousel-caption {
        font-size: 14px;
    }
}