@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #222;
}

/* Header avec image de fond */
header {
    background-image: url('bar1.jpg'); /* mets ta photo ici */
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.55);
    text-align: center;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
}

/* Titre avec police Lobster */
header h1 {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background-color: #949494;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #949494;
}

/* Section Contact */
.contact {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-top: 4px solid #949494;
    border-bottom: 4px solid #949494;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
/* Section Google Map */
.map {
    background-color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-top: 4px solid #949494;
    border-bottom: 4px solid #949494;
}

.map h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

.map-embed iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: 4px solid #949494;
    border-radius: 12px;
}

.map-link {
    margin-top: 15px;
}

.map-link a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.map-link a:hover {
    color: #949494;
}
/* Réduit l'espace entre le header et la carte */
header {
    height: auto;
    padding: 100px 0;
}
/* Header avec image de fond */
header {
    background-image: url('fond-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Assombrit un peu le fond pour faire ressortir le texte */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Le bloc central */
header .overlay {
    position: relative; /* indispensable à cause du ::before */
    text-align: center;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5); /* léger fond gris transparent */
}
/* Section infos contact */
.infos {
    background-image: url('fond-header.jpg'); /* tu peux mettre une autre image si tu veux */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infos-box {
    background: rgba(255, 255, 255, 0.8); /* fond blanc semi-transparent */
    padding: 40px 50px;
    border-radius: 10px;
    max-width: 600px;
    text-align: left;
    color: #222;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.infos-box p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.infos-box a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
}

.infos-box a:hover {
    color: #949494;
    text-decoration: underline;
}
