/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1c638a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-link {
    background: none;
    padding: 0.5rem 1rem;
    color: #3498db;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-minimal {
    background-color: white;
    border-bottom: 1px solid #ecf0f1;
    padding: 1rem 0;
}

.header-dashboard {
    background-color: white;
    border-bottom: 1px solid #ecf0f1;
    padding: 0.75rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: cover;
    background-color: #e74c3c;
    border: 2px solid transparent;
}

.nav-brand-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Logo loading state */
.nav-brand-logo[src=""] {
    background-color: #e74c3c;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

.nav-brand-text h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.nav-brand-text .tagline {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: -2px;
}

.nav-brand a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #f1f2f6;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting {
    font-weight: 500;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Content Sections */
.about, .mission, .cta {
    padding: 4rem 0;
}

.about {
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

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

.feature h4 {
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.mission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.mission h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-item {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.mission-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta {
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #bdc3c7;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.auth-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 2rem 1rem;
}

.auth-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #3498db;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.auth-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-hint {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.auth-switch {
    text-align: center;
    color: #7f8c8d;
}

.auth-note {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #5a6c7d;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-error {
    background-color: #fee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.alert-success {
    background-color: #f1f8e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Dashboard Styles */
.dashboard-page {
    background-color: #f8f9fa;
}

.dashboard-main {
    padding: 2rem 0;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.dashboard-welcome h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-actions .btn-primary,
.dashboard-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Statistics */
.stats-section {
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    flex: 1;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.stat-card .stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Sections */
.recent-section, .actions-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
}

.view-all-link {
    color: #3498db;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.empty-state p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Restaurant Cards */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.restaurant-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.restaurant-header h4 {
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-open {
    background-color: #d4edda;
    color: #155724;
}

.status-defunct {
    background-color: #f8d7da;
    color: #721c24;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-approved {
    background-color: #d4edda;
    color: #155724;
}

.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.restaurant-details p {
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.restaurant-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

/* Action Cards */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-2px);
}

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

.action-card h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.action-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

/* Form Error Styles */
.form-error {
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Success Notification Styles */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid #d4edda;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.success-content {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-text h4 {
    margin: 0 0 0.5rem 0;
    color: #155724;
    font-size: 1rem;
    font-weight: 600;
}

.success-text p {
    margin: 0 0 0.75rem 0;
    color: #155724;
    font-size: 0.9rem;
    line-height: 1.4;
}

.success-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.success-link:hover {
    border-bottom-color: #27ae60;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #f8f9fa;
}

.modal-body {
    padding: 2rem;
}

/* Form Styles */
.restaurant-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-brand-text h1 {
        font-size: 1.5rem;
    }
    
    .nav-brand-text .tagline {
        font-size: 0.75rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

/* Featured Restaurant Section */
.featured-restaurant {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.featured-restaurant h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.featured-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.featured-header h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.featured-details {
    margin-bottom: 2rem;
}

.featured-location, .featured-cuisine {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.featured-description {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.featured-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-empty h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-empty p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* Restaurant Profile Page Styles */
.restaurant-main {
    background-color: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.restaurant-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
}

.restaurant-hero-content {
    max-width: 800px;
}

.restaurant-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.restaurant-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cuisine-badge {
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-location {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.restaurant-content {
    padding: 3rem 0;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.restaurant-main-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.restaurant-section {
    margin-bottom: 2.5rem;
}

.restaurant-section:last-child {
    margin-bottom: 0;
}

.restaurant-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.restaurant-description, .signature-dishes {
    color: #2c3e50;
    line-height: 1.7;
}

.restaurant-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.restaurant-info-card, .restaurant-contact-card, .restaurant-actions-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.restaurant-info-card h3, .restaurant-contact-card h3, .restaurant-actions-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-list, .contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-label {
    font-weight: 500;
    color: #5a6c7d;
    min-width: 80px;
}

.info-value {
    text-align: right;
    color: #2c3e50;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Error Page Styles */
.error-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem 1rem;
}

.error-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-card h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.error-card p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Joyous Link */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-joyous {
    display: flex;
    justify-content: flex-end;
}

.joyous-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.joyous-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.joyous-thumbnail {
    width: 100px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.joyous-info {
    display: flex;
    flex-direction: column;
}

.joyous-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.joyous-subtitle {
    font-size: 0.8rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .featured-actions {
        flex-direction: column;
    }
    
    .featured-card {
        padding: 1.5rem;
    }
    
    .restaurant-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .restaurant-name {
        font-size: 2rem;
    }
    
    .restaurant-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-joyous {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container, .nav-container, .dashboard-container {
        padding: 0 0.5rem;
    }
    
    .hero, .featured-restaurant {
        padding: 2rem 0;
    }
    
    .about, .mission, .cta {
        padding: 2rem 0;
    }
    
    .modal-header, .modal-body {
        padding: 1rem;
    }
    
    .restaurant-hero {
        padding: 2rem 0;
    }
    
    .restaurant-content {
        padding: 2rem 0;
    }
    
    .restaurant-main-content, .restaurant-info-card, .restaurant-contact-card, .restaurant-actions-card {
        padding: 1rem;
    }
    
    .featured-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-card {
        padding: 2rem 1rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .nav-brand {
        gap: 0.75rem;
    }
    
    .nav-brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-brand-text h1 {
        font-size: 1.3rem;
    }
    
    .nav-brand-text .tagline {
        font-size: 0.7rem;
    }
    
    .success-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .success-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .success-text h4 {
        font-size: 0.9rem;
    }
    
    .success-text p {
        font-size: 0.8rem;
    }
}

/* About and Mission Page Styles */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 5rem 0;
    position: relative;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.content-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,5 35,20 50,20 40,30 45,45 30,35 15,45 20,30 10,20 25,20" fill="rgba(52,152,219,0.03)"/></svg>') repeat;
    opacity: 0.5;
}

.content-section > .container {
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

.content-main h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.content-main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.content-main h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: #34495e;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.content-main h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 3px;
}

.content-main p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
    text-align: justify;
}

.content-main p:first-of-type {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin: 2.5rem 0;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.content-list li {
    padding: 1.25rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 0 -1rem;
    padding-left: 4rem;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.approach-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.approach-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

.approach-card p {
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    font-size: 1.05rem;
}

.content-sidebar {
    position: sticky;
    top: 2rem;
}

.stats-card, .cta-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.stats-card:hover, .cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.stats-card h3, .cta-card h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateX(8px);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.audience-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.audience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.audience-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.audience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #4a5568;
    font-weight: 400;
}

.vision-quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #2c3e50;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.vision-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: #3498db;
    opacity: 0.3;
    font-family: serif;
}

.vision-quote::after {
    content: '"';
    position: absolute;
    bottom: -30px;
    right: 30px;
    font-size: 6rem;
    color: #3498db;
    opacity: 0.3;
    font-family: serif;
}

/* Mission Page Specific Styles */
.mission-statement {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.mission-intro {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #4a5568;
    font-weight: 400;
}

.mission-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pillar-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.pillar-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pillar-icon {
    font-size: 2.5rem;
}

.pillar-header h3 {
    font-size: 1.75rem;
    margin: 0;
}

.pillar-content {
    padding: 2rem;
}

.pillar-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.pillar-content h4, .pillar-content h5 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem 0;
}

.pillar-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.pillar-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pillar-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.impact-example {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #27ae60;
}

.community-stats {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.mini-stat {
    text-align: center;
}

.mini-stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.mini-stat .label {
    font-size: 0.85rem;
    color: #64748b;
}

.discovery-examples {
    margin: 1.5rem 0;
}

.example {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 3px solid #3498db;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: center;
}

.mission-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.mission-quote {
    margin-top: 3rem;
}

.mission-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mission-quote cite {
    font-size: 1rem;
    color: #64748b;
    font-style: normal;
}

/* Navigation Active State */
.nav-link.active {
    background-color: #3498db;
    color: white;
}

.nav-link.active:hover {
    background-color: #2980b9;
}

/* Access Request Form Styling */
.word-counter {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    transition: all 0.3s ease;
}

.word-count-valid {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.word-count-invalid {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.word-count-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.access-notice {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.access-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.access-notice p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.access-notice ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.access-notice li {
    margin-bottom: 0.75rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
    padding-left: 1rem;
}

.access-notice li::before {
    content: "•";
    position: absolute;
    left: -0.5rem;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.access-notice li:last-child {
    margin-bottom: 0;
}

/* Admin Page Styles */
.admin-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.admin-main {
    padding: 2rem 0;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.admin-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.admin-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.admin-nav {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.admin-nav-tabs {
    display: flex;
    border-bottom: 1px solid #ecf0f1;
}

.admin-tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #5a6c7d;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.admin-tab-btn.active {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    background-color: #fef9f9;
}

.admin-tab-btn:hover {
    background-color: #f8f9fa;
}

.admin-tab-content {
    display: none;
    padding: 2rem;
}

.admin-tab-content.active {
    display: block;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-2px);
}

.admin-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    display: block;
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requests-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.requests-table table {
    width: 100%;
    border-collapse: collapse;
}

.requests-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #2c3e50;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requests-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.requests-table tr:hover {
    background-color: #f8f9fa;
}

.user-info {
    margin-bottom: 0.5rem;
}

.user-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.user-email {
    color: #5a6c7d;
    font-size: 0.9rem;
}

.user-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.type-founder_owner {
    background-color: #d4edda;
    color: #155724;
}

.type-chef {
    background-color: #fff3cd;
    color: #856404;
}

.type-staff_member {
    background-color: #d1ecf1;
    color: #0c5460;
}

.type-dining_enthusiast {
    background-color: #e2e3e5;
    color: #383d41;
}

.type-other {
    background-color: #f8d7da;
    color: #721c24;
}

.access-reason {
    max-width: 400px;
    line-height: 1.5;
    color: #2c3e50;
    font-size: 0.95rem;
}

.request-date {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-approve {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-approve:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-1px);
}

.btn-reject {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
}

.btn-view {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: linear-gradient(135deg, #2980b9, #1c638a);
    transform: translateY(-1px);
}

.empty-requests {
    text-align: center;
    padding: 3rem;
    color: #5a6c7d;
}

.empty-requests .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.filter-controls {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #2c3e50;
    white-space: nowrap;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 150px;
}

.bulk-actions {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.bulk-actions .btn-approve,
.bulk-actions .btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.select-all {
    margin-right: 1rem;
}

/* Admin Alert Messages */
.admin-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 500;
    border: 1px solid;
}

.admin-alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.admin-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.admin-alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .content-main h2 {
        font-size: 2.25rem;
    }
    
    .content-main h3 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem 0;
    }
    
    .content-main p {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-cards, .audience-grid, .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-card, .audience-card, .value-card {
        padding: 2rem;
    }
    
    .stats-card, .cta-card {
        padding: 2rem;
    }
    
    .mission-statement {
        padding: 2rem 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pillar-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .mission-quote blockquote {
        font-size: 1.3rem;
    }
    
    .vision-quote {
        font-size: 1.4rem;
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .vision-quote::before, .vision-quote::after {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-main h2 {
        font-size: 1.8rem;
    }
    
    .content-main h3 {
        font-size: 1.5rem;
    }
    
    .stats-card, .cta-card, .pillar-card, .approach-card, .audience-card, .value-card {
        padding: 1.5rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
    }
    
    .pillar-header {
        padding: 1.5rem;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    .vision-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .vision-quote::before, .vision-quote::after {
        font-size: 3rem;
    }
    
    .approach-icon, .audience-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}

/* Admin Page Responsive Styles */
@media (max-width: 1024px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requests-table {
        overflow-x: auto;
    }
    
    .requests-table table {
        min-width: 800px;
    }
}

@media (max-width: 768px) {
    .admin-header h1 {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group select {
        min-width: auto;
    }
    
    .bulk-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .requests-table table {
        min-width: 600px;
    }
    
    .access-reason {
        max-width: 200px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .admin-container {
        padding: 0 0.5rem;
    }
    
    .admin-header {
        padding: 1.5rem;
    }
    
    .admin-main {
        padding: 1rem 0;
    }
    
    .requests-table table {
        font-size: 0.9rem;
    }
    
    .requests-table th,
    .requests-table td {
        padding: 0.75rem;
    }
    
    .admin-stat-card {
        padding: 1rem;
    }
    
    .admin-stat-number {
        font-size: 2rem;
    }
} 