/* ===== GENERAL ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
    padding: 0;
}

/* ===== HEADER ===== */
header {
    background: #2E7D32;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: row; /* Desktop horizontal */
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: white;
    color: #2E7D32;
    border-radius: 5px;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background: #f4f4f4;
    color: #2E7D32;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== HERO ===== */
.hero {
    padding: 60px 40px;
    background: #F1F8E9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h2 {
    font-size: 36px;
    color: #2E7D32;
}

.hero-text p {
    font-size: 18px;
    margin: 20px 0;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== MENU (Accordion) ===== */
.title {
    text-align: center;
    color: #2E7D32;
    font-size: 30px;
    margin: 40px 0 20px 0;
}

#menu {
    width: 90%;
    max-width: 700px;
    margin: auto;
    padding: 0;
}

#menu li {
    list-style: none;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Day header */
#menu li .day-header {
    background: #2E7D32;
    color: white;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#menu li .day-header:hover {
    background: #1B5E20;
}

/* Meals list */
#menu li ul {
    display: none; /* collapsed default */
    background: #f4f6f8;
    padding-left: 15px;
    border-left: 3px solid #2E7D32;
}

#menu li ul li {
    padding: 8px 12px;
}

.food {
    background: #f1f8f4;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order {
    background: #ff7a00;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.order:hover {
    background: #e65c00;
}

/* ===== TABLET & DESKTOP ===== */
@media(min-width: 768px) {
    #menu li ul {
        display: block !important; /* Always expanded on desktop */
    }
    #menu li .day-header {
        cursor: default;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #2E7D32;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    text-align: center;
    background: #FAFAFA;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
}

.contact textarea {
    height: 120px;
    resize: none;
}

.contact button {
    padding: 12px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background: #1B5E20;
}

.contact form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}


/* MENU ACCORDION */
