.nav-link, .navbar-brand {
    color: #ffab40 !important;
}

footer, header {
    text-align: center;
}

body, footer {
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    transition: background-color 0.3s, color 0.3s;
}

header {
    background-color: #1e1e1e;
    color: #e0e0e0;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ffab40;
}

.navbar {
    margin-bottom: 20px;
    background-color: #1e1e1e !important;
    border-bottom: 2px solid #ffab40;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #ff6f00 !important;
}

.breadcrumb-item.active, .card, footer {
    color: #e0e0e0;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #1e1e1e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.2s;
}

.breadcrumb-item a, .card-title {
    color: #ffab40;
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

.card-img-container {
    overflow: hidden;
    position: relative;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s, z-index 0.3s;
    width: 100%;
    position: relative;
    z-index: 1;
}

.card-img-top:hover {
    transform: scale(1.1);
    z-index: 2;
}

.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.95rem;
    flex-grow: 1;
}

.btn-primary {
    background-color: #ffab40;
    border: none;
    transition: background-color 0.3s;
    align-self: flex-start;
    color: #000;
}

.breadcrumb, footer {
    background-color: #1e1e1e;
}

.btn-primary:hover, .navbar-toggler:hover {
    background-color: #ff6f00;
}

footer {
    padding: 20px;
}

.footer-links h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffab40;
}

.breadcrumb {
    border-radius: 5px;
}

.button-change-movie ul li a, .navbar-toggler {
    background-color: #ffab40;
    color: #000;
}

.breadcrumb-item a:hover {
    color: #ff6f00;
}

nav[aria-label=breadcrumb] {
    display: flex;
    justify-content: center;
}

.button-change-movie ul li a {
    border-color: #ff6f00;
}

.button-change-movie ul li a:hover {
    background-color: #ff6f00;
    border-color: #e65100;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #333;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1e1e1e;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.autocomplete-items div:hover {
    background-color: #333;
}

.autocomplete-items img {
    width: 40px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.autocomplete-active {
    background-color: #ffab40 !important;
    color: #000;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.footer-links ul li {
    display: inline-block;
}

.footer-links ul li a {
    text-decoration: none;
    color: #1e1e1e;
    background-color: #ffab40;
    border: 1px solid transparent;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links ul li a:hover {
    background-color: #1e1e1e;
    color: #ffab40;
    border: 1px solid #ffab40;
}

@media screen and (max-width: 768px) {
    .footer-links ul {
        gap: 8px;
    }

    .footer-links ul li a {
        font-size: 12px;
        padding: 4px 8px;
    }
}
