* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;

}

html,
body {
    height: 100%;
}



body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f1ea;
    color: #3e2c23;

}


header {
    width: 100%;
    background: #3e2c23;
    padding: 20px 50px;
    border-bottom: 1px solid #e5ded6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: white;

}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 600;
}

nav a:hover {
    color: #c08a5d;
}


main {
    flex: 1;
    padding: 40px;
}

.hero {
    background: linear-gradient(135deg, #e6d3b3, #d2b48c);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #3e2c23;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.hero-content {
    max-width: 600px;
}

.hero p {
    margin-bottom: 20px;
    color: #5c3d2e;
    font-size: 26px;
}

.hero button {
    font-size: 20px;
    padding: 14px 30px;
    font-weight: 500;
}

button,
.submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background: #3e2c23;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #8b5e3c;
}

.button {
    display: inline-block;
    font-size: 20px;
    padding: 14px 30px;
    font-weight: 500;
    border-radius: 8px;
    background: #3e2c23;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.boutton:hover {
    background: #8b5e3c;
}


.section h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #3e2c23;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #6b4f3a;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5ded6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}


.section h2 {
    text-align: center;
    margin-bottom: 20px;
}


form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 400px;
    margin: 40px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #d6ccc2;
    background: #fdfaf6;
    color: #3e2c23;
}

textarea {
    min-height: 120px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 100px auto;
}

.menu-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid #e5ded6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-8px);
}

.menu-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 15px;
    color: #6b5e55;
    margin-bottom: 15px;
}

.menu-card span {
    font-weight: bold;
    color: #8b5e3c;
}

.apropos-section p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 800px;
    margin: 25px auto;
    color: #5a4a42;
    text-align: center;
}

.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5c4b3f;
}


.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}


.contact-form button {
    background: #5a3e2b;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #3e2c1f;
}


footer {
    background: #3e2c23;
    color: white;
    text-align: center;
    padding: 15px;
}