/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff6b6b;
    padding: 15px 50px;
    color: white;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav .nav-links li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #ffe3e3;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    background-color: #ff6b6b;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ff3b3b;
}

.hero-img img {
    width: 600px;
    border-radius: 10px;
}

/* Offers Section */
.offers {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.offers h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.offer-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 15px;
}

/* About Page */
.about {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.about h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-cards .card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.about-cards .card img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.about-cards .card h3 {
    margin-bottom: 10px;
    color: #ff6b6b;
}

.about-cards .card p {
    font-size: 14px;
    color: #555;
}

/* Menu Page */
.menu {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.menu h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.menu-filters {
    margin-bottom: 30px;
}

.menu-filters .filter-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-filters .filter-btn:hover,
.menu-filters .filter-btn.active {
    background-color: #ff3b3b;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-card {
    background-color: white;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card h3 {
    margin-bottom: 10px;
    color: #ff6b6b;
}

.menu-card p {
    font-size: 16px;
    color: #555;
}

/* Gallery Page */
.gallery {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.gallery h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Booking Page */
.booking {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.booking h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.booking form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.booking input {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.booking button {
    background-color: #ff6b6b;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.booking button:hover {
    background-color: #ff3b3b;
}

#formMessage {
    margin-top: 15px;
    font-weight: bold;
    color: green;
}

/* Contact Page */
.contact {
    padding: 50px;
    text-align: center;
    background-color: #fff0f0;
}

.contact h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.map {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #ff6b6b;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact button:hover {
    background-color: #ff3b3b;
}

#contactMessage {
    margin-top: 15px;
    font-weight: bold;
    color: green;
}