@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body {
    background-image: url(https://t4.ftcdn.net/jpg/04/43/37/07/360_F_443370711_sqHRnSIQovW6uyQ5ZwDpd4kjCG8Q6swm.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.navigation{
    background: rgb(6,2,71);
    background: linear-gradient(90deg, rgba(6,2,71,1) 0%, rgba(107,11,17,1) 35%, rgba(189,162,6,1) 100%);
    padding:5px;
    border-radius: 2rem;
    
}

.navigation ul{
    list-style-type: none;
    display: flex; 
    justify-content: space-evenly;
    list-style: none; 
    padding: 0;
    margin: 0;
}

.list {
    display: flex;
    align-items: center;
}

.list a {
    font-size: large;
    position: relative;
    color: white;
    font-weight: 300;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.list a::before {
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    height: 3px;
    bottom: 0;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    background: rgb(45,33,238);
    background: linear-gradient(90deg, rgba(45,33,238,1) 0%, rgba(189,21,21,1) 35%, rgba(235,163,109,1) 100%);
}

.list a:hover::before {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#username{
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}

#username:hover {
    transform: scale(1.1);
}


#logout-btn{
    border: none;
    border-radius: 1rem;
    padding:8px;
    background-image: linear-gradient(red,black);
    color:white;

}

.logo {
    font-size: 48px;
    color: black;
    text-shadow:
        0 0 20px #ff9900,
        0 0 30px #ff6600,
        0 0 40px #ff3300,
        0 0 50px #ff0000;
}

#login-btn {
    font-size: 20px;
    cursor: pointer;
    font-weight: bolder;
    color: aliceblue;
    border: none;
    margin-left: 10px;
    border-radius: 1rem;
    padding:8px;
    color:white;
    background-color: green;
    text-decoration: none;
}

#b1 {
    background-color: rgb(71, 117, 30);
    padding: 6px;
    border: none;
    border-radius: 1rem;

}

.main-content {
    text-align: center;
    margin: 20px 0;


}

.image {
    height: 430px;
    object-fit: cover;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    background-image: url(Restaurant[1].jpg);
    background-size: cover;
}

.search-bar {
    display:flex;
    justify-content: center;
    gap: 5px;

}

.search-bar input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #0056b3;
}

.details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.detail-box {
    flex: 1;
    background-color: #d2adad;
    border: 1px solid #e4c5c5;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 2rem; 
    width: 400px;
}

#detail-box1{
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    border: none;
}

#img-dev{
    width:150px;
    height:140px;
    object-fit: cover; 
    border-radius: 50%;
}

#but_cli{
    margin-top: 5rem;
    color:white;
    font-size: larger;
    text-decoration: none;
}

#search-bar {
    padding: 10px;
    width: 300px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#search-button {
    padding: 10px 20px;
    background-color: white;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

#search-button:hover {
    background-color: #cce5ff;
}

#video-results {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px auto;
    max-width: 800px;
}

.video-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.video-container iframe {
    width: 320px;
    height: 180px;
    border-radius: 5px;
}

.video-container p {
    margin-left: 20px;
    font-size: 16px;
    font-weight: bold;
    flex: 1;
    text-align: left;
    color: black;
}

#see-more-button {
    padding: 10px 20px;
    margin: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#see-more-button:hover {
    background-color: #0056b3;
}