/**************************/
/* HEADER */
/**************************/

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #9BD7DC;

    /* Because we want header to be sticky later */
    height: 9.6rem;
    padding: 0 4.8rem;
}

.logo {
    height: 6.4rem;
    margin-right: 1.2rem;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo-title a {
    text-decoration: none;
    color: #333;
}

.title {
    font-size: 2.0rem;
    /*font-weight: 700;*/
}

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav {
    width: 4.8rem;
    height: 4.8rem;
    color: #333;
}


/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

#main-nav-list-mobile {
    display: none;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: rgba(0, 73, 255, 0.83);
}

.section-hero {
    background-color: #cdebee80;
    padding: 4.8rem 0 9.6rem 0;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}

.hero-description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
}

.hero-img {
    width: 100%;
}

.hero-video {
    max-width: 64rem;
    max-height: 48rem;
    width: 100%;
    height: 48rem;
    border-style: none;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
    padding: 6.2rem 0;
    border-top: 0.1rem solid #eee;
}

.grid--footer {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 1.2rem;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

.social-icon {
    height: 2.4rem;
    width: 2.4rem;
}

.copyright {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #767676;
    margin-top: 3.2rem;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.contacts {
    font-size: 1.4rem;
    line-height: 2;
}

.address {
    margin-bottom: 2.4rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: inherit;
    color: #555;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #333;
}

/**************************/
/* Our Section */
/**************************/


.our-link:link,
.our-link:visited {
    display: inline-block;
    color: #777;
    text-decoration: none;
    border-bottom: 0.1rem solid #777;
    padding-bottom: 0;
    transition: all 0.3s;
}

.our-link:hover,
.our-link:active {
    color: #666;
    border-bottom: 0.1rem solid transparent;
}

.our-showable {
    width: 30rem;
    margin-bottom: 3.2rem;
}

.our-title {
    font-size: 2.4rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.our-text {
    font-size: 1.8rem;
    line-height: 1.8;
}

/**************************/
/* Reviews Section */
/**************************/

.reviews-section {
    align-items: center;
    justify-items: center;
}

.review {
    background-color: #f3f3f3;
    padding: 5rem;
    border-radius: 2.5rem;
}

.review-creator-profile-picture {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.review-creator {
    display: flex;
    margin-bottom: 1.2rem;
    /*gap: 1rem;*/
    column-gap: 1rem;
}

.review-creator-name {
    font-size: 1.6rem;
    font-weight: bold;
}

.review-creator-info {
    display: flex;
}

.review-creator-rating {
    fill: gold;
    height: 1.8rem;
    width: 1.8rem;
}

.review-creator-date {
    font-weight: lighter;
    font-size: 1.2rem;
    white-space: nowrap;
    margin: 0.3rem;
    color: #999;
}

.review-desc-text {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 2.4rem;
}

.review-creator-infos {
    display: grid;
    grid-template-columns: 1fr;
}

/**************************/
/* Arrival Section */
/**************************/

.section-arrival {
    margin-top: 9.6rem;
}

.map-container {

}

.map {
    height: 60rem;
    width: 100%;
}

.impressum {
    margin-left: 2rem;
    margin-bottom: 5rem;
}

.impressum h1 {
    margin: 4rem 0;
}

.impressum h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.impressum p {
    margin-bottom: 0.2rem;
}


.agb {
    margin-left: 2rem;
    margin-bottom: 5rem;
}

.agb h1 {
    margin: 4rem 0;
}

.agb h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.agb p {
    margin-bottom: 0.2rem;
}
