@import './variable.css';
@import './scrollbar.css';
@import './override.css';
@import './icon.css';
@import './responsive.css';

.main-btn{
    background-color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
}
.main-btn:focus, .main-btn:active, .main-btn:focus-visible, .main-btn:hover{
    border-color: var(--main-color-darker) !important;
    background-color: var(--main-color-darker) !important;
}
.main-color{
    color: var(--main-color) !important;
}

body{
    font-family: 'Open Sans', sans-serif;
}
.first-col {
    position: relative;
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.first-col::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(17, 24, 39, 0.5);
    z-index: 2;
}
.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #9CA3AF;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
    border-color: var(--main-color); 
}

.floating-label {
    position: absolute;
    top: 12.5px;
    left: 16px;
    font-size: 14px;
    color: #666;
    pointer-events: none;
    background-color: #fff;
    padding: 0px 4px 0px 2px;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.input-field:focus + .floating-label,
.input-field:not(:placeholder-shown) + .floating-label {
    top: -10px;
    font-size: 12px;
    background-color: white; 
    color: var(--main-color); 
}
.left-wrap{
    height: 80vh;
}
.form-btn{
    width: 11rem;
}
.main{
    height: 100vh;
}
.nav-footer li:not(:last-child){
    border-right: 1px solid #666 !important;
}
.nav-item-right{
    width: 150px;
    text-align: end;
}
.nav-item-right a{
    width: 75%;
}
.logo{
    width: 240px;
}

.price-wrap .btn {
    width: 100px;
    height: 50px;
    margin-bottom: 10px;
}

.text-green{
    color: #2ECC71 !important
}
.bg-green{
    background-color: #2ECC71 !important;
}
.text-red{
    color: #E74C3C !important
}
.bg-red{
    background-color: #E74C3C !important;
}
.modal-icon{
    width: 40px; 
    height: 40px; 
    margin-bottom: 5px;
    vertical-align: middle;
}
.modal-btn{
    padding: 0.6rem 2.5rem;
    color: #fff;
    font-weight: bold;
    border: 0 !important;
}
.main-content {
    position: relative;
    background-image:  var(--background-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.bg-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), var(--background-image);
    background-size: auto 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
}
.bg-image {
    background-image: var(--background-image);
    background-size: cover; 
    background-position: center center;
    height: 300px; 
    width: 100%;
    border-radius: var(--bs-border-radius-xxl);
    max-width: 100%;
    padding: 0 10px;
}
.nav-link.active{
    color: var(--main-color) !important;
}
