

html{
    scroll-behavior: smooth;
    overflow-x:hidden;
}

body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


.white1 {
    background-color: white;
    height: 600px;
    width:100%;
    z-index: -1;
    position: relative;
}

.gray1 {
    left: 0;
    background-color: rgb(199, 199, 199);
    height: 1900px;
    width: 100%;
    z-index: -1;
    position: relative;
}

.white2 {
    background-color: white;
    height: 450px;
    width: 100%;
    z-index: -1;
    position: relative;
}

.gray2 {
    left: 0;
    background-color: rgb(199, 199, 199);
    height: 790px;
    width: 100%;
    z-index: -1;
    position: relative;
}

#p1 {
    position: relative;
}

#p2 {
    left: 0.25%;
    top: 30px;
    position: absolute;
    width: 99.5%;
}

#p3 {
    background-color: #f5f5f5;
    position: absolute;
    width: 70%;
    left: 15%;
    top: 515px;
    z-index: 3;
    justify-content: center;
    align-items: center;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 1),
        4px 0 20px rgba(0, 0, 0, 1),
        0 -4px 20px rgba(0, 0, 0, 1);
}

.container {
    top: 2px;
    width: 100%;
}

.hero {
    z-index: 1;
    left: 1%;
    width: 98%;
    position: relative;
    height: 700px;
    color: white;
    text-align: center;
}

.content {
    top: 575px;
    left: 1.55%;
    width: 97%;
    position: absolute;
    z-index: 2;
    opacity: 1;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 1),
        4px 0 20px rgba(0, 0, 0, 1),
        0 -4px 20px rgba(0, 0, 0, 1);
}

.background-image {
    background-image: url('image/backhome.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    z-index: 0;
    border-radius: 30px;
    border: 2px solid black;
}

.hero-content {
    margin-left: 0%;
    font-weight: bold;
    text-shadow: -5px 0 5px rgba(0, 0, 0, 1);
    position: relative;
    padding-top: 150px;
    margin-left: 55%;
}

.hero-content h1 {
    margin-top: -20px;
    margin-bottom: 40px;
    color: whitesmoke;
    font-size: 3em;
    top: 0;
}

.hero-content a {
    font-size: 1em;
    display: inline-block;
    margin-top: 20px;
    color: whitesmoke;
    text-decoration: none;
    border-bottom: none;
}

.rental-options {
    margin-top: 30px;
}

.rental-options a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.search-form {
    height: 50px;
    margin-top: 40px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    border-radius: 15px;
    padding-left: 0px;
    padding-right: 0px;
    gap: 100px;
}


.select-menu {
    position: relative;
    width: 100px;
    margin: 20px auto;
}


.sBtn-text {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    height: 25px;
    padding: 2px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

.select-menu ul {
    border: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    font-weight: 400;

}

.select-menu.active .options {
    max-height: 300px;
    opacity: 1;
}

.option {
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    transition: background 0.3s ease;
}

.option:hover {
    background: #f1f1f1;
}


.option .option-text {
    font-size: 18px;
    color: #333;
}

.search-form input {
    text-align: center;
    width: 20%;
    font-size: 18px;
    padding: 10px;
    margin: 0px 40px;
    border: none;
    border-radius: 8px;
}

.search-form button {
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    margin: 0px;
    border: none;
    border-radius: 10px;
    color: black;
    cursor: pointer;
}


.most {
    padding: 50px;
    background-color: #f5f5f5;
    text-align: center;
    padding-bottom: 80px;
}

.most h2 {
    font-size: 34px;
    margin: 2 30px;
}

.most-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.most-item {
    width: 30%;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    transition: transform 0.5s;
}

.most-item:hover {
    transform: scale(1.1);
}

.most-item img {
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

#m5 img {
    transform: scaleX(-1);
}

.most button {
    background-color: whitesmoke;
    color: black;
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    transition: transform 0.5s;
    border: 1px solid black;
    font-weight: bold;
    box-shadow: 3px 5px 15px black;
    text-decoration: none;
    display: inline-block;
}

.most button:hover {
    background-color: whitesmoke;
    transform: scale(1.1);
    border: none;
    box-shadow: 5px 7px 35px black;
}

.most button:hover+.most-item {
    transform: scale(0.2);
    box-shadow: 5px 7px 105px black;
}

.advantages {
    padding: 50px;
    text-align: center;
}

.advantages h2 {
    margin: 0 0 30px;
}

.advantage-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.advantage-item {
    width: 20%;
    margin: 20px 0;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.advantages img{
    filter: invert(49%) sepia(84%) saturate(579%) hue-rotate(140deg) brightness(95%) contrast(95%);
    width: 50%;
    padding-bottom: 20px;
}

.advantagep {
    font-family:helvetica;
    font-weight: 500;
}

.adv1{
    padding-top: 25px;
   padding-bottom: 30px;
}

.moreinfo {
    padding: 50px;
    text-align: center;

}

.moreinfo h2 {
    margin: 0 0 30px;
    font-size: 34px;
    color: #12B1D1;
    font-weight: 900;
    text-shadow: 2px 2px 1px black;
    font-family: Arial;
}

.infoitems li{
    font-size: 21px;
    list-style-type: none;
}



nav {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    left: 6%;
    width: 85%;
    padding: 1px 30px;
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 5%;
    top: 40px;
}

.navitems {
    display: flex;
    align-items: center;
}

.buttonb {
    background: rgb(255 255 255 / 16%);
    border: 0;
    width: 56px;
    height: 52px;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transform: scale(0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.175s;
    margin-left: 20px;
}

.buttonb:hover {
    opacity: 1;
    background: #12B1D1;
}

.burger {
    transform: scale(1.3);
    height: 34px;
}

.burger svg {
    height: 36px;
    transform: translate(-1px, -1px);
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.burger .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
    transition: stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.burger .line-top-bottom {
    stroke-dasharray: 12 63;
}

.is-closed.burger svg {
    transform: rotate(-45deg) translate(0);
}

.is-closed.burger svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.user {
    background-image: url('image/user.png');
    background-size: cover;
    width: 40px;
    height: 36px;
    border-radius: 10%;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}


.nav-menu {
    position: absolute;
    top: 25%;
    left: 77.5%;
    transform: translate(15%,  -50%);
    width: 600px;
    max-width: 90%;
    max-height: 90%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 0.3s ease, transform 0.3s ease;
    
}

.nav-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.nav-menu li {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.nav-menu a {
    font-family: arial ;
    text-shadow: 1px 1px black;
    text-decoration: none;
    color: #12B1D1;
    font-weight: bold;
    display: block;
    width: 100%;
}



.user:hover {
    background-color: #12B1D1;
}

.logo {
    background-image: url(image/logo.png);
    background-size: cover;
    width: 110px;
    height: 90px;
    border-radius: 10%;
    left: 10px;
    margin-top: -25px;
}



.select-menu {
    position: relative;
    width: 200px;
    margin: 20px auto;
}

.select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 1.3s ease;
}

.select-btn i {
    font-size: 18px;
    transition: transform 1.3s ease;
}

.select-btn.active i {
    transform: rotate(-180deg);
}

.options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.select-menu.active .options {
    max-height: 300px;
    opacity: 1;
}

.option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
}

.option:hover {
    background: #f1f1f1;
}

.option i {
    margin-right: 10px;
}