* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

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

/* Sections */

.sec-header {
    display: none; /* flex */
    justify-content: center;
    height: 2rem;
    background-color: rgba(88, 88, 88, 0.4);
    top: 0;
    right: 0;
    left: 0;
    position: sticky;
    z-index: 1;
}

.sec-header a { /* work in progress */
    text-decoration: none;
    color: white;
    padding: 0.5rem 2rem;
}

.sec-start {
    background-image: radial-gradient(circle, rgba(10, 9, 8, 0.3), rgba(10, 9, 8, 0)), url("bilder/mainroom.jpg");
    background-size: cover;
    background-attachment: fixed;
    /*background-position: 50%;*/
    height: 100vh;

    display: grid;
    place-items: center;
}

.sec-info {
    background-color: #f2f4f3;
    height: 40rem;
    display: grid;
    place-items: center;
}

.sec-images {
    text-align: center;
    display: grid;
    place-items: center;
    padding-bottom: 2rem;
}

.sec-contact {
    height: 30rem;
    background-color: #f2f4f3;
    display: grid;
    place-items: center;

    font-size: 2.5rem;
}

.sec-end {
    height: 3rem;
    background-color: #5e503f;
    display: grid;
    place-items: center;
    color: #f2f4f3;
}

/* Subsections */
.sec-info .inner {
    width: 1400px;
    display: flex;
    flex-direction: row;
}

.sec-images .inner {
    width: 1400px;
}

.info-right, .info-left{
    width: 50%;
    height: 100%;
    display: grid;
    place-items: center;
}


/* Single Elements*/
.start-btn {
    text-align: center;
    font-size: 3rem;
    /* margin-top: 60vh; */
    padding: 3rem 2rem;
    display: block;
    background-color: rgba(94, 80, 63, 0.9);
    opacity: 0.95;
    color: #f2f4f3;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0.3rem 0.3rem 1rem #0A0908;

    transition: background-color 1s, color 1s, box-shadow 1s;
}

.start-btn:hover {
    background-color: rgba(94, 80, 63, 0.5);
    color: white;
    box-shadow: none;
}

.txt-images {
    font-size: 3rem;
    font-weight: bold;
    padding: 3rem 0;
}

.sec-info img {
    padding: 1rem;
    width: 30rem;
    border-radius: 3rem;
}

.sec-images img {
    border-radius: 2rem;
    width: 25rem;
    margin: 1.5rem;

    transition: transform 0.3s;
}

.sec-images img:hover {
    transform: scale(1.2);
}

.info-check {
    list-style: none;
    font-size: 2rem;
}

.info-check li {
    padding-top: 2rem;
}

.info-check li:before {
    content: '✓ ';
}

.sec-contact a {
    text-decoration: none;
    color: #49111c;
}

/* Responsive */

@media only screen and (max-width: 1350px) {
    .sec-info .inner {
        width: 900px;
    }
    
    .sec-images .inner {
        width: 900px;
    }
}

@media only screen and (max-width: 900px) {
    .sec-info .inner {
        flex-direction: column;
        width: inherit;
    }
    .sec-info img {
        width: 20rem;
    }
    .info-left, .info-right {
        width: 100vw;
    }
    .sec-images img {
        width: 40vw;
        margin: 0.2rem;
    }
    .sec-images .inner {
        width: 100vw;
    }
    .start-btn {
        padding: 1rem;
        font-size: 2rem;
    }
    .sec-contact {
        font-size: 2rem;
    }
    .info-check li {
        font-size: 1.5rem;
    }
    .txt-images {
        font-size: 1.5rem;
    }
}

