* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

body { background-color: #0b111e; color: white; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: rgba(11, 17, 30, 0.95); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 24px; font-weight: bold; color: #fff; }
.logo span { color: #00d2ff; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { text-decoration: none; color: #ccc; transition: 0.3s; }
nav ul li a:hover { color: #00d2ff; }

/* Hero Section */
.hero { 
    height: 80vh; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(11, 17, 30, 1)), url('https://images.unsplash.com/photo-1546708973-b339540b5162?q=80&w=2000') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; color: #bdc3c7; margin-bottom: 2rem; }

.btn { 
    padding: 15px 40px; background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: white; text-decoration: none; border-radius: 30px; font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3); transition: 0.3s;
}
.btn:hover { transform: scale(1.05); }

/* Grid Styling */
.search-container { text-align: center; padding: 40px; }
#searchInput { padding: 12px; width: 50%; border-radius: 5px; border: none; background: #1a2234; color: white; }

.places-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; padding: 0 8% 50px 8%; 
}

.card { background: #1a2234; border-radius: 15px; overflow: hidden; transition: 0.3s; border: 1px solid #2e374a; }
.card:hover { transform: translateY(-10px); border-color: #00d2ff; }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-info { padding: 20px; }
.card-info h3 { margin-bottom: 10px; color: #00d2ff; }
.card-info p { font-size: 0.9rem; color: #aaa; line-height: 1.4; }
.location-tag { display: inline-block; margin-top: 10px; font-size: 0.8rem; color: #3a7bd5; }