@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&family=Open+Sans:wght@300;400&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

ul{
    list-style: none;
}

a{
    color:#333;
    text-decoration: none;
}



/* Navbar */
.navbar ul{
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 14rem;
}


.navbar a{
    opacity: 0.5;
    font-weight: 900;
}

.navbar a:hover{
    opacity: 1;
}

.underline{
    background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );
    height: 2px;
}

.dropdown {
    position: relative;
    display: inline-block;
    opacity: 0.5;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-top: 2px solid #db9100;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    opacity: 1;
}

.current{
    border-bottom: 1px solid #ebb200;
}

.current-product{
    background-color: #ebb200;
}

.dropdown-content a:hover {background-color: #ebb200;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover{opacity: 1;}

/* Intro */
.intro{
    background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );    
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 3em 0;
    align-items: center;
}

.intro-container{
    display: flex;
    align-items: center;
    max-width: 1800px;
}

.intro-text{
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro h1{
    font-weight: 700;
    font-size: 4rem;
    color: #fff;
    
}

.intro h3{
    color: #fff;
    font-size: 1.5rem;
    max-width: 80%;
}

.intro img{
    margin-left:4rem;
    height: 500px;
}



/* History */
.history{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    
}

.history h2{
    margin: 3rem 0;
    font-weight: 700;
    font-size: 3rem;
    color: #8b2f08;
    max-width: 1800px;
}

.family-photos-container{
    margin: 1rem 7rem;
    display: flex;
    max-width: 1800px;
}

.family-photos-container img{
    width: 30%;
    border-radius: 10%;
    margin-right: 4rem;
}

.history p{
    margin: 2rem 7rem;
    font-size: 1.2rem;
    max-width: 1800px;
    column-count: 2;
}


/* Products */
.products-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.products-container .subtitle{
    display: flex;
    justify-content: center;
}

.products-container h2{
    margin: 3rem 0;
    font-weight: 700;
    font-size: 3em;
    color: #8b2f08;
    border-bottom: #8b2f08 3px solid;
}

.products{
    display: flex;
    justify-content: space-between;
    margin: 1rem 7rem;
}

.product{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 0 1em;
    height: 100%;
}


.zoom{
    transition: transform .3s;
}

.zoom:hover{
    transform: scale(1.1);
}

.product img{
    /* max-width: 300px;
    max-height: 300px; */
    height: 300px;
    max-width: 300px;}

.product h3{
    margin: 2em 0;
}

.product p{
    max-width: 200px;
}





/* Contact page */
.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info h2{
    margin: 4rem;
    font-weight: 900;
    font-size: 2rem;
}

.contact-info p{
    font-size: 1.3rem;
    font-weight: 500;
}

/* Intro text for about us and product pages */

.text-container{ 
    font-size: 1.1rem;
    margin: 0 15rem;
    padding: 0 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container h1{
    text-align: center;
    margin: 2rem 0;
    font-size: 3rem;
    color: #8b2f08;
    max-width: 1800px;
}

.text-container p{
    margin-bottom: 1em;
    max-width: 800px;
    text-align: left;
}

/* About us Page */

.text-container figure{
    margin: 1rem 0;
}

#image1, #image2{
    /* width: 800px;
    height: 500px; */
    width: 100%;
    max-width: 800px;
    height: auto;
}
#image3{
    height: 500px;
}



/* Honey page */
.honey-product{
    margin: 4rem 15rem;
    display: flex;
    justify-content:center;
    align-items: center;
    max-width: 1800px;
}
.honey-product img{
    height: 300px;
    margin: 0 2rem;
}

.honey-product  p{
    padding: 2em 3em;
    font-size: 1.1rem;
}


/* Propolis page */
.product-page-image{
    margin: 2rem 7rem;
    display: flex;
    max-width: 1800px;
    justify-content: center;
}

.product-page-image img{
    display: flex;
    
    max-width: 450px;
    max-height: 400px;
    margin: 1rem;
    padding: 0 1rem;
    border-radius: 10%;
}


/* Footer */
footer{
    background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );
    color: white;
    margin-top: 4rem;
    height: 100%;
}
footer .info{
    display: flex;
    justify-content: space-between;
    margin: 5rem 7rem;
    padding-top: 3em;
}

footer p,a{
    padding: 5px 0;
}

.contact h2{
    margin-bottom: 1em;
}

.menu h2{
    margin-bottom: 1em;
}

.menu a{
    display: block;
    color: white;
}

.menu a:hover{
    text-decoration: underline;
}

.copyright{
    margin-top: 3rem;
    margin-left: 7rem;
    font-weight: 100;
}

.copyright a{
    color: #fff;
}


@media screen and (min-width:768px) and (max-width:1023px){
    .navbar ul{
        margin-left: 4rem;
        margin-right: 4rem;
    }

    .intro h1, .intro h3{
        margin-left: 4rem;
    }

    .intro h1{
        font-size: 3rem;
    }

    .intro img{
        margin-right: 4rem;
        height: 300px;
    }

    .img-3{
        display: none;
    }

    .family-photos-container{
        margin: 1rem 4rem;
    }

    .family-photos-container img{
        margin: 1rem;
        width: 45%;
        border-radius: 10%;
    }

    .history p{
        margin-left: 5rem;
        margin-right: 5rem;

    }

    .products{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .product{
        margin: 2rem 0;
    }

    .product img{
        max-width: 400px;
    }

    .product p{
        max-width: 500px;
        font-size: 1.2rem;
    }

    footer .info{
        margin: 5rem 3rem;
    }

    .contact-info iframe{
        height: 400px;
    }

    .copyright{
        margin-left: 3rem;
    }

    .text-container{
        margin: 0 5rem;
    }

    

    .honey-product{
        margin-left: 5rem;
        margin-right: 5rem;
    }

    .honey-product img{
        height: 400px;
        margin: 0;
    }

    .honey-product p{
        padding: 0 2rem;
    }
    /* Products pages */
    .product-page-image{
        flex-direction: column;
    }
    
}

@media screen and (min-width:1024px) and (max-width:1439px){
    .intro img{
        height: 300px;
    }

    .family-photos-container img{
        margin-right: 2.5rem;
        width: 30%;
        border-radius: 10%;
    }

    .product img{
        max-width: 200px;
    }
}

@media screen and (min-width:2560px) {
    .navbar li{
        font-size: 1.4rem;
    }
    .products{
        width: 1800px;
    }
    .intro p{
        font-size: 1.4rem;
    }
    .history p{
        font-size: 1.4rem;
    }
    .product p{
        font-size: 1.2rem;
    }
    .text-container p{
        font-size: 1.6rem;
    }
    /* .images-grid{
        margin: 2rem auto;
    } */
    .honey-product{
        margin: 4rem auto;}
    .honey-product img{
        height: 450px;
    }
    .honey-product p{
        font-size: 1.6rem;
    }
    .propolis-product{
        margin:2rem auto;
    }
}

@media screen and (min-width:376px) and (max-width:767px) {
    .navbar ul{
        margin: 1.5rem 0;
        justify-content: center;
    }
    .navbar li{
        margin: 0 0.5rem;
    }
    
    .intro{
        background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );
    }
    .intro-container{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .intro-text{
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .intro h1{
        margin: 1rem 0;
        text-align: center;
        font-size: 3rem;
    }
    .intro h3{
        margin: 0;
        text-align: center;
    }

    .intro img{
        margin: 0;
        max-height: 350px;
    }

    .history h2{
        margin: 2rem 0;
        font-size: 1.7rem;
    }

    .img-3{
        display: none;
    }

    .family-photos-container{
        margin: 1rem 2rem;
    }

    .family-photos-container img{
        margin: 0;
        width: 45%;
        margin: 0.5rem;
    }

    .history p{
        margin-left: 2rem;
        margin-right: 2rem;
        font-size: 1.1rem;
        column-count: 1;
    }

    .products{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .product{
        margin: 1rem 1rem;
    }

    .product img{
        max-height: 300px;
        height: auto;
    }

    .product p{
        max-width: 500px;
        font-size: 1.1rem;
    }

    footer .info{
        margin: 2rem 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    footer .contact{
        width: 250px;
    }
    footer .menu{
        margin-top: 2rem;
        width: 250px;
    }

    .copyright{
        margin-left: 1rem;
    }

    .text-container{ 
        margin: 0 2.5rem;
        padding: 0 0.5em;
    }
    
    .text-container h1{
        margin: 1.5rem 0;
        font-size: 2rem;
    }

    /* .images-grid{
        margin: 0;
        display: flex;
        flex-direction: column;
    } */
    .honey-product{
        flex-direction: column;
        margin: 3rem 1rem;
    }

    .honey-product img{
        height: 300px;
        margin: 1rem 0;
    }

    .honey-product p{
        padding: 1rem 2rem;
    }

    /* Products pages */
    .product-page-image{
        flex-direction: column;
        align-items: center;
    }
    .product-page-image img{
        margin: 2rem 0;
        max-width: 350px;
    }
}

@media screen and (min-width:321px) and (max-width:375px) {
    .navbar ul{
        margin: 1.5rem 0;
        justify-content: center;
    }
    .navbar li{
        margin: 0 0.5rem;
    }
    
    .intro{
        background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );
    }
    .intro-container{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .intro-text{
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .intro h1{
        margin: 1rem 0;
        text-align: center;
        font-size: 3rem;
    }
    .intro h3{
        margin: 0;
        text-align: center;
    }

    .intro img{
        margin: 0;
        max-height: 300px;
    }

    .history h2{
        margin: 2rem 0;
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
    }

    .img-3{
        display: none;
    }

    .family-photos-container{
        margin: 1rem 2rem;
    }

    .family-photos-container img{
        margin: 0;
        width: 45%;
        margin: 0.5rem;
    }

    .history p{
        margin-left: 2rem;
        margin-right: 2rem;
        font-size: 1.1rem;
        column-count: 1;
    }

    .products{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .product{
        margin: 1rem 1rem;
    }

    .product img{
        max-height: 300px;
        height: auto;
    }

    .product p{
        max-width: 500px;
        font-size: 1.1rem;
    }

    footer .info{
        margin: 2rem 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    footer .contact{
        width: 250px;
    }
    footer .menu{
        margin-top: 2rem;
        width: 250px;
    }

    .copyright{
        margin-left: 1rem;
    }

    .text-container{ 
        margin: 0 2.5rem;
        padding: 0 0.5em;
    }
    
    .text-container h1{
        margin: 1.5rem 0;
        font-size: 2rem;
    }

    /* .images-grid{
        margin: 0;
        display: flex;
        flex-direction: column;
    } */
    .honey-product{
        flex-direction: column;
        margin: 3rem 1rem;
    }

    .honey-product img{
        height: 300px;
        margin: 1rem 0;
    }

    .honey-product p{
        padding: 1rem 2rem;
    }
    
    .contact-info h2{
        margin: 2rem;
    }

    /* Products pages */
    .product-page-image{
        flex-direction: column;
        align-items: center;
    }
    
    .product-page-image img{
        margin: 2rem 0;
        max-width: 300px;
    }

}

@media screen and (max-width:320px) {
    .navbar ul{
        margin: 1.5rem 0;
        justify-content: center;
    }
    .navbar li{
        margin: 0 0.5rem;
    }
    
    .intro{
        background-image: radial-gradient( circle farthest-corner at 10% 20%,rgba(255,145,83,1) 0%, rgba(255,209,67,1) 90% );
    }
    .intro-container{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .intro-text{
        margin: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .intro h1{
        margin: 1rem 0;
        text-align: center;
        font-size: 3rem;
    }
    .intro h3{
        margin: 0;
        text-align: center;
    }

    .intro img{
        margin: 0;
        max-height: 280px;
    }

    .history h2{
        margin: 2rem 0;
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
    }

    .img-2, .img-3{
        display: none;
    }

    .family-photos-container{
        margin: 1rem 2rem;
    }

    .family-photos-container img{
        width: 90%;
        margin: 0.5rem;
    }

    .history p{
        margin-left: 2rem;
        margin-right: 2rem;
        font-size: 1.1rem;
        column-count: 1;
    }

    .products{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .product{
        margin: 1rem 0;
    }

    .product img{
        max-width: 250px;
        height: auto;
    }

    .product p{
        max-width: 250px;
        font-size: 1.1rem;
    }

    footer .info{
        margin: 2rem 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    footer .contact{
        width: 250px;
    }
    footer .menu{
        margin-top: 2rem;
        width: 250px;
    }

    .copyright{
        margin-left: 1rem;
    }

    .text-container{ 
        margin: 0 2.5rem;
        padding: 0 0.5em;
    }
    
    .text-container h1{
        margin: 1.5rem 0;
        font-size: 2rem;
    }

    /* .images-grid{
        margin: 0;
        display: flex;
        flex-direction: column;
    } */
    .honey-product{
        flex-direction: column;
        margin: 3rem 1rem;
    }

    .honey-product img{
        height: 300px;
        margin: 1rem 0;
    }

    .honey-product p{
        padding: 1rem 2rem;
    }
    
    .contact-info h2{
        margin: 1.5rem 0;
    }
    .contact-info iframe{
        max-height: 400px;
    }

    /* Products pages */
    .product-page-image{
        flex-direction: column;
        align-items: center;
    }
    
    .product-page-image img{
        margin: 2rem 0;
        max-width: 250px;
    }
}