:root {
    --primary-color: #4CAF50;
    /* Fresh Green */
    --primary-dark: #388E3C;
    --secondary-color: #FF9800;
    /* Warm Orange */
    --bg-color: #FAFAFA;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --card-bg: #FFF;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 10;
}

.logo {
    font-size: 1.5em;
    font-weight: 600;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3498db;
    /* Blue from reference */
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #333;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.day-card {
    background: white;
    border-radius: 0;
    /* Cleaner look */
    box-shadow: none;
    transition: all 0.3s;
}

.day-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
}

.day-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: #333;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.day-body {
    padding: 20px 0;
}

.meal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-entry {
    margin-bottom: 20px;
}

.meal-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.meal-cat {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95a5a6;
    font-weight: 600;
    margin-right: 10px;
}

.meal-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.type-Veg {
    background-color: #2ecc71;
}

.type-Non-Veg {
    background-color: #e74c3c;
}

.meal-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

.meal-desc {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: 2px;
}

/* Filters */
.filters {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    margin: 0 15px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 1em;
    position: relative;
}

.filter-btn.active {
    color: #333;
    font-weight: 600;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

/* Footer */
footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    /* Simple hide for now */
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Version Badges */
.version-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #eee;
    color: #555;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
}

.feature-card i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.day-card {
    background: white;
    border-radius: 0;
    /* Cleaner look */
    box-shadow: none;
    transition: all 0.3s;
}

.day-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
}

.day-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: #333;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.day-body {
    padding: 20px 0;
}

.meal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-entry {
    margin-bottom: 20px;
}

.meal-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.meal-cat {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #95a5a6;
    font-weight: 600;
    margin-right: 10px;
}

.meal-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.type-Veg {
    background-color: #2ecc71;
}

.type-Non-Veg {
    background-color: #e74c3c;
}

.meal-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

.meal-desc {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: 2px;
}

/* Filters */
.filters {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    margin: 0 15px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 1em;
    position: relative;
}

.filter-btn.active {
    color: #333;
    font-weight: 600;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3498db;
}

/* Footer */
footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    /* Simple hide for now */
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Version Badges */
.version-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #eee;
    color: #555;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.version-badge:hover,
.version-badge.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Utility */
.hidden {
    display: none !important;
}
/* Toast Notification */
.minals-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    font-weight: 600;
    animation: slideIn 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.minals-toast.fade-out {
    animation: fadeOut 0.5s ease-in forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
