body{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.Header{
    background-image: url(cover.jpg);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.Navbar{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.Navbar img{
    height: 50px;
    width: 200px;
    filter: invert(100%);
}

.nav-container{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-list{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.nav-item{
    width: 75px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.468);
    border-top: 2px solid transparent;
    padding: 10px 5px;
}

.nav-item:hover{
    color: black;
    cursor: pointer;
    border-color: #8e7754;
}

.page-header{
    height: 100vh;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.page-header p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(18px, 4vw, 25px);
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 10px;
    text-align: center;
}

.page-header h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(36px, 8vw, 60px);
    color: rgb(255, 255, 255);
    text-align: center;
}

.button-container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.learn-more{
    background-color: #8e7754;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 55px;
    width: 140px;
    font-size: 14px;
}

.contact-us{
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border: 2px solid #8e7754;
    border-radius: 5px;
    cursor: pointer;
    height: 55px;
    width: 140px;
    font-size: 14px;
}

.learn-more:hover, .contact-us:hover{
    background-color: rgb(255, 255, 255);
    color: black;
}

.who{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.who-container{
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.who-container img{
    width: 45%;
    height: auto;
    min-width: 300px;
}

.who-text{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 50px;
    min-width: 300px;
}

.who-text h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    color: rgb(0, 0, 0);
    padding: 20px;
}

.who-text p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    color: rgb(0, 0, 0);
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.who-text ul{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    color: rgb(0, 0, 0);
    padding: 20px;
    margin-bottom: 20px;
}

.who-text ul li{
    margin: 25px;
    line-height: 1.4;
}

.location{
    width: 100%;
    min-height: 80vh;
    background-color: rgb(251, 244, 235);
    padding: 50px 0;
}

.location-container{
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px 0;
    gap: 40px;
}

.location-container img{
    width: 40%;
    height: auto;
    min-width: 300px;
}

.location-text{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width: 300px;
}

.location-text h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    color: rgb(0, 0, 0);
    padding: 20px;
}

.location-text p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    color: rgb(0, 0, 0);
    padding: 20px;
    line-height: 1.5;
}

.baking{
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #eadcc6;
    padding: 50px 0;
}

.baking h2{
    font-size: clamp(24px, 4vw, 30px);
    margin: 0;
    padding: 20px;
    text-align: center;
}

.baking-container{
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 50px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.card{
    width: 100%;
    max-width: 500px;
    min-width: 280px;
    height: 400px;
    background-color: white;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3{
    font-size: clamp(18px, 3vw, 22px);
    margin: 10px;
    text-align: center;
}

.card p{
    font-size: clamp(14px, 2.5vw, 16px);
    margin: 10px;
    text-align: center;
    padding: 0 20px;
}

.contact{
    min-height: 50vh;
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.contact-container{
    padding: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container img{
    width: 50%;
    max-width: 700px;
    height: auto;
    min-width: 300px;
}

.contact-text{
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 300px;
}

.contact-text h2{
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 20px;
}

.contact-text p{
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.5;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .Header{
        margin-bottom: 400px;
    }
    
    .nav-container{
        width: 95%;
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    .Navbar{
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }
    
    .nav-list{
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .nav-item{
        width: auto;
        min-width: 60px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .page-header{
        width: 95%;
        padding: 0 10px;
    }
    
    .button-container{
        gap: 15px;
    }
    
    .learn-more, .contact-us{
        width: 120px;
        height: 50px;
        font-size: 12px;
    }
    
    .who-container{
        flex-direction: column;
        width: 95%;
        gap: 30px;
    }
    
    .who-container img{
        width: 80%;
        min-width: 250px;
    }
    
    .who-text{
        width: 90%;
        padding: 20px;
        min-width: 250px;
    }
    
    .location-container{
        flex-direction: column-reverse;
        width: 95%;
        gap: 30px;
    }
    
    .location-container img{
        width: 80%;
        min-width: 250px;
    }
    
    .location-text{
        width: 90%;
        min-width: 250px;
    }
    
    .baking-container{
        flex-direction: column;
        width: 95%;
    }
    
    .card{
        margin: 10px;
        min-width: 250px;
        max-width: 400px;
    }
    
    .contact-container{
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    
    .contact-container img{
        width: 90%;
        min-width: 250px;
    }
    
    .contact-text{
        width: 90%;
        min-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .Header{
        margin-bottom: 200px;
    }
    
    .page-header{
        width: 100%;
        padding: 0 15px;
    }
    
    .learn-more, .contact-us{
        width: 100px;
        height: 45px;
        font-size: 11px;
        padding: 8px 15px;
    }
    
    .who-text, .location-text, .contact-text{
        padding: 15px;
    }
    
    .who-text h2, .location-text h2, .contact-text h2{
        padding: 10px;
    }
    
    .who-text p, .who-text ul, .location-text p, .contact-text p{
        padding: 10px;
    }
    
    .card{
        min-width: 200px;
        height: 350px;
    }
    
    .card img{
        height: 150px;
    }
}