:root {
    --primary-color: #1a5c32; /* Dark green from logo */
    --secondary-color: #e56525; /* Orange from logo tagline */
    --bg-color: #f8fcf9;
    --text-dark: #2c3e32;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-logo-text {
    height: 45px;
    width: auto;
    mix-blend-mode: multiply;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    margin-right: 2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8fcf9 0%, #e2f0e8 100%);
}

.hero-content {
    flex: 1;
    padding-left: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.4rem;
    color: #4a5c50;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(229, 101, 37, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1.2s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 101, 37, 0.6);
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-out;
}

.hero-image img {
    max-width: 90%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 5%;
    background: white;
}

.feature-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Menu Page */
.menu-hero {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

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

.menu-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.menu-container {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    border-right: 5px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.item-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.menu-image-showcase {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.menu-image-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-image-showcase:hover img {
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 5% 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    text-align: right;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    margin-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.admin-login-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 92, 50, 0.3);
}

.admin-login-btn:hover {
    background: #154c29;
    transform: translateY(-2px);
    color: white;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    .hero-content {
        padding-left: 0;
        margin-bottom: 3rem;
    }
    .features {
        flex-direction: column;
    }
    .nav-links {
        display: none; /* Add mobile menu later if needed */
    }
}


/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tab-btn:hover {
    background: #f0f7f2;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 15px rgba(26, 92, 50, 0.3);
}

.menu-section {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}
