.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(255, 242, 205);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-icon {
    height: 50px;
}

.ul-navbar {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.a-navbar {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.a-navbar:hover {
    color: #33d601;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/back.png');
    background-size: cover;
    color: white;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: aquamarine;
}

.operational-hours {
    background: rgb(255, 242, 205);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.operational-hours h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.operational-hours table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.operational-hours td {
    padding: 1rem;
    border: none;
    background: #cbcbcb;
}

.operational-hours td:first-child {
    font-weight: 600;
    border-radius: 6px 0 0 6px;
}

.operational-hours td:last-child {
    border-radius: 0 6px 6px 0;
    color: #004e2c;
    font-weight: 500;
}

.operational-hours h3 {
    color: #666;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.food-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.category-menu {
    background: rgb(255, 242, 205);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.category-menu:hover {
    transform: translateY(-5px);
}

.category-menu h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.menu-description {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.menu-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.menu-images img {
    /* Recommended image dimensions: 560x315px (16:9 ratio) */
    width: 100%;
    height: 315px;
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 8px;
    background-color: rgb(255, 242, 205); /* Light background for images */
    padding: 0.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-images img:hover {
    transform: scale(2);
}

.order-now {
    text-align: center;
    padding: 4rem 2rem;
    background: rgb(255, 242, 205);
}

.order-button {
    display: inline-block;
    margin: 1rem;
}

.order-button a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #01d679;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.order-button a:hover {
    background: #016d3e;
}

.container-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 3rem 2rem;
    background: rgb(255, 242, 205);
    color: rgb(14, 13, 13);
}

.footer-halal img {
    max-width: 50px;
    height: auto;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #01d679;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    background: #00b867;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .container-footer {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .footer-halal {
        order: -1;
        margin-bottom: 1rem;
    }
}
