:root {
    --bg: #0b0b0f;
    --card-bg: #13131c;
    --purple: #a855f7;
    --text: #f3f4f6;
    --text-muted: #9ca3af;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg); color: var(--text); }

.travel-nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 8%; background: rgba(11, 11, 15, 0.8); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 100; }
.logo { font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--purple); }
.nav-cta { background: transparent; border: 2px solid var(--purple); color: var(--text); padding: 8px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.nav-cta:hover { background: var(--purple); box-shadow: 0 0 15px var(--purple); }

.hero { height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%); padding: 0 20px; margin-top: 60px; }
.hero-text h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.hero-text p { max-width: 600px; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 35px; line-height: 1.6; }
.explore-btn { background: var(--purple); color: var(--text); text-decoration: none; padding: 14px 35px; border-radius: 8px; font-weight: 600; box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4); transition: 0.3s; }
.explore-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--purple); }

.destinations { padding: 80px 8%; }
.destinations h2 { font-size: 2.2rem; margin-bottom: 40px; text-align: center; }
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
.dest-card { background: var(--card-bg); border-radius: 15px; overflow: hidden; border: 1px solid rgba(255,255,255,0.03); transition: 0.3s; }
.dest-card:hover { transform: translateY(-8px); border-color: rgba(168, 85, 247, 0.2); }
.img-placeholder { height: 220px; width: 100%; }
.card-body { padding: 25px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-footer span { font-weight: 600; color: var(--purple); }
.card-footer button { background: rgba(255,255,255,0.05); border: none; color: var(--text); padding: 8px 16px; border-radius: 6px; cursor: pointer; font-weight: 500; transition: 0.3s; }
.card-footer button:hover { background: var(--purple); }