* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #0b111e; color: white; scroll-behavior: smooth; }

/* Nav */
nav { display: flex; justify-content: space-between; padding: 20px 8%; background: #0b111e; border-bottom: 1px solid #1e293b; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.logo span { color: #00d2ff; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav ul li a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover { color: #00d2ff; }

/* Hero */
.hero { 
    height: 70vh; 
    background: linear-gradient(rgba(11, 17, 30, 0.4), #0b111e), url('https://images.unsplash.com/photo-1546708973-b339540b5162?auto=format&fit=crop&w=1600');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content h1 { font-size: 4rem; margin-bottom: 10px; }
.hero-content p { color: #94a3b8; font-size: 1.2rem; margin-bottom: 30px; }

/* Buttons & Controls */
.btn { 
    padding: 14px 32px; background: linear-gradient(90deg, #00d2ff, #3a7bd5); 
    border: none; color: white; border-radius: 50px; cursor: pointer; text-decoration: none; font-weight: 600;
}
.controls { padding: 40px 8%; text-align: center; }
#searchInput { 
    width: 100%; max-width: 500px; padding: 15px 25px; border-radius: 30px; 
    border: 1px solid #1e293b; background: #161e2d; color: white; margin-bottom: 25px;
}
.filter-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.filter-btn { 
    background: #161e2d; border: 1px solid #1e293b; color: #94a3b8; 
    padding: 10px 20px; border-radius: 20px; cursor: pointer; transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: #00d2ff; color: #0b111e; border-color: #00d2ff; }

/* Grid */
.places-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; padding: 0 8% 100px; }
.card { 
    background: #161e2d; border-radius: 16px; overflow: hidden; 
    border: 1px solid #1e293b; cursor: pointer; transition: 0.4s; position: relative;
}
.card:hover { transform: translateY(-10px); border-color: #00d2ff; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-info { padding: 20px; }
.card-info h3 { margin-bottom: 8px; font-size: 1.25rem; }
.location-tag { color: #00d2ff; font-size: 0.85rem; font-weight: 500; }
.category-badge { 
    position: absolute; top: 15px; left: 15px; background: rgba(0, 210, 255, 0.9); 
    color: #0b111e; padding: 4px 12px; border-radius: 12px; font-size: 0.7rem; font-weight: 700;
}
.map-link { margin-top: 15px; font-size: 0.8rem; color: #64748b; }