html, body {
    padding: 0;
    margin: 0;
}

body {
    background-color: antiquewhite;
    color: #8f7264;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
}
header nav {
    background-color: rgba(213, 195, 175, 0.5);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.logo {
    background-image: url(/resources/graphics/legadoleaves_logo_nobg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 55px;
    text-indent: -99999px;
    padding: 0;
}
a {
    text-decoration: none;
    color: #1b3117;
}
header nav a {
    color: #8f7264;
    font-size: 13px;
    margin: 5px;
    padding: 20px;
}
.section {
    margin: 10px;
}
.section-title {
    color: #1b3117; 
    display: flex;
    align-items: center;   
}
.left {
    justify-content: flex-start;
}
.center {
    justify-content: center;
}
.right {
    justify-content: flex-end;
}
.varieties-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.variety {
    background-color: rgba(213, 195, 175, 0.5);
    display: flex;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 5px;
    color: #1b3117;
}
.reverse {
    flex-direction: row-reverse;
}
.variety figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}
.variety figure figcaption {
    color: #913a58;
    margin-top: 2px;
    font-size: 12px;
}
.variety figure img {
    width: 85px;
}
.variety:last-child {
    margin-bottom: 0;
}
/* Style for the modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%;  
    overflow: auto;  
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.8);    
    backdrop-filter: blur(5px);
}
.modal-content {
    margin: auto;
    margin-top: 25%;
    display: block;
    width: 80%;
    max-width: 320px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;

}
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 320px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 25px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
/* find us at */
.map-embed-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    padding-bottom: 20px;
}
.map-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
footer {
    background-color: rgba(213, 195, 175, 0.5);
    padding: 10px;
    display: flex;
}
.footer-left h1 {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #8f7264;
    font-weight: bolder;

}
.footer-left p {
    margin: 0;
    font-size: 12px;
    text-align: justify;
}
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}
.footer-right button {
    background-color: #8f7264;
    border-radius: 8px;
    border: none;
    color: antiquewhite;
    font-size: 10px;
    margin-bottom: 5px;
    padding: 4px;
    width: 100px;
    cursor: pointer;
}
.footer-right button a {
    /* background-color: white; */
    color: antiquewhite;
    padding: 4px 20px;
    width: 100px;
}
.footer-right button:hover {
    background-color: #8f7264;
}

/* footer newsletter modal */
.newsletter-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}
.newsletter-modal-content {
    background-color: #fefefe;
    border-radius: 20px;
    box-shadow: 0 0 1px black;
    max-width: 380px;
    margin: 50% auto; /* 50% from the top and centered */
    padding: 10px 15px 15px 15px;
    width: 80%;
}
.newsletter-modal-content h1 {
    font-size: 21px;
    margin-bottom: 0;
}
.newsletter-modal-content p {
    font-size: 12px;
    margin: 8px 0 15px 0;
}
.newsletter-modal-content form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.newsletter-modal-content form input {
    margin: 2px 0;
    padding: 3px;
    width: 100%;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 2px darkgray;
}
.newsletter-modal-content form input:focus {
    outline: 1px solid #8f7264;
}
.newsletter-modal-content form button {
    margin-top: 10px;
    width: 100px;
    background-color: #8f7264;
    border: none;
    color: #fefefe;
    border-radius: 8px;
    padding: 2px;
}
.newsletter-modal-content form button:hover {
    background-color: #9b8479;
}
.newsletter-close {
    color: grey;
    float: right;
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s;
}
.newsletter-close:hover,
.newsletter-close:focus {
    color:dimgrey;
    text-decoration: none;
    cursor: pointer;
}
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
}
.socials a {
    margin: 0 5px;
    width: 25px;
    height: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 5px;
    text-indent: -99999px;
    opacity: 0.8;
}
.instagram {
    background-image: url(/resources/graphics/instagram-ll-logo.png);
}
.medium {
    background-image: url(/resources/graphics/medium-ll-logo.png);
}
.socials a:hover {
    opacity: 1;
}
