﻿@charset "utf-8";

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

.fixed .wide-screen{
    position: fixed;
    display: flex;
    width: 100%;
    background-color: white;
    justify-content: center;
    top: 0;  
    z-index: 6;
    border-bottom: solid black 1px;  
}

.fixed .phone-screen {
    display: none;
}

.fixed > span {
    position: fixed;   
}

.name {
    position: -webkit-sticky;
    position: sticky;
    text-align: center;
    color: #3d8a95;
    font-size: 40px;
    top: 0;
}

.links {
    position: -webkit-sticky;
    position: sticky;
}

.links > a {
    top: 0;
    margin: 0;
    text-decoration: none;
    float: left;
    margin-right: 100px;
    color: black;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.links a:hover {
    text-decoration: underline black;
}

footer {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    z-index: 1;
    background-color: #2f6972;
    color: white;
    padding: 5px 0;
}

.footergrid {
    display: grid;
    z-index: -1;
    grid-template-rows: 20% 20% auto 20% 20%;
    grid-template-areas: 
    'about popular logo findus contact';
    margin: auto;
    width: 80%;
    justify-content: center;
}

.footergrid h4 {
    font-family: 'Montserrat', sans-serif;
}

.about {
    grid-area: about;
    padding-right: 40px;
}

.popular {
    grid-area: popular;
    padding-right: 40px;
}

.flogo {
    grid-area: logo;
    padding-right: 40px;
}

.findus {
    grid-area: findus;
    padding-right: 40px;
}

.contact {
    grid-area: contact;
}

.flogo img {
    width: 200px;
    border: solid #2f6972;
    border-radius: 50%;
}

.findus img {
    width: 20px;
}

.footergrid a {
    text-decoration: none;
    color: rgb(216, 216, 216);
}

.footergrid a:hover {
    text-decoration: underline;
}

.footergrid ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/*INDEX*/
.slideshow-container {
    position: relative;
    z-index: 2;
}

.slideshow-container img {
    width: 100%;
    height: 100%;    
}


.myslides {
	display: none;
}

.homeinfo {
    position: absolute;
    left: 50%;
    margin-left: -40%;
    z-index: 4;
    width: 80%;
    top: 150px;
    background-color: white;    
    padding: 10px;

}

.homeinfo h3 {
    font-family: 'Montserrat', sans-serif;
}

#mobile-index-bg {
    display: none;
}

.home-pop {
    position: absolute;
    top: 450px;
    display: grid;
    z-index: 4;
    grid-template-areas:
    'popp popp' 
    'pop1 pop2';
    grid-gap: 40px;
    justify-items: center;
    left: 50%;
    margin-left: -40%;
    width: 80%;
    padding: 15px;
}

#pop-places {
    grid-area: popp;
    background-color: white;
    padding: 10px;
    width: 100%;
}

#pop-places h2 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

#pop1 {
    grid-area: pop1;
    background-color: white;
    
}

#pop2 {
    grid-area: pop2;
    background-color: white;
}

.pop-p img {
    opacity: inherit; 
    transition: 0.3s
}

.pop-p img:hover {
    opacity: 0.6;
}

.pop-p a:hover + div {
    display: block;
}​

.pop-name {
    display: none;
    margin-left: 10px;
}
.pop-p div{
    display: none;
    text-align: center;
    padding: 0;
}


/*PLACES*/
.aplaces {
    display: grid;
    position: relative;
    z-index: 2;
    background-image: url(../bilder/sky.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    opacity: inherit;
    grid-template-areas:
    'place1 place2'
    'place3 place4'
    'place5 place6'
    'linkform linkform'
    'form form';
    padding-top: 100px;
    justify-content: center;
    grid-gap: 50px;
    padding-bottom: 40px;
}

#comp-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 100;
    left: 85%;
    z-index: 6;
    margin: 30px;
}    

#comp-btn button {
    background-color: white;
    padding: 3px;
    color: black;
    border-radius: 10px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.5);
}

#comp-btn button img {
    width :50px;
}

#comp-btn button:hover {
    text-decoration: underline;
}

.aplaces a {
    text-decoration: none;
}

.book-btn a:hover {
    color: white;
    text-decoration: underline;
}

.book-btn {
    float: right;
    background-color: #3d8a95;
    padding: 3px;
    color: white;
    border-radius: 10px;
}

.place {
    background-color: white;
    padding: 10px;
}

.place1 {
    grid-area: place1;
}

.place2 {
    grid-area: place2;
}

.place3 {
    grid-area: place3;
}

.place4 {
    grid-area: place4;
}

.place5 {
    grid-area: place5;
}

.place6 {
    grid-area: place6;
}

.p-info {
    display: block;
    width: 450px;
}

.more {
    display: none;
    color: #3d8a95;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    
}

.morelink a:hover {
    font-weight: bold;
}

/*BOOK (form)*/
.form {
    grid-area: linkform;
}

form {
    grid-area: form;
    max-width: 500px;
	padding-top: 20px;
    background: white;
    margin: 30px auto;
	padding: 20px;
	border-radius: 8px;
	font-family: Arial, Helvetica, sans-serif, Times, serif;
}

form fieldset {
	border: none;
}

form legend {
	font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
    color: #3d8a95;
    font-family: 'Montserrat', sans-serif;
}

form label {
	display: block;
	margin-bottom: 8px;
}

form input,
form textarea,
form select {
	font-family: Arial, Helvetica, sans-serif, Times, serif;
	background: rgba(255,255,255);
	border: none;
	border-radius: 4px;
	font-size: 15px;
	margin: 0;
	outline: 0;
	padding: 10px;
	width: 100%;
	box-sizing: border-box; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	background-color: #e8eeef;
	color:#8a97a0;
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
	margin-bottom: 30px;
}

form input :focus,
form textarea :focus,
form select :focus {
	background: #d2d9dd;
}

form #password {
    text-align: center;
    width: auto;
}

.submit input{
	position: relative;
	display: block;
	color: #FFF;
	margin: 0 auto;
	font-size: 16px;
	text-align: center;
	font-style: normal;
	width: 100%;
	margin-bottom: 10px;
}

.submit input:hover {
    background: #3d8a95;
    color: white;
}

/*COMPARE*/

#compare-bg {
    z-index: 2;
    position: relative;
    background-image: url(../bilder/sky.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    height: 100%;
}

#compare-back a{
    z-index: 3;
    padding-bottom: 400px;
    text-decoration: none;
    background-color: #3d8a95;
    padding: 3px;
    color: white;
    border-radius: 10px;
    margin-bottom: 100px;
}

#compare-back a:hover {
    text-decoration: underline;
}

#compare-container {
    display: flex;
    justify-content: center;
}

#comparetable {
    padding-top: 150px;
    align-self: center;
}

table {
    background-color: white;
    border-collapse: collapse;
    box-shadow: inset 0 1px 0 #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 30px auto;
    text-align: left;
    width: 800px;
}   

th {
    background-image: linear-gradient(#3d8995, white);
    border: 1px solid white;
    padding: 10px 15px;
    position: relative;
    text-shadow: 0 1px 0 #ffffff;  
}

th:after {
    display: block;
    height: 25%;
    left: 0;
    margin: 1px 0 0 0;
    position: absolute;
    top: 25%;
    width: 100%;
}

td {
    border: 1px solid #ffffff;
    padding: 10px 15px;
    position: relative;
    transition: all 300ms;
}  

tr:nth-child(odd) td {
    background: #dfdede;; 
}

tr:last-of-type td {
    box-shadow: inset 0 -1px 0 #fff; 
}

tr:last-of-type td:first-child {
    box-shadow: inset 1px -1px 0 #fff;
}   

tr:last-of-type td:last-child {
    box-shadow: inset -1px -1px 0 #fff;
}   

tbody:hover td {
    color: transparent;
    text-shadow: 0 0 3px #27565c;
}

tbody:hover tr:hover td {
    color: #363636;
    text-shadow: 0 1px 0 #fcfcfc;
}

/*THANK YOU PAGE*/
.thanks {
    background-image: url(../bilder/forest.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
}

.thanks-container {
    text-align: center;
    
}

.thanks div {
    text-align: center;
    font-size: 30px;
}

.thanks h4{
    font-size: 50px;
}

/*ABOUT*/
.bgcontent {
    z-index: 2;
    position: relative;
    background-image: url(../bilder/sky.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 200px;
}

.abt-info {
    background-color: white;
    width: 80%;
    min-height: 200px;
    margin: auto;
    margin-top: 130px;
    padding: 10px;
}

.abt-info span {
    font-weight: bold;
    color: #2f6972;
}

#abt-img1 {
    padding-right: 10px;
    float: left;
    width: 150px;
    height: 200px;
}

#abt-img2 {
    padding-left: 10px;
    float: right;
}

/*FAQ*/
.faq {
    z-index: 2;
    position: relative;
    background-image: url(../bilder/sky.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    padding-top: 50px;
    padding-bottom: 200px;
}

.container {
    max-width: 60%;
    margin: 0 auto;
    padding: 70px 0 20px;
    width: 100%;
}

#faq-h1 {
    text-align: center;
    color: white;
}

.acc {
    border-bottom: 1px solid white;
}

.acc h3 {
    font-size: 25px;
    color: white;
    background-color: rgba(0, 0, 0, 0.37);
    padding: 15px;
    margin: 0;
    cursor: pointer;
    letter-spacing: 2px;
    position: relative;
}

.acc h3:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.acc.active h3:after {
    content: '-';

}

.content {
    background-color: white;
    display: none;
}

.content * {
    margin-top: 0;
    line-height: 1.5;
}

.content-inner {
    padding: 10px;

}

/*MOBILE PHONES*/
@media only screen and (max-width: 992px){
body{
    font-size: 2em;
}

    .fixed .wide-screen{
        display: none;
    }
    
    .fixed .phone-screen {
        position: fixed;
        display: flex;
        width: 100%;
        background-color: white;
        top: 0;  
        z-index: 6;
        border-bottom: solid black 1px;
    }
    
    .name {
        position: -webkit-sticky;
        position: sticky;
        display: flex;
        color: #3d8a95;
        font-size: 60px;
        top: 0;
        padding-left: 50%;
    }

    /*Hamburger menu*/
    .hamburger {
        height: 100%;
        width: 0;
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        overflow: hidden;
        transition: 0.5s;
        padding-top: 20px;
        text-align: center;
    }

    .hamburger ul {
        padding-top: 160px;
        list-style-type: none;
    }

    .hamburger a {
        padding: 8px 8px 8px 32px;
        display: block;
        transition: 0.3s;
        text-decoration: none;
        color: black;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 2px;
        font-size: 50px;
    }

    .hamburger .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 80px;
        margin-left: 50px;
    }

    .nav-hamburger {
        font-size: 60px;
        cursor: pointer;
        float: left;
    }

    /*FOOTER*/
    .footergrid {
        display: grid;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: 
        'about popular'
        'findus contact';
        margin: auto;
        width: 80%;
        justify-content: center;
        grid-gap: 20px;
        padding-bottom: -20px;
        font-size: 0.7em;
    }
    
    .footergrid h4 {
        font-family: 'Montserrat', sans-serif;
    }
    
    .about {
        grid-area: about;
    }
    
    .popular {
        grid-area: popular;
    }
    
    .findus {
        grid-area: findus;
    }
    
    .contact {
        grid-area: contact;
    }
    
    .flogo img {
        display: none;
    }
    
    /*INDEX*/
    .slideshow-container {
        display: none;
        height: 1500px;
    }

    .slideshow-container img {
        display: none;    
    }

    .slideshow-phone{
        z-index: 2;
        position: relative;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 2000px;
    }

  
    .myslides {
        display: none;
    }

    .home-pop {
        top: 1000px;
        display: grid;
        position: relative;
        z-index: 2;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: inherit;
        grid-template-areas:
        'h-info'
        'popp' 
        'pop1' 
        'pop2';
        justify-content: center;
    }

    .homeinfo {
        grid-area: h-info;
    }
    
    /*PLACES*/
    .aplaces {
        display: grid;
        position: relative;
        z-index: 2;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        opacity: inherit;
        grid-template-areas:
        'comp-btn' 
        'place1'
        'place2'
        'place3'
        'place4'
        'place5'
        'place6'
        'linkform'
        'form';
        padding: 150px;
        justify-content: center;
    }

    .aplaces .comparecheck {
        height: 30px;
        width: 30px;
    }

    #comp-btn {
        padding-right: 20px;
        float: right;
    }

    #comp-btn button img {
        width :50px;
    }
    
    .place {
        background-color: white;
        max-width: 450px;
        padding: 10px;
    }

    .place ul {
        font-size: 0.4em;
    }

    form {
        width: 430px;
    }

    form input,
    form textarea,
    form select {
        font-size: 0.8em;
    }

    .submit input {
        font-size: 0.8em;
    }

    /*FAQ*/
    .faq {
        z-index: 2;
        position: relative;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 300px;
        padding-bottom: 350px;
    }

    .acc h3 {
        font-size: 1.3em;
    }

    .content-inner p {
        font-size: 1.3em;
    }

    /*COMPARE*/

    #compare-bg {
        z-index: 2;
        position: relative;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #compare-container {
        display: flex;
        justify-content: center;
        padding-bottom: 400px;
    }

    #comparetable {
        padding-top: 150px;
        align-self: center;
    }

    #comparetable table {
        border: 1px solid black;
        border-collapse: collapse;
        background-color: white;
        border-spacing: 0;
        font-size: 1.2em;
    }

    /*ABOUT*/
    .bgcontent {
        z-index: 2;
        position: relative;
        background-image: url(../bilder/silhouette-of-trees.jpg);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}