*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #efe7d4;
}
#hero{
    width: 100%;
    height: 100vh;
    background-image: url(bbg1.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.navbar{
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
.navbar .logo{
    width: 300px;
    margin: -80px -100px;
}
.user{
    display: flex;
    align-items: center;
}

.user img{
    width: 80px;
    margin-left: 50px;
    cursor: pointer;
}
button{
    padding: 8px 25px;
    background: #2b2e34;
    outline: none;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #efe7d4;
    border-color: #efe7d4;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}
.container{
    width: 50%;
    height: 100vh;
    background: rgba(86, 86, 86, 0.3);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
}
.info{
    width: 550px;
    color: #fff;
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
}
.info h1{
    font-size: 60px;
    letter-spacing: 10px;
}
.info p{
    color: #efe7d4;
    font-size: 15px;
    margin: 20px 0;
    line-height: 18px;
}

.info input{
    width: 50%;
    padding: 8px 10px;
    outline: none;
    border: 2px solid #efe7d4;
    border-radius: 20px;
    background: transparent;
    color: #fff;
    font-size: 12px;
}

::placeholder{
    color: #ccc;
}

.slider{
    display: flex;
    align-items: center;
    position: absolute;
    right: 30px;
    bottom: 50px;
}
#prev, #next{
    width: 20px;
    cursor: pointer;
}
.preview{
    display: flex;
    align-items: center;
    margin: 0 60px;
}
.preview img{
    width: 60px;
    margin: 0 10px;
    opacity: 0.4;
}
.preview .active{
    display: block;
    border: 3px solid #fff;
    width: 100px;
    opacity: 1;
}
.hidden {
    display: none;
}
#getStarted {
    padding: 10px 20px;
    background: #efe7d4;
    color: #333;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}
#getStarted:hover {
    transform: scale(1.1);
}
#suggestions {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(10px); 
    width: 50%; 
    z-index: 1000;
    border-radius: 10px;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2); 
}
.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    transition: background-color 0.2s ease;
}
.suggestion-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
#suggestions::-webkit-scrollbar {
    width: 8px;
}
#suggestions::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

#suggestions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
.thumbnail {
    cursor: pointer;
}

.fade-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
    z-index: 1;
}

h1{
    font-family: Lovelace Text;
    src: url(lovelace-text-regular.otf) format('opentype');
}

.dash{
    transition: 0.3s;
}

.dash:hover{
    transform: scale(1.1);
}
