/* --------- Header --------- */
.header {
    position: fixed;
    top: 0;
    z-index: 10;
    padding: 0 80px;
    width: 100%;
    height: 80px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Logo */
.header__logo {
    text-decoration: none;
}

/* Search bar */
.header__search {
    padding: 0 8px;
    width: 300px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

.header__search:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header__search-label {
    padding: 0 16px;
    color: var(--black-color);
    font-size: 1.4rem;
    font-weight: 500;
}

.header__search-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
}

.header__search-icon {
    margin: auto;
    font-size: 1.5rem;
    color: var(--white-color);
}

/* Option */
.header__option {
    display: flex;
    align-items: center;
}

.header__option-language {
    display: flex;
    margin-right: 10px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    transition: 0.2s;
}

.header__option-language:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header__option-language-icon {
    margin: auto;
}

.header__option-language-icon,
.header__option-account-icon {
    font-size: 2rem;
    color: var(--black-color);
}

.header__option-account {
    padding: 5px 5px 5px 10px;
    height: 42px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    transition: 0.2s;
}

.header__option-account:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.header__option-account-icon {
    margin-right: 8px;
}

/* --------- Main --------- */
.main {
    border-bottom: 1px solid #ccc;
}

/* Top banner */
.top-banner {
    margin-bottom: 20px;
}

.top-banner__img {
    border-radius: 0;
}

.top-banner__info-title {
    font-size: 5.5rem;
}

.top-banner__info-btn {
    margin-top: 20px;
}

/* Content */
.main__content {
    padding: 40px 80px;
}

/* Explore */
.explore {
    padding: 10px 0 40px;
}

.explore__wrapper {
    flex-wrap: wrap;
}

.explore-place {
    flex: 0 0 24%;
    display: flex;
    align-items: center;
    padding: 9px 0;
    text-decoration: none;
}

.explore-place__img {
    margin-right: 16px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
}

.explore-place__info {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    color: var(--black-color);
}

.explore-place__info-title {
    margin-bottom: 8px;
    font-weight: 500;
}

.explore-place__info-desc {
    font-weight: 300;
}

/* Mid banner */
.mid-banner__info {
    width: 400px;
}

.mid-banner__info-title {
    font-weight: 500;
    color: var(--black-color);
}

.mid-banner__info-btn {
    color: var(--white-color);
    background-color: var(--black-color);
}

/* Accommodation */
.accommodation-type {
    flex: 0 0 24%;
    text-decoration: none;
}

/* Discover */
.discover-type {
    flex: 0 0 32.5%;
    text-decoration: none;
}

.discover-type__desc {
    display: block;
    font-size: 1.4rem;
    font-weight: 300;
    margin-top: 6px;
}

/* Below banner */
.below-banner__info {
    width: 350px;
}

.below-banner__info-title {
    margin-bottom: 12px;
    font-weight: 500;
}

.below-banner__info-desc {
    color: var(--white-color);
    font-size: 1.8rem;
    line-height: 2.3rem;
}

.below-banner__info-btn {
    margin-top: 40px;
}

/* Category */
.category {
    padding-bottom: 10px;
}

.category__label {
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.08);
}

.category__label-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.category__label-link {
    text-decoration: none;
    position: relative;
    margin: 0 6px 6px 0;
    padding: 12px;
    height: 38px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #717171;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.category__label-link:hover {
    background-color: #f7f7f7;
}

.category__label-link:first-child {
    margin-left: -12px;
}

.category__label-link--active {
    color: var(--black-color);
}

.category__label-link--active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 10px;
    width: calc(100% - 20px);
    height: 2px;
    background-color: rgb(34, 34, 34);
}

.category__name-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.category__name-link {
    text-decoration: none;
    height: 70px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category__name-item {
    flex: 0 0 25%;
}

.category__name-item-name {
    color: var(--black-color);
}

.category__name-item-country {
    color: #717171;
    padding-top: 6px;
}

/* --------- Footer --------- */
.footer {
    padding: 40px 80px 0;
    background-color: #f7f7f7;
}

.footer-category-wrapper {
    display: flex;
    justify-content: space-between;
}

.footer-category {
    flex: 0 0 24%;
    padding-bottom: 40px;
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.08);
}

.footer-category__title {
    margin: 13px 0 20px;
    font-size: 1.4rem;
    color: var(--black-color);
}

.footer-category__list {
    list-style: none;
    padding: 0;
}

.footer-category__link {
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--black-color);
}

.footer-category__item {
    margin-top: 16px;
}

.footer-info {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info__copyright {
    font-size: 1.4rem;
}

.footer-info__copyright-text {
    color: var(--black-color);
}
.footer-info__copyright-text-link {
    text-decoration: none;
    color: var(--black-color);
}

.footer-info__option {
    display: flex;
    align-items: center;
}

.footer-info__option-unit {
    margin-right: 30px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.footer-info__option-unit-lang-icon {
    font-size: 1.8rem;
}

.footer-info__option-unit-lang {
    text-decoration: none;
    margin-right: 10px;
    margin-left: 6px;
    color: var(--black-color);
}

.footer-info__option-unit-currency-icon {
    font-size: 1.8rem;
}

.footer-info__option-unit-currency {
    text-decoration: none;
    margin-left: 6px;
    color: var(--black-color);
}

.footer-info__option-social {
    font-size: 2rem;
}

.footer-info__option-social-link {
    text-decoration: none;
    margin: 8px;
    color: var(--black-color);
}

.footer-info__option-social-link:hover {
    opacity: 0.8;
}
