:root {
    --text-opaque: #828282;
    --text-dim: #4f4f4f;
    --text-color: #000000;
    --accent-color: #56CCF2;
    --secondary-color: #e5f5fa;
    --accent-light-color: #86C32A99;
    --accent-shadow-color: #86C32A99;
    --background-hover: hsla(0, 0%, 100%, 0.1);
    --home-color: #f1f1f1c;
    --flatbox-color: #23262a;
    --workspace-color: #171719;
    --menu-color: #202225;
    --panel-color: #f1f1f1;
    --title-color: #24262b;
    --component-border: #424549;
    --component-dim: hsla(0, 0%, 100%, 0.06);
    --component-shade: rgba(0, 0, 0, 0.1);
    --component-color: #34363c;
    --component-highlight: #424549;
    --slider-color: #494b50;
    --normal-opacity: 0.6;
    --hover-opacity: 1;
    --accent-negative: #51555a;
    --splitter-size: 8px;
    --splitter-small-size: 4px;
    --scrollbar-color: #ffffff;
    --scrollbar-color-hover: #ffffff30
}

body{
    font-family: 'Poppins';
    background-color: var(--panel-color);
}

.text-accent{
    color: var(--accent-color);
}
.text-light{
    color: #FFFFFF;
}
.text-shadow{
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.custom-btn{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background-color: var(--accent-color);
    border-radius: 32px;
    height: 46px;
    margin: 10px auto;
    padding: 0 36px;
    
}
.custom-btn:hover{
    background-color: var(--accent-color);
    color: #FFFFFF;
}

.custom-bg-secondary {
    background-color: var(--secondary-color);
}

.hero{
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-self: center;
    position: relative;
}
.historyBtn{
    margin-left: 5%;
}
.main{
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);   
    /* height: 100vh; */
}
.main::before{
    opacity: .8;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: url('../img/trip.jpg');
    background-size: cover;
    background-attachment: fixed;
}
.hero .container{
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    z-index: 1;

}
.hero .title{
    font-family: 'Lobster', cursive;
    /* color: yellow; */
    color: white;
    border-radius: 15px;
    /* background-color: var(--accent-color); */
    background-color: #56cbf291;
    padding: 9px;

}
.hero .searchbar{
    width: 60%;
    margin: 25px 0;
}
.searchbar input{
    border-radius: 32px;
    padding: 15px 20px;
    font-family: 'Poppins';
}
.searchbar input:focus{
    border-radius: 32px;
    padding: 15px 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

.form-section, .result-section{
    position: relative;
    display: flex;
    justify-content: center;
}
.form-section .form-container, .result-section .form-container{
    position: absolute;
    top: 90px;
    margin: 0 auto;
    background-color: #fff;
    z-index: 9;
    width: 90%;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
    margin: 20px auto;
}
.form-container .form-group{
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 8px;
}
.trip-form input, .trip-form select{
    border-radius: 32px;
}

.result-section .result{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer{
    position: relative;
    background-color: var(--panel-color);
}

@media screen and (max-width: 850px) {
    .hero .searchbar{
        width: 90%;
    }
}