/* ----------------------------------------------------------
   GLOBAL RESET
---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----------------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------------- */
body {
    font-family: Arial, sans-serif;
    background: #f1d3a6;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */
.header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 20px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    width: 120px;
    max-width: 100%;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #5a3e2f;
    font-size: 16px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links .active {
    color: #ff4c29;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer {
    text-align: center;
    padding: 25px 0;
    background: #111;
    color: white;
    margin-top: 40px;
}

/* ----------------------------------------------------------
   HOME PAGE — ABOUT US
---------------------------------------------------------- */
#aboutus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    min-height: 90vh;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#aboutus .aboutus h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

#aboutus .aboutus h1 span {
    color: #fac031;
    font-family: mv boli;
    font-size: 70px;
}

#aboutus .aboutus p {
    max-width: 500px;
    margin: auto;
    font-size: 18px;
    text-align: justify;
}

.aboutuspic img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ----------------------------------------------------------
   MENU PAGE
---------------------------------------------------------- */
.menu {
    padding: 20px;
    background: #fffaf4;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 2px 10px rgba(150, 110, 80, 0.15);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-img,
.menu-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.price {
    color: #ff4c29;
    font-weight: bold;
}

/* JS highlight */
.active-item {
    border: 2px solid #9ac464;
    background-color: #d8ffd3;
}

/* ----------------------------------------------------------
   GALLERY PAGE
---------------------------------------------------------- */
.section-title {
    font-size: 32px;
    text-align: center;
    margin: 20px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* ----------------------------------------------------------
   CONTACT / ABOUT / RESERVATION (Shared Styles)
---------------------------------------------------------- */
.contact,
.about,
.reservation {
    padding: 30px;
    background: #fffaf4;
    max-width: 600px;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(150, 110, 80, 0.15);
}

.contact h2,
.about h2,
.reservation h2 {
    text-align: center;
    color: #7a4b3a;
    margin-bottom: 15px;
}

.about h3 {
    margin-top: 20px;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ff4c29;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #d93f20;
}

/* ----------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------------------------- */

/* Tablets */
@media (max-width: 992px) {
    #aboutus {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #aboutus .aboutus h1 span {
        font-size: 60px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        justify-content: center;
        gap: 15px;
    }

    #aboutus .aboutus h1 {
        font-size: 32px;
    }

    #aboutus .aboutus h1 span {
        font-size: 45px;
    }

    #aboutus .aboutus p {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }
}