body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #141414;
    color: #fff;
    padding-top: 70px; /* navbar space */
}

/* Navbar */
.navbar {
    background-color: rgba(20,20,20,0.95);
    
    width: 100%;
    z-index: 999;
}
.navbar .navbar-brand {
    color: rgb(229,9,20);
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar .nav-link {
    color: #fff !important;
}
.navbar .nav-link:hover {
    color: rgb(229,9,20) !important;
}

/* Search input */
.navbar .form-control {
    background: #333;
    border: 1px solid #555;
    color: #fff;
    border-radius: 20px;
    padding: 5px 15px;
    width: 200px;
    transition: width 0.4s, background 0.3s;
}
.navbar .form-control:focus {
    width: 300px;
    background: #444;
    color: #fff;
}
/* Placeholder color white */
.navbar .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.carousel-item {
    height: 70vh;
    min-height: 400px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}


.carousel-caption {
    bottom: 20%;
    left: 5%;
    text-align: left;
}
.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
}
.carousel-caption p {
    font-size: 1.2rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Sections */
section {
    padding: 3rem 0;
}
section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Cards */
.card {
    background-color: #1e1e1e;
    border: none;
    overflow: hidden;
    border-radius: 0.25rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: scale(1.05);
    z-index: 2;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 0.5rem;
}
.card-title {
    font-size: 1rem;
    font-weight: bold;
}
.card-text {
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #141414;
    color: #aaa;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px){
    .carousel-item { height: 40vh; }
    .card-img-top { height: 150px; }
    section h2 { font-size: 1.5rem; }
    .navbar .form-control { width: 100%; margin-top: 10px; }
}