:root {
    --primary: #0b2b4f;
    --secondary: #1b4a7a;
    --accent: #ffc107;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, .section-title {
    font-family: 'Playfair Display', serif;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.btn-hero {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary-hero {
    background: var(--accent);
    color: var(--primary);
    border: none;
}
.btn-primary-hero:hover {
    background: #ffdb6e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-outline-hero {
    border: 2px solid white;
    color: white;
}
.btn-outline-hero:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Cards */
.feature-card, .service-card, .news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}
.feature-card:hover, .service-card:hover, .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(11, 43, 79, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Statistics */
.stat-item {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

/* Floating animation */
.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Admin customizations */
.admin-sidebar {
    min-height: 100vh;
    background: var(--primary);
}
.admin-content {
    padding: 20px;
}
.table-actions .btn {
    margin-right: 5px;
}
/* Nearby page */
#locationPrompt i {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
/* Gallery */
.gallery-item {
    cursor: pointer;
    transition: transform 0.2s;
}
.gallery-item:hover {
    transform: scale(1.05);
}
#mealsChart {
    max-height: 400px;
    min-height: 300px;
    width: 100%;
}