body {
    font-family: "Oswald", sans-serif;
    background-color: rgb(26, 26, 26);
}

h1{
    color: white;
}

h2{ 
    color: white;
}

.navbar-container{
    display: flex;
    align-items: center;
    background-color: rgb(255, 0, 0);
    padding: 0 50px;
    height: 100%;
    color: white;
}
.navbar{
    width: 100%;
    height: 50px;
    background-color: black;
}

.logo-container{
    flex: 1;
}

.logo{
    font-family: "Chakra Petch", sans-serif;
    font-size: 60
}

.menu-container{
    flex: 3;
}
.menu-list{
    display: flex;
    list-style: none;
}
.menu-list-item{
    margin-right: 30px;
}
.search-bar{
    flex:8;
    margin-right: 30px;
}

.search-box {
    width: calc(25% - 20px);
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
}

#results {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .result-item {
        flex: 1 0 48%; 
    }
}

@media (max-width: 500px) {
    .result-item {
        flex: 1 0 100%;
    }
}

.featured{
    height: 70vh;
    background-color: brown;
}

.featured-title{
    width: 300px;
    margin: 50px;
}

.featured-desc{
    width: 500px;
    color:rgb(255, 255, 255);
    margin: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.featured-button{
background-color: red;
color: white;
padding: 10px;
margin-left: 50px;
}

.show-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    gap: 20px;
}

.show-list-item {
    flex-basis: calc(25% - 20px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    color: blanchedalmond;
}

.show-list-item img {
    width: 75%; 
    height: auto; 
    object-fit: cover; 
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.featured {
    width: 100%; 
    margin: 20px;
    background-size: cover;
    color: white;
    padding: 20px;
}

.featured-title {
    max-width: 50%; /* Ensure image is responsive */
    height: 50%;
}

.featured-desc {
    text-align: start;
    margin-top: 20px;
}

@media (max-width: 768px) { /* Tablets and smaller */
    .featured {
        flex-direction: column;
        padding: 10px;
    }

    .featured-desc, .featured-button {
        font-size: smaller; 
    }
}

@media (max-width: 480px) { /* Mobile phones */
    .featured-title {
        width: 80%; /* Make the logo smaller */
    }

    .featured-desc {
        font-size: small;
    }
}