* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    
 
    background-image: url('img/restaurant.png');
    background-size: cover;       
    background-position: center; 
    background-repeat: no-repeat;
    min-height: 100vh;
}


.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.7); 
    margin: 20px auto;
    max-width: 900px;
    border-radius: 15px;
}


.image-container {
    position: relative;
    width: 100%;
    max-height: 500px; 
    overflow: hidden;
}


#restau {
    width: 100%;
    display: block;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.image-container {
    position: relative;
    width: 100%;
    max-height: 500px; 
    overflow: hidden;
}


#restau {
    width: 100%;
    display: block;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero h1 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e1bc72;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.2s, transform 0.2s;
}

.btn:hover {
    background-color: #e7b756;
    transform: translateY(-2px);
}


nav {
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #e1bc72;
    position: relative;
}

#logo {
    height: 120px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: white;
}


.footer {
    text-align: center;
    padding: 20px;
    background-color: #e1bc72;
    color: #000;
    font-size: 14px;
    margin-top: 40px;
}



@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

.page-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 50px 0 40px;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e1bc72 0%, #c9973a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Lato', sans-serif;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
}

.card-body .badge {
    background-color: #f5f0e8;
    color: #c9973a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.card-body p {
    font-size: 13.5px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-body p.note {
    font-size: 15px;
    color: #1a1a1a;
    margin-top: 4px;
}

.card-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    background-color: #e1bc72;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    text-align: center;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.card-btn:hover {
    background-color: #c9973a;
    color: #fff;
    transform: translateY(-2px);
}

.container {
  width: 1200px;
  margin: auto;
}

/* Tablette */
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .menu {
    flex-direction: column;
  }
}
