/* 

********** HOME PAGE and GENERAL STYLES **********

*/


html {
    font-size: 100%;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    color: #1F2022;
}

body {
font-family: "Playfair Display", serif;
}

h1 {
    font-size: 4rem;
    font-style: italic;
}

h2 {
    font-size: 3rem;
    font-style: bold;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

.header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
}

.logo {
    max-height: 200px;    
}

.navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    min-height: 80px;
    background-color: #275d39;
    padding: .5em 2em;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    align-items: center;
}

.navbar a:hover {
    color: orange;
    transition: all .2s ease-in-out;
}

.navbar a:hover {
    transform: scale(1.1);
}

.header-wrapper a {
    color: antiquewhite;
    text-decoration: none;
}

.hero-img {
    width: 100%;
    display: block;
}

.hero-text {
    background-color: #275d39;
    margin: 0;
    padding: 0;
    text-align: center;
    color: antiquewhite;
    padding: 1rem;
}

.hero-wrapper {
    margin-top: 2em;
}

.main-wrapper {
    max-width: 1200px;
    margin: 7rem auto;
    padding: 2rem;
}

.cards img {
    border-radius: 3px;
    filter: drop-shadow(.25rem .25rem .25rem #000000);
}

.cards {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 3rem;
}

.card-text-wrapper {
    max-width: 60ch;
    font-size: 1.5rem;
}

.footer-wrapper {
    background-color: #275d39;
    padding: 3rem;
}

.footer-wrapper p {
    color: antiquewhite;
    text-align: center;
 }

.social-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2rem;
}


.container {
    position: relative;
    width: 400px;
    height: 300px;
    text-align: center;
    line-height: 300px;

}

.text {
    font-size: 2rem;
    font-weight: bold;
    padding: 10px;
}

.about-text {
    font-size: 1.5rem;
    text-align: left;
    margin-left: 5rem;
    max-width: 75ch;
    padding: 5px;
}

.product-intro {
    font-size: 1.5rem;
    text-align: left;
    margin-left: 5rem;
    max-width: 75ch;
    padding: 5px; 
}

.products-list {
    font-size: 1.5rem;
    text-align: left;
    margin-left: 10rem;
    max-width: 75ch;
    padding: 5px;    
}


/*

********** WORKSHOP PAGE STYLES **********

*/


.announcing-workshop {
    position:relative;
    text-align: center;
}

.coming-soon {
  position: absolute;
  font-size: 5rem;
  color: green;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coming-soon .coming {
    margin-bottom: 0%;
}

.coming-soon .soon {
    margin-top: 0%;
}

.cbw-text {
    text-align: center;
}

.class-button {
    text-align: center;
}

/* 

********** CONTACT PAGE STYLES **********

*/

.page-title {
    text-align: center;
}

.form-labels {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.form-input-field {
    display: block;
    background-color: #275d39;
    opacity: 85%;
    padding: 1rem;
    width: 100%;
    margin-top: .5rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: antiquewhite;
    border-radius: 4px;
}

#message {
    background-color: #275d39;
    /* opacity: 90%; */
    height: 100px;
    border-radius: 4px;
}

/* .form {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem;
} */

.form {
    margin: 5rem;
}

.button {
    background-color: #275d39;
    color: antiquewhite;
    border-radius: 4px;
    padding: 1rem 5rem;
    margin-top: 1rem;
    font-size: 1.25rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.body-wrapper {
    max-width: 50%;
}

.address-block {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.address-block p {
    margin: 0;
    padding: 2px;
}

.button:hover {
    color: orange;
    transition: all .2s ease-in-out;
}

.button:hover { 
    transform: scale(1.1); 
    }

/* 

********** Responsive Design Changes **********

*/

@media screen and (max-width: 950px) {

    .cards {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 3rem;
        margin-bottom: 3rem;
        gap: 3rem;
        align-items: center;
    }
    
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .cards {
        align-items: center;
    }

    .card-text-wrapper {
        align-items: center;
        font-size: 1.15rem;
    }

    .contact-wrapper {
        display: block;
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .body-wrapper {
     margin: 3rem auto;
    }

    .address-block {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

}

@media screen and (max-width: 650px) {

    h1 {
        font-size: 2rem;
    }

    .navbar {
        font-size: 1rem;
        display: block;
    }
}