/* font-family: "Sansita", system-ui; */
/* font-family: "Open Sans", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* any common font-family, sizing, weight decisions */
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #262425;
} 

h1 { 
    font-family: "Sansita", system-ui;
     font-weight: 800;
     font-size: 50px;
     color: #464145;
     line-height: 50px;
     text-align: center;

}

h2 { 
    font-family: "Sansita", system-ui;
     font-weight: 700;
     font-size: 40px;
     color: #464145;
}

h3 {
    font-family: "Sansita", system-ui;
    font-weight: 500;
    font-size: 24px;
    color: #464145;

}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #D9B855;
    position: fixed;
    width: 100%;
    padding: 10px 100px;
    flex-wrap: wrap;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
}

nav span a {
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

nav span a:hover {
    color: #C4376C;
}

.toggle {
    display: none;
}
    
.active {
    display: flex;
}

i.fa-bars {
    color: #464145;
    font-size: 30px;
    align-self: center;
}

.book-now {
    padding: 10px 20px;
    background-color: #C4376C;
    color: white;
    border: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;   
}


header {
    background-color: #F0E5EE;  
}

header img{
    object-fit: cover;
    width: 100%;
    max-height: 800px;
    min-height: 300px;
    object-position: top;
    display: block;

   
}

#hero-text {
    padding: 30px 100px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

#hero-text div {
    min-width: 250px;
    flex: 1;

}

header article{
    margin-bottom: 30px;
    margin-left: 50px;
    
}

header .book-now{
    margin-left: 50px;
}

header .more-info {
    margin-left: 10px;
    margin-top: 10px;
    text-wrap: nowrap;

}

.more-info {
    padding: 10px 18px;
    background-color: transparent;
    border: solid 2px #D9B855;
    color: #464145;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;   
}

#about-us {
    background-color: #D9BFD4;
    display: flex;
    padding: 50px 100px;
    flex-wrap: wrap;
}

#about-us aside {
    margin-right: 10%;
    flex: 1;
}
#about-us h2 {
    margin: 30px 0px;
}

#about-us img {
    width: 100%;
}

.space {
    margin-bottom: 30px;
}

#features {
    background-image: url(images/feature-background.jpg);
    background-size: cover;
    padding: 50px 100px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    background-color: black;
}

#features div {
    margin: 10px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#features div img {
    height: 126px; 
    width: 126px;
}
#features h3 {
    color: #D9B855;
    margin-top: 10px;
}

#features .more-info {
    color: white;
} 

#features p {
    color: white;
    margin-top: 20px;
    margin-bottom: 40px;
    flex: 1;
}


#comment-section {
    background-color: #D9BFD4;
    padding: 50px 100px;
}

#comment-section h2 {
    text-align: center;
    padding-bottom: 30px;
}

#comments {
    display: flex;
    flex-wrap: wrap;
}
.comment {
    border: solid 1px #262425;
    padding: 20px;
    flex:1;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}
.comment .comment-text {
    flex:1;
}

#comment-section p, #comment-section img {
    padding-top: 10px;
    padding-bottom: 10px;
}

.commenter {
    display: flex;
    align-items: center;
}

#comment-section .name {
    font-weight: 600;
    padding-left: 10px;
}

#cta {
    background-image: url(images/cta-background.jpg);
    background-size: cover;
    padding: 50px 100px;
    min-height: 600px;
    background-position: bottom;
}

#cta h2 {
    width: 50%;
    padding-top: 100px;
    padding-bottom: 30px;
}

#cta p {
    width: 50%;
    padding-bottom: 30px;
}

#contact {
    background-color: #E4CD88;
    padding : 50px 100px;
    text-align: center;
    display: flex;
}

#contact div {
    flex: 1;
}

#contact p {
    padding-top: 10px;
}

footer {
    background-color: #D9B855;
    padding: 10px 100px;
    

}

#footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer a {
    margin-left: 20px;
    margin-right: 20px;
}

#footer-bottom p { 
    padding-right: 10px;
}
#footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top:  solid 1px #464145;
}
#footer-bottom a {
    text-decoration: none;
}

#footer-bottom a:hover {
    color: #C4376C;
}

/* tablet */
@media (max-width: 900px){
    nav {
        padding: 10px 30px;
    }
    #hero-text{
        padding: 30px 30px;
    }
    h1 { 
        font-size: 40px;
        line-height: normal;
     }
    header article {
        margin-left: 10px;
    }
    header .book-now{
        margin-left: 10px;
    }
    .toggle {
        display: block;
        align-self: center;
    }
    nav img {
        height: 30px;
    }
    nav span {
        flex: 100%;
        display: none;
        text-align: center;
        row-gap: 8px;
        flex-direction: column;
    }
    nav .book-now{
        display: none;
    }

    #about-us {
        flex-direction: column-reverse;
        padding: 30px 30px;
    }
    #about-us img { 
        height: 400px;
        object-fit: cover;
    }
    #about-us h2 {
        margin: 20px 0;
        text-align: center;
        font-size: 30px;
    }
    #about-us article{
        text-align: center;
    }
    #about-us aside{
        margin: 0;
    }

    #features {
        padding: 30px 30px;
    }

    #comment-section {
        padding: 30px 30px;
    }

    .comment {
        margin: 10px;
    }
    
    #comment-section h2 {
        font-size: 30px;
    }
    #cta h2 {
        width: 100%;
        font-size: 30px;
        padding: 40px 0; 

    }

    #cta {
        background-image: url(images/cta-background-small.jpg);
        padding: 30px 30px;
    }
    
    #contact{
        padding: 30px 30px;
    }
    #contact img {
        height: 30px;
    }

    footer {
        padding: 30px 30px;
    }
    footer a {
        margin-right: 0;
    }
    footer img {
        height: 30px;
    }
}
    




@media (max-width: 560px){
  
    #hero-text article {
        padding-top: 15px;
        margin-bottom: 15px;
        
    }
    #hero-text div {
        text-align: center;
    }
    header picture {
        object-position: top;
    }
    #footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
    }
    

   


}


  

