@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');


/* .frank-ruhl-libre-< uniquifier> {
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
} */


*{
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    text-decoration: none;
    
}
    /*container for the layout for the page*/
.container{
    display: grid;
    grid-template-areas:
        "header"
        "nav"
        "banner"
        "content";
    padding: 1px;
    background-color: #fcfcfb;
    }

    .container > div.header {
        grid-area: header;
        text-align: center;
    }
    
    .container > div.header img {
        width: 260px;
        height: 150px;
    }

    .container >div.nav {
        grid-area: nav;
        text-align:center;
        background-color:rgba(71, 70, 70, 0.11) ;
        height:fit-content;
    }

    .container > div.nav ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .container >div.nav li {
        grid-area: nav;
        display: inline-block;

    }

    .container > div.nav li a {
        font-family: 'Frank Ruhl Libre';
        color: #000000;
        font-size: 20px;
        display: inline-block;
        justify-content:center;
        padding: 10px;
        padding-left: 40px;
        padding-right: 40px;

    }
    
    .container > div.nav li a:hover{
        background:#1c1b1b86;
        color: #ffffff;
    }

    .container > div.banner {
        grid-area: banner;
    }
    .container >div.banner img{
        width:100%;
        height: auto;
        
    }

    .container >div.content {
        grid-area: content;
        display: grid;
    }


    h2{
        font-family: 'Libre Franklin';
        font-size: 25px;
    }
    h3 {
        font-family: 'Libre Franklin';
        font-size: 20px;
    }

    .box {
        background-color:rgba(71, 70, 70, 0.11) ;
        text-align: center;
        height: auto;
        padding: 20px;
        border-radius: 5px;
    }
    .box1 {
        background-color:rgba(71, 70, 70, 0.11) ;
        text-align: left;
        height: auto;
        margin-top: 5px;
        padding: 20px;

        
    }

    .box li {
        padding: 15px;
        font-family:'Libre Caslon Text';
        display: inline-block;
        justify-content: space-between;
        padding-right: 60px;
        color:#C54343 ;
        font-size: 20px;
        font-weight: bold;
        
    }

    .box1 li{
        display: inline-block;
        color: #C54343;
        font-weight: 600;
        padding-top: 30px;
        padding-left: 100px;
        font-size: 25px;
        

    }
    .box li a {
        padding-bottom: 40px;
        color: #C54343;
    }
    .box1  img{
        padding-right: 30px;
        padding-left: 5px;
        height: auto;
        width: 40%;
        float: right;
        
    }
    .box1 iframe{
        float: right;
        padding-right: 30px;
        width: 40%;
    }

    .box1 p {
        font-family:'Libre Caslon Text';
        padding: 15px;
        line-height: 25px;
        color: #C54343;
        font-weight: bold;
    }
    .photogrid {
        display: flex;
        gap: 5px;
        padding: 5px;
    }

    .photo img{
        width: 100%;
        height: 100%;
        border-radius: 5px;
        object-fit: cover;

    }

    .footer{
        margin-top: 1.5rem;
        text-align: center;
    }

    .footer p {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .footer a{
        text-decoration: none;
        color: #C54343;
    }

    .footer a:hover,
    .footer a:focus{
        color: #912f2f;
        text-decoration: underline;
    }

    /*Menu*/

.section{
    margin-top: 1rem;
    background-color: rgba(216, 215, 215, 0.316);
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.section h2{
    font-family: 'Frank Ruhl Libre';
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-align: center;
    color: #C54343;
}

.section h3{
    font-family: 'Frank Ruhl Libre';
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}
.product-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 1.5rem; 
    margin-left: 1rem;
}

@media (min-width: 640px) {
    .product-grid{
        grid-template-columns: repeat(2, 1fr);
    
    }
    .product-img{
        aspect-ratio: 2/3;
    }
}
@media (min-width: 1024px) {
    .product-grid{
        grid-template-columns: repeat(3, 1fr);
    
    }
}

@media (min-width: 1280px) {
    .product-grid{
        column-gap: 2rem;
    }
}

.product-card{
    display: block;
    text-decoration: none;

}

.product-img{
    width: 60%;
    border-radius: 0.5rem;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: opacity 0.3s ease;
}

.group:hover .product-img{
    opacity: 0.75;
}
.product-card:hover .product-img{
    opacity: 0.75;
}
.product-info{
    margin-top: .5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:space-around ; 
    font-weight: 500;
    font-size: 1.5rem;
}

.product-info h3{
    font-size: 1.5rem;
}
.product-info p{
    font-size: 1.5rem;
}
.miniHead {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.miniHead p{
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    color: #912f2f;
}
.product-note{
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-style: italic;

}

.banner-menu {
    display: block;
}

.banner-menu img{
    width: 100%;
    height: auto;
}

.nav-menu{
    text-align:center;
    /*background-color:rgba(71, 70, 70, 0.11) ; */
    height:fit-content;
}

.nav-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.nav-menu li {       
    grid-area: nav;
    display: inline-block;
}
.nav-menu li a {
    font-family: 'Frank Ruhl Libre';
    color: #000000;
    font-size: 20px;
    display: inline-block;
    justify-content:center;
    padding-top: .5rem;
    padding-left: 2rem;
    padding-right: 2rem;

}

.nav-menu li a:hover{
    font-display: swap;
     font-family: 'Frank Ruhl Libre';
     font-weight: 700;
     font-size: 20px;
     text-decoration: none;

}

    .menu-photos{
        display: flex;
        gap: 5px;
        padding: 5px;
    }

    .photo-menu{
        width: 100%;
        height: 100%;
        border-radius: 5px;
        object-fit: cover;
    }
