/* Enhanced Main CSS with Mobile Optimization */

/* Critical CSS for fast loading */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.location-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

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

.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.btn:hover {
    background: #c0392b;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .btn {
        width: auto;
        display: inline-block;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .hero {
        min-height: 500px;
        padding: 80px 20px;
    }
    
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}
