* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #1e2a3e;
}

.app {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid #e2e8f0;
    background: white;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #404365;
    font-family: Hurricane;
}

.nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #2c3e50;
    background: none;
    display: inline-block;
}

.nav-link.active {
    background: #404365;
    color: white;
}

.nav-item {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    color: #2c3e50;
}

.two-forms {
    display: flex;
    gap: 40px;
    padding: 40px 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-box {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #eef2f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid #cfdfea;
    font-size: 14px;
    font-family: inherit;
}

.btn-submit {
    background: #404365;
    color: white;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.social span {
    background: #f1f5f9;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
}

.offer {
    text-align: center;
    font-size: 12px;
    margin-top: 16px;
    color: #6c7a8a;
}


.footer {
    background: #404365;
    text-align: center;
    padding: 120px 200px;
    border-top: 1px solid #dce5ec;
    display: flex;
    gap: 100px;
    justify-content: center;

}

.footer div {
    font-size: 14px;
    color: white;
    margin-top: -25px;
}

.pohy {
    display: flex;
    flex-direction: column;
}
.pohy>p{
    margin-top: 20px;
    margin-bottom: 0px;
}

.page {
    padding: 32px;
}

.search-bar {
    background: white;
    border-radius: 60px;
    border: 1px solid #e2edf2;
    padding: 8px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.search-field {
    flex: 1;
    min-width: 130px;
}

.search-field label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #5a6e7c;
}

.search-field input,
.search-field select {
    padding: 8px 0;
    border: none;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
}

.btn-find {
    background: #404365;
    color: white;
    padding: 8px 28px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.popular {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.popular span {
    background: #eef3fa;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.filters {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.filter {
    background: white;
    border: 1px solid #cfdfea;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
}

.hotels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hotel {
    border: 1px solid #eef2f8;
    border-radius: 24px;
    padding: 20px;
    width: 500px;
    height: 300px;
}

.hotel-name {
    font-weight: 700;
    font-size: 18px;
}

.hotel-info {
    font-size: 13px;
    margin: 6px 0;
    color: #349600;
}

.hotel-price {
    font-weight: 700;
    margin: 8px 0;
    color: #8E68FF;
}

.hotel-wifi {
    font-size: 13px;
    margin: 6px 0;
}

.btn-choose {
    background: #404365;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    margin-top: 12px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.flex-div {
    width: 100%;
    display: flex;
    box-sizing: border-box;
}

.map {
    background: #eef3fa;
    border-radius: 24px;
    padding: 150px;
    padding-bottom: 100px;
    text-align: center;
    margin: 50px 0;
    font-size: 14px;
    width: 500px;
    height: 500px;
    margin-left: 85px;
    white-space: nowrap;
}

.details-title {
    font-size: 26px;
    margin-bottom: 8px;
}

.details-sub {
    margin-bottom: 24px;
    color: #4a627a;
}

.booking-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hotels-list {
    flex: 1.2;
    min-width: 260px;
}

.booking-item {
    background: white;
    border: 1px solid #eef2f8;
    border-radius: 20px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.booking-info {
    font-size: 14px;
}

.btn-pick {
    background: #404365;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.payment {
    flex: 1;
    background: #f9fbfd;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #e2edf2;
}

.payment h3 {
    margin-bottom: 20px;
}

.double {
    display: flex;
    gap: 16px;
}

.btn-pay {
    background: #404365;
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    margin-top: 16px;
    cursor: pointer;
}


.booking-item>img {
    width: 200px;
    height: 100px;
    border-radius: 30px;
}


.hotel>img {
    width: 200px;
    height: 100px;
    border-radius: 30px;
}

.podval>span {
    font-size: 50px;
    color: #ffff;
    text-align: center;
    font-family: Hurricane;


}



@media (max-width: 1060px) {
    .header {
        flex-direction: column;
        gap: 12px;
    }

    .search-bar {
        border-radius: 28px;
        flex-direction: column;
    }

    .booking-layout {
        flex-direction: column;
    }

    .two-forms {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        gap: 12px;
        white-space: nowrap;
        width: 100%;
        padding: 50px 30px;
    }

    .flex-div {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .btn-choose{
        width: 100%;
    }

    .hotel{
         width: 300px;
    }

    .map {
    background: #eef3fa;
    border-radius: 24px;
    padding: 150px;
    padding-bottom: 100px;
    text-align: center;
    margin: 0px 0;
    font-size: 14px;
    width: 500px;
    height: 500px;
    margin-left: 0px;
    white-space: nowrap;
    }

}
