
:root{
    --primary: white;
    --secondary: rgb(78, 78, 226);
    --lightsecondary:rgb(0, 0, 0);
    --textcol:black;

    --startheight: 260px;
}
p, ul{
    padding:0 10px 0 10px
}
hr{
    color:var(--secondary)
}

body{
    background-color: var(--primary);
    margin:10px 0 10px 0;
}
main{
    max-width: 1280px;
    margin: auto;
    padding:5px
}

nav{
    display:grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: 50px;
    text-align: center;
    margin: auto;
}
nav a{
    width:90%;
    transition: background-color .5s;
    font-size: 20px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a:hover{
    background-color: var(--lightsecondary);
}
a{
    color: var(--secondary);
    text-decoration: none;
}
header h1{
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    font-family: 'Caveat',Arial;
    font-weight: bold;
}

header h2{
    margin-top:6px;
    font-size: 30px;
    font-weight: bold;
    font-family:Kalam, Arial, Helvetica, sans-serif;
    color:rgb(119, 119, 119);

}
footer, h2{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

h2{
    font-family:Kalam, Arial, Helvetica, sans-serif;
    color: var(--textcol);
}

#MainSite{
    display:flex;
    background-color: aliceblue;
    height: var(--startheight);
    overflow-x:scroll;
    overflow-y:hidden;
    scroll-snap-type: x mandatory;
    padding:10px 0 10px 0;

}
button{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 2px double var(--secondary);
    background-color: var(--secondary);
    transition: background-color .5s;
    color:white;
    height:100%
}
button:hover{
    background-color: var(--lightsecondary);
    transition: background-color .5s;
}
button:active{
    color:var(--primary);
}

#Welcome{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30px 273px;
}#Welcome h2{
    grid-area: 1/1 /2/3;
}#Welcome img{
    margin:auto
}#Welcome p{
    display: flex;
    justify-content: center;
}

#Rooms div{
    width: 100%;
    text-align: center;
}
#Rooms #Subtext{
    width: 100%;
    text-align: center;
    font-weight: bold;
}

#Accommodations{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30px 50px 300px;
}
#Accommodations ul{
    grid-area: 3/1 /4/2;
    list-style-type: disc;
    list-style-position: inside;
}
#Accommodations h2{
    grid-area: 1/1 /3/3;
    
}
#Accommodations p{
    grid-area: 2/1 /3/3;
    text-align: center;
}#Accommodations img{
    grid-area: 3/2 /4/3;
}

#Policies ul{
    list-style: disc;
    list-style-position: inside;
}


#ReadMore{
    width:100%;
}

h2{
    font-weight: bold;
    font-size:30px;
}

figure{
    width:100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 10px 15px 0 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}
img{
    overflow: hidden;
}
#AtLinks{
    display: flex;
    align-items: center;
    margin:0 0 10px 0;
    overflow: hidden;
}#AtLinks :hover{
    background-color: var(--lightsecondary);
    transition: background-color .5s
}
#Attractions a{
    font-size: 20px;
    margin: 0 10px 0 10px;
    text-align: center;
    background-color: var(--secondary);
    border: 2px inset var(--secondary);
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    height: 65px;
}
#Attractions ul{
    list-style:disc;
    list-style-position: inside;
}

p, li,#Location a{
    font-size: 20px;
    color:var(--textcol);
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
#Location a{
    width: 200px;
    text-align: center;
    margin: auto;
}
strong{
    font-weight: bold;
}

#ReadMore{
    margin:auto;
    transform: translateY(15px);
}
/* Mainsite section */
@keyframes ReadMore{
    0%{
        height:var(--startheight);
    }
    100%{
        height: 850px;
    }
}
.Open{
    animation: ReadMore 1s ease-out;
    animation-direction: normal;
    animation-iteration-count: infinite;
}
.Close{
    animation: ReadMore 1s ease-out;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}
/* Form Section */
@Keyframes OpenForm{
    0%{
        height:2px;
    }
    100%{
        height: 340px;
    }
}

.FormOpen{
    animation: OpenForm 1s ease-out;
    animation-direction: normal;
    animation-iteration-count: infinite;
}
.FormClose{
    animation: OpenForm 1s ease-out;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}

iframe{
    width:265px;
    height: 200px;
}

#Contact{
    display: grid;
    margin-top: 30px;
    height: fit-content;
}

#Address{
    margin:auto;
}

#Location{
    margin:auto;
}
#Location a{
    color: var(--secondary);
}

#FormOpen{
    width: 100%;
}

/* Form */
#FormContainer{
    grid-area: 1/2 /1/3;
    margin: auto;
    display: flex;
    flex-flow: column;
}
#FormContainerSubmitted{
    grid-area: 1/2 /1/3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 2px double var(--secondary);
    width: 400px;
    height:340px;
    font-family: Kalam,Arial, Helvetica, sans-serif;
}
#Form{
    border:double 2px var(--secondary);
    overflow:hidden;
    width:400px;
    height:fit-content;
    height: 2px;
    display: flex;
    align-items: center;
}

form{
    margin:auto;
    display: flex;
    flex-flow: column wrap;
    gap:6px;
}

form p{
    width:350px;
    background-color: var(--primary);
}
.Contact{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}
label{
    font-family: Arial, Helvetica, sans-serif;
}
input{
    margin-bottom: 10px;
}
input, textarea{
    width:350px;
    font-size: 18px;
    border-radius: 20px;
}
#submitInfo{
    margin: auto;
    height:40px;
    width: 358px;
}
/* honeypot */
#address{
    display: none;
}
form p input{
    background-color: aliceblue;
}

form p span{
    color: red;
}

html{
    scroll-behavior: smooth;
}
