body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 100%;
    color: white;
    background-color: black;
}

.nav img{
    position:fixed;
    height:680px;
    width: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.phone, .location {
    width: 20px;
}

.top-bar {
    display: flex;
    justify-content:flex-start;
    align-items: center;
    padding: 10px 100px;
    background: rgba(0, 0, 50, 0.6);
    position:fixed;
    gap: 110px;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 60px;
}

.contact-info {
    display:block;
    justify-content: center;
    margin-left: 200px;
    font-size: 14px;
}

.logo2{
    padding-top: 200px;
    width: 600px;
}

nav {
    display: flex;
    gap:30px;
}

.nav-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 10px;
    border-radius: 20px;
    cursor: pointer;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.back{
    position:relative;
    background-image: url('images/Fond\ restau.jpg');
    background-size: 100% 100%;
    height: 679px;
    background-repeat:no-repeat;
}

.eye {
    font-size: 50px;
}
.subtitle {
    font-size: 20px;
    margin-top: 15px;
}

.horaires {
    text-align: center;
    margin: 50px auto;
}
.horaires h2 {
    color: #6da3d8;
    font-size: 25px;
}
.horaires-table {
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 15px;
    max-width: 1200px;
    margin: auto;
}
.day {
    font-weight: bold;
}

.concept {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

h1 {
    color: #6da3d8;
    font-size: 35px;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.image-container {
    flex: 1;
}

.image-container img {
    height:500px;
    width: 400px;
    display:flex;
}

.content, .content2 {
    flex: 1;
}

.contact-section {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    padding: 40px;
}

.slider-container {
    flex:1;
    padding-top: 70px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.slider {
    display: flex;
    width: calc(380px * 8);
    animation: slide 15s linear infinite;
}

.slider img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
}

@keyframes slide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-380px * 4)); }
}

.contact-content {
    flex: 1;
    padding-left: 40px;
}

.contact-content h2 {
    font-weight: 800;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type=text], 
input[type=email], 
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 20px;
    box-sizing: border-box;
    margin-top: 6px;
    font-family: inherit; 
    background-color:rgba(0, 0, 139, 0.6);
    color: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #252525;
    color: #5894CC;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1872D9;
    color: #ffffff;
}


footer {
    background-color: black;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 15px;
}

.social-media img{
    width: 40px;
}

.legal-links {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 5px 0;
    transition: 0.3s;
}

.legal-links a:hover {
    color: grey;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        text-align: center;
    }
}

/* Ajoutez ceci à vos fichiers CSS existants */
.top-bar {
    will-change: transform, opacity;
}

.nav-button {
    will-change: transform, opacity;
}

hr {
    height: 2px;
    background: linear-gradient(90deg, transparent, #5894CC, transparent);
    border: none;
    margin: 20px 0;
    transition: width 0.8s ease;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.success-message {
    color: #4CAF50;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #4CAF50;
    border-radius: 5px;
}

.error-message {
    color: #f44336;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #f44336;
    border-radius: 5px;
}