*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    height:100vh;
    overflow:hidden;
}

.container{
    display:flex;
    height:100vh;
}

/* GAUCHE */

.left{
    width:43%;
    background:#c5b39d;

    display:flex;
    flex-direction:column;
    align-items:center;

    position:relative;
}

.flag{
    width:100px;
    margin-top:20px;
}

h1{
    margin-top:60px;

    font-family:'Cormorant Garamond', serif;

    font-size:120px;
    line-height:0.9;

    text-align:center;

    color:#2d1f0d;
}

.adresse{
    position:absolute;
    bottom:50px;

    text-align:center;

    font-size:18px;
    letter-spacing:2px;

    color:#2d1f0d;
}

/* DROITE */

.right{
    width:57%;

    /*
    EXPORT CANVA :

    hero-food.jpg
    Photo de fond des plats
    */

    background-image: url("/images/mezze.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.btn{
    text-decoration:none;

    background:#c5b39d;

    color:black;

    border:4px solid black;

    border-radius:999px;

    padding:24px 55px;

    min-width:280px;

    text-align:center;

    letter-spacing:3px;

    font-size:18px;

    transition:0.3s;
}

.btn:hover{
    background:#2d1f0d;
    color: white
}

.titre {
    margin-top: 240px; /* ajuste la valeur */
}

.contact-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: #c5b39d;
    color: #2d1f0d;

    padding: 40px;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    margin-bottom: 20px;
}

.contact-text {
    max-width: 700px;
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 40px;
}

.contact-extra {
    max-width: 700px;
    margin-bottom: 40px;
}

.contact-extra h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.btn:hover {
    transform: scale(1.05);
}

@media (max-width: 748px) {

    .left {
        align-items: center;
        justify-content: flex-start;
    }

    h1 {
        font-size: 55px;
        margin-top: 25px;
    }
}