* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    color: #333;
}

/* Header Section - Updated to blue color scheme */
.header {
    text-align: center;
    padding: 30px 20px;
    color: white;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Food Categories */
.food-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
}

.food-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 300px;
    border: 1px solid #e1e5e9;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-card-content {
    padding: 20px;
    text-align: center;
}

.food-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Specialty Section */
.specialty-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.specialty-card {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.specialty-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.specialty-text {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#map {
    height: 100%;
    width: 100%;
}

/* Bottom Controls */
.bottom-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.controls-left,
.controls-right {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
}

.section {
    margin-bottom: 25px;
}

.section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.btn-secondary:hover:not(:disabled) {
    background: #e9ecef;
    border-color: #adb5bd;
}

.place-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 2px solid #e1e5e9;
}

.place-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.place-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.place-details {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.chart-container {
    height: 200px;
    margin-bottom: 20px;
    position: relative;
}

.chart-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stats {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.filter-hint {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #1976d2;
    text-align: center;
}

/* Custom Marker Styles */
.custom-marker {
    border-radius: 50% !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bottom-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .food-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .map-section {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .food-card {
        width: 280px;
    }
    
    .controls-left,
    .controls-right {
        padding: 15px;
    }
    
    .header {
        padding: 20px 15px;
    }
}