
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo img {
    width: 200px;
    height: 200px;
    margin-right: 120px;
}


.logo-text {
    font-size: 86px;
    color: white;
    font-weight: normal;
    text-align: center;
    font-family: Brush Script MT, cursive;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f5f1eb;
    color: #333;
}

header {
    background-color: #3e2c23;
    color: white;
    padding: 15px 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4a373;
}


.hero {
    height: 90vh;
    background: url('../img/coffeebackground.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.hero-text h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-text p {
    margin-bottom: 20px;
}

.menu {
    background-color: #d4a373;
    color: white;
    padding : 10px 20px;
    border-radius: 5px;
}

.intro {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff8f0;
}

.intro h2 {
    margin-bottom: 20px;
    font-size: 28px;
    
}

.intro p {
    max-width: 700px;
    margin: 10px auto;
}


.gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
        box-shadow: 0 4px 8px black;
}



.external {
    text-align: center;
    padding: 20px;
}

.external a {
    color: #6f4e37;
    font-weight: bold;
}


.about {
    text-align: center;
    padding: 40px 20px;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: 10px auto;
}

.about-img {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}

.about-img img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    padding: 20px;
}
.mission {
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.mission p {
    max-width: 700px;
    margin: 10px auto;
}



.contact {
    text-align: center;
    padding: 30px;
}

.contact-form {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;

}

.map {
    padding: 30px;
    text-align: center;
}



.menu-title {
    text-align: center;
    padding: 20px;
    font-size: 30px;
}

.menu-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    gap: 20px;
}


.menu-text {
    width: 40%;
}

.menu-text ul {
    list-style: none;
}

.menu-text li {
    margin: 10px 0;
}


.menu-image {
    width: 40%;
}

.menu-image img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
}
