* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #F5F0E8;
    color: #1C1C1C;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    background-color: #1C1C1C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 65px;
}

nav .logo a {
    color: #C8913A;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: #F5F0E8;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #C8913A;
}
.hero {
    background-image: url('https://images.unsplash.com/photo-1567364816519-cbc9c4b59571?w=1600');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-contenu {
    position: relative;
    text-align: center;
    color: #F5F0E8;
}

.hero-contenu h1 {
    font-size: 52px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #F5F0E8;
}

.hero-contenu p {
    font-size: 18px;
    color: #C8913A;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.bouton {
    background-color: #C8913A;
    color: #1C1C1C;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.bouton:hover {
    background-color: #a8732e;
}
.menus {
    padding: 60px 40px;
    text-align: center;
}

.menus h2 {
    font-size: 36px;
    color: #1C1C1C;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.menus h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C8913A;
    margin: 10px auto 40px;
}

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

.carte-plat {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 0.5px solid #2E2E2E;
    transition: transform 0.3s;
}

.carte-plat:hover {
    transform: translateY(-6px);
}

.carte-plat h3 {
    font-size: 16px;
    color: #1C1C1C;
    padding: 16px;
    letter-spacing: 1px;
}

.carte-plat img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.contact {
    padding: 60px 40px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: #1C1C1C;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C8913A;
    margin: 10px auto 40px;
}

.formulaire-contenu {
    max-width: 550px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
    border: 0.5px solid #2E2E2E;
}

.champ {
    margin-bottom: 24px;
    text-align: left;
}

.champ label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.champ input,
.champ textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 0.5px solid #2E2E2E;
    border-radius: 4px;
    background-color: #F5F0E8;
    color: #1C1C1C;
    outline: none;
    transition: border-color 0.3s;
}

.champ input:focus,
.champ textarea:focus {
    border-color: #C8913A;
}

.champ textarea {
    height: 140px;
    resize: vertical;
}

.contact .bouton {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
footer {
    background-color: #1C1C1C;
    padding: 40px;
    text-align: center;
}

footer h3 {
    color: #C8913A;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-infos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.footer-infos p {
    color: #F5F0E8;
    font-size: 14px;
    letter-spacing: 1px;
}

.copyright {
    color: #555;
    font-size: 13px;
    letter-spacing: 1px;
}