* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: Arial, sans-serif; 
}

body { 
    background-color: #f5f5dc; 
    color: #4a4a4a; 
    text-align: center; 
}

header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 30px; 
    background-color: black; 
    position: relative; 
}

nav a { 
    color: #d49a8b; 
    text-decoration: none; 
    font-weight: bold;
    margin-right: 20px; 
} 

.logo img { 
    width: 40px; 
    height: 40px; 
} 

.hero { 
    padding: 400px 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f4ef; 
} 

.hero h1 { 
    font-size: 72px; 
    color: #c18150; 
    margin-bottom: 20px; 
} 

.hero p { 
    font-size: 38px; 
    color: #fffefd; 
    margin-bottom: 40px; 
} 

.hero .btn { 
    padding: 20px 40px; 
    background-color: #694238; 
    color: white; 
    text-decoration: none; 
    border-radius: 10px; 
    font-weight: bold; 
} 

.testimonials {
    padding: 30px 0; 
    text-align: center;
}

.testimonials h2 {
    font-size: 26px; 
    color: #4a4a4a; 
    margin-bottom: 10px; 
}

.testimonial-item {
    margin: 20px 0; 
    font-size: 24px; 
    color: #7d7d7d; 
}


.specialties {
    background-image: url(../images/coffeebr.jpeg);
    background-size: cover;
     padding: 150px 0; 
     display: flex;
     flex-direction: column;
     align-items: center;
     background-color: #d6c6a1;
    
} 

.specialties h2 { 
    font-size: 36px; 
    color: #fdfbfb; 
    margin-bottom: 20px; 
} 

.specialties a {
     padding: 10px 20px; 
     background-color: #4c4c3f; 
     color: white; 
     text-decoration: none; 
     border-radius: 5px; 
    } 
    
.menu { 
    background-image:url(../images/coffeeblur.jpeg) ;
    background-size: cover;
        display: flex; 
        justify-content: center; 
        flex-wrap: wrap;
        padding: 50px 10px; 
} 
    
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    margin: 0 40px 
}

.menu-item img {
    width: 400px; 
    height: auto; 
    border-radius: 5px; 
} 

.menu-item p {
     margin-top: 10px; 
     font-size: 42px; color: #eedbdb; 
} 

.menu-item span {
         font-size: 32px; 
         color: #ceb7b7;
         
}

.newsletter {
    padding: 100px 0; 
    background-color: #d6c6a1; 
    text-align: center; 
}

.newsletter input {
    padding: 10px;
    margin: 10px 0;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px; 
    background-color: #4c4c3f; 
    color: white; 
    border: none; 
    border-radius: 5px; 
}

footer { 
    padding: 40px 0;
     background-color: #4c4c3f;
     color: white; 
     font-size: 32px; 
     text-align: center; 
     margin: 4px;
} 

footer a { 
    color: white; 
    font-size: 16px;
    margin: 0 10px; 
    text-decoration: none;
}
.hero {
    background-image: url(../images/AdobeStock_280397604.jpeg);
    background-size: cover; 
    background-position: center; 
   
}




