/* ==========================
   GENERAL STYLES
========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f2e9; /* cream white */
    color: #333;
    scroll-behavior: smooth;
}

h2 {
    color: #d87100;
}

/* ==========================
   NAVIGATION
========================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(235, 230, 216, 0.9);
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    color: #d87100;
    font-weight: bold;
}

nav a {
    color: #333;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #d87100;
}

/* ==========================
   SECTIONS
========================== */
section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px 50px;
    box-sizing: border-box;
}

/* ==========================
   HERO SECTION
========================== */
#hero {
    background: url('IMAGES/homepage.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ==========================
   ABOUT SECTION
========================== */
.about-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-big {
    width: 45%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.about-text {
    width: 50%;
    font-size: 17px;
    line-height: 1.6;
}

/* ==========================
   MENU SECTION
========================== */
.menu-buttons {
    margin-bottom: 20px;
}

.menu-buttons button {
    margin: 5px;
    padding: 10px 15px;
    background: #d87100;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-buttons button:hover {
    background: #b85f00;
}

.menu-list {
    margin-top: 15px;
}

.menu-item {
    display: flex;
    gap: 15px;
    background: #d8bc92;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    align-items: center;
}

.food-img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.hide {
    display: none;
}

/* ==========================
   EVENTS SECTION
========================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.event-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.event-card h3 {
    margin: 10px 0 5px;
    color: #333;
}

.event-card p {
    font-size: 0.9rem;
    color: #555;
}

/* ==========================
   GALLERY SECTION
========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-card img {
    width: 100%;
    border-radius: 10px;
}

.gallery-card p {
    text-align: center;
    margin-top: 8px;
}

/* ==========================
   BOOKING FORM
========================== */
.book-container {
    background: #52504f;
    padding: 25px;
    width: 80%;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.book-form {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.book-form input {
    width: 23%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
}

.book-form button {
    padding: 12px 20px;
    background: #d87100;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 20%;
    transition: background 0.3s ease;
}

.book-form button:hover {
    background: #b85f00;
}

/* ==========================
   RESPONSIVE STYLES
========================== */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-buttons, .events-grid, .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
    }

    .menu-item div {
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .book-form input, .book-form button {
        width: 100%;
    }

    .book-form {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    nav .logo {
        font-size: 1.5rem;
    }

    .hero-buttons a {
        margin: 10px 0;
        display: block;
        width: 80%;
        text-align: center;
    }

    .menu-item div, .event-card p, .about-text {
        font-size: 0.9rem;
    }
}
