/*General Styling*/ 
* {
    box-sizing: border-box; 
}

html {
    background-color: #FFF6EB
} 

h1, h3 {
    text-align: center; 
    color: #061121;  
} 

h1 {
    font-size: 5em; 
    font-family: Zantroke, serif; 
}

h2 {
    font-size: 3em; 
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif; 
} 

h3 {
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif; 
    font-size: 3.6em; 
    font-weight: bold; 
} 

h4 {
    font-family: Arial, sans-serif;
    font-size: 1.5em; 
    text-decoration: none;
    color: #061121; 
} 

p, address {
    font-family: Verdana, Arial, sans-serif; 
    color: #061121;
    font-size: 1.2em;
} 
blockquote {
    font-family: Verdana, Arial, sans-serif; 
    color: #061121;
    font-size: 1.2em;
} 

/*Responsive sizing of fonts*/ 
@media (max-width: 640px) {
    h1 {
        font-size: 3em;
    }
    h3 {
        font-size: 2.5em;
    }
    p{
        font-size: 1.1em; 
    }
} 
@media (max-width: 444px) {
    h1 {
        font-size: 2em;
    }
    h3 {
        font-size: 2em; 
    }
    p {
        font-size: 1.08em;
    }
} 

/*Fonts Downloads*/ 
@font-face {
  font-family: Zantroke;
  src: url('Zantroke.otf');
}

@font-face {
  font-family: MonumentValley;
  src: url('MonumentValley.otf');
}

/*Navigational Bar CSS*/ 
.naviBar {
    display: flex; 
    background-color: #061121;
    flex-direction: row;
    justify-content: center;
} 

.naviBar a{
    color: #FCE4C3; 
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif;
    padding: 1em 1em; 
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;   
    font-weight: bold; 
} 

.naviBar a:hover{
    color: #061121;
    background-color: #88A094;
} 

@media screen and (max-width: 950px) {
  .naviBar {   
    flex-direction: column;
  }
}

/*Main Page Logo Picture*/
.woodenPanel {
    display: flex;
    background-image: url("Images/container.png");
    min-height: 18em;
    margin: auto; 
    padding: 2em 2em;
} 

.stampContainer {
    margin: auto; 
    padding: 1em 1em;
} 

.stamp {
    width: 100%;
    height: auto;
} 

/*Buttons*/
button {
    background-color: #061121;
    border-radius: 12px;
    border: none;
    color: #FCE4C3;
    padding: 1em 1em; 
    font-size: 1.3em; 
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif; 
    font-size: 1.5em; 
    font-weight: bold;
} 

button a {
    text-decoration: none; 
    color: #FCE4C3;
} 

button:hover {
    background-color: #88A094;
    color: #061121;
} 

button a:hover {
    color: #061121;
} 

.getStartedButton {
    display: grid; 
    place-items: center;
} 

/*Main Page, About Us Page*/
.mainImg {
    width: 50%;
    height: 50%; 
    margin: 1.5em; 
} 

.mainContent {
    display: flex; 
    flex-direction: row; 
    margin: 1.5em;
    padding: 0em 2em;
}

.learnMore {
    column-width: auto;  
} 

.learnMoreButton {
    text-align: center; 
}

.AboutUsImg {
    width: 30%; 
    height: auto;
}  

@media screen and (max-width: 1600px) {
    .mainContent {
        flex-direction: column; 
    }
    .mainImg, .AboutUsImg {
        align-self: center; 
    } 
    .learnMoreButton {
        margin: 0 auto; 
    } 
}

@media screen and (max-width: 1000px) {
    .mainImg, .AboutUsImg {
        width: 75%;
        height: 75%; 
    } 
} 

@media screen and (max-width: 800px) {
    .mainImg, .AboutUsImg {
        width: 90%;
        height: 90%; 
    } 
} 

.AboutUsImg {
    width: 75%;
    height: 75%; 
    margin: 1.5em; 
} 

/*Contact Page*/ 
.pictureContain {
    display: grid; 
    grid-template-columns: 33% 33% 33%; 
    text-align: center; 
}

.icons {
    width: 9.6em;
    height: auto;
    padding-top: 1em;
} 

.meansOfContactText {
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif; 
    font-size: 3em; 
    font-weight: bold; 
} 

.contactInfo {
    font-size: 1.5em; 
} 

@media screen and (max-width: 1100px) {
    .pictureContain {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 50px; 
    } 
    .meansOfContactText {
        font-size: 4em; 
    } 
    .icons {
        width: 12em;
    } 
    
    .contactInfo {
    font-size: 1.7em; 
    } 
} 

@media screen and (max-width: 600px) {
    .meansOfContactText {
        font-size: 3em; 
    } 
    .icons {
        width: 9em;
    } 
    
    .contactInfo {
    font-size: 1.2em; 
    } 
}

/*Portfolio page*/ 
.portfolioContain {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.portfolioImages {
    width: 500px;
    height: 333px;
    object-fit: cover;
}

@media screen and (max-width: 1300px) {
    .portfolioContain {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 3em; 
    } 
    .portfolioImages {
        width: 60%; 
    } 
}

@media screen and (max-width: 880px) {
    .portfolioContain {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 3em; 
    } 
    .portfolioImages {
        width: 80%; 
    } 
} 

.portfolioText {
    padding: 1em 2em; 
    text-align: center;
} 

.portfolioPageGallery {
    display: grid; 
    grid-template-columns: 33% 33% 33%; 
    text-align: center; 
}

.GalleryImages {
    height: auto; 
    width: 93%;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.GalleryImages:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media screen and (max-width: 1300px) {
    .portfolioPageGallery {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 3em; 
    } 
    .GalleryImages {
        width: 60%; 
    } 
}

@media screen and (max-width: 880px) {
    .portfolioPageGallery {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 3em; 
    } 
    .GalleryImages {
        width: 80%; 
    } 
}

/*Book Online Page*/
.bookingContain {
    display: grid; 
    grid-template-columns: 50% 50%; 
    text-align: center; 
}

.bookingImages {
    height: auto; 
    width: 75%;
    padding: 2em 0em 0em;
} 

.bookingDIV {
    margin: .5em; 
} 

@media screen and (max-width: 1450px) {
    .bookingContain {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        grid-auto-flow: row; 
        gap: 3em; 
    } 
    .bookingImages {
        width: 60%; 
    } 
} 

@media screen and (max-width: 460px) {
    .bookingImages {
        width: 80%; 
    } 
}

/*blog page*/ 
.BlogPosts {
    display: flex; 
    flex-wrap: wrap;    
    flex-direction: row; 
    margin: 3em; 
    width: 90%; 
    margin: auto; 
} 

.BlogPostContent {
    padding: 3em;   
    margin: .5em;   
} 

.BlogPostImg {
    width: 30%; 
    float: right; 
    margin-left: 3em;   
} 

.headText {
    font-size: 2em; 
} 

.headText a{
    text-decoration:none; 
    color: #061121;  
} 

.headText a:hover{
    text-decoration:none; 
    color: #88A094;  
} 

.blurbText {
    font-size: 1.5em;
} 

.blurbButton {
    padding: 1em 1em; 
    font-size: 1.3em; 
    font-size: 1.5em; 
    font-weight: bold;
} 

/*blog Pages*/ 
.blogPost {
    background-color: ; 
    padding: .1em; 
    margin: auto;
    width: 80%; 
} 

.blogSnippet {
    margin: 3em; 
    text-align: center; 
    text-decoration:;
} 

.blogWriting {
    margin: 3em; 
} 

.BlogPicture {
    margin: auto; 
    width: 55%; 
    display: block; 
} 

@media screen and (max-width: 1100px) {
    .BlogPostImg { 
        display: none;  
    } 
} 

@media screen and (max-width: 1300px) {
    .headText{
        font-size: 1.6;
    } 
    .blurbText {
        font-size: 1.4em;
    } 
} 

@media screen and (max-width: 1200px) {
    .headText {
        font-size: 1.3em;
    } 
    .blurbText {
        font-size: 1.2em;
    } 
} 

/*Error Page*/ 
.ErrorText {
    text-align: center; 
} 

.ErrorButton {
    display: flex; 
    align-items: center; 
    justify-content: center;    
} 

/*links*/
.linkdesign {
    color: #061121; 
    text-decoration: none;
} 

.linkdesign:hover {
    color: #88A094;
}

/*Bottom Navi*/ 
.footer {
    display: flex; 
    flex-direction: row; 
    background-color: #061121;
} 

.footer a{
    color: #FCE4C3; 
    font-family: MonumentValley, Helvetica, Verdana, Arial, sans-serif;
    padding: 1em; 
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;   
    font-weight: bold; 
} 

.footer a:hover{
    color: #061121;
    background-color: #88A094;
} 

@media screen and (max-width: 988px) {
  .footer {   
    flex-direction: column;
  }
}

/* Portfolio Page Header Adjustments */
.portfolioPage .stamp {
    width: 188px;
    height: auto;
}

.portfolioPage .woodenPanel {
    min-height: 10em;
    padding: 1em;
}