/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f5ef;
    color: #133d24;
}

h1, h2, h3 {
    margin: 0 0 15px;
}

section {
    padding: 60px 20px;
}

/* NAVIGATION */

/* --- NAVBAR --- */
header {
    /* background: #133d24; */
    padding: 10px 20px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 155px;      /* adjust size here */
    width: auto;
}

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

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile navbar */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #133d24;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu.show {
    display: flex;
}

/* --- HERO BACKGROUND IMAGE --- */
.hero {
    position: relative;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: solid #133d24;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 20px;
    margin-left: 200px;
    margin-right: 200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}


/* Desktop */
.hero-content {
    padding-left: 200px;
    padding-right: 200px;
    /* max-width: 900px; */
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}













/* ABOUT */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 250px;
}

.about-text {
    max-width: 600px;
}

/* MENU */
/* --- MENU SECTION (Minimal Serif Style) --- */

.menu {
    background: #f7f5ef;
    text-align: center;
    padding: 60px 20px;
}

.menu-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.menu-logo {
    width: 200px;
    margin-bottom: 40px;
}

.menu-box {
    background: #ffffff;
    border: 1px solid #dbcfc4;
    padding: 35px;
    margin-bottom: 50px;
}

.menu-item {
    margin-bottom: 35px;
    text-align: left;
}

.menu-item:last-child {
    margin-bottom: 0;
}

/* Title + price aligned like your reference */
.menu-title {
    font-family: "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 18px;
    display: inline-block;
}

.menu-price {
    float: right;
    font-family: "Times New Roman", serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.menu-desc {
    font-family: "Times New Roman", serif;
    margin-top: 5px;
    font-size: 15px;
    color: #333;
}

/* Contact info section */
.menu-order-text {
    font-family: "Times New Roman", serif;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.names {
    font-weight: 600;
    font-size: 20px;
}

/* Footer notes */
.menu-details {
    font-family: "Times New Roman", serif;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
    .menu-price {
        float: none;
        display: block;
        margin-top: 3px;
    }

    .menu-item {
        text-align: center;
    }
}



/* --- GALLERY SECTION --- */

.gallery {
    padding: 60px 20px;
    background: #f7f5ef;
    text-align: center;
}

.gallery h2 {
    font-family: "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #d8cec3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* CONTACT */
.contact {
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #133d24;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background: #133d24;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover {
    background: #0f2f1c;
}

/* FOOTER */
footer {
    text-align: center;
    background: #133d24;
    color: white;
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}










