/* home.css — bestdubai-style homepage (hero + category sections). */

.home-hero { background: linear-gradient(135deg, #0b57d0 0%, #1565c0 60%, #0d47a1 100%); color: #fff; padding: 56px 18px 64px; text-align: center; }
.home-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 12px; line-height: 1.1; }
.home-hero p { font-size: 1.1rem; opacity: .92; margin: 0 auto 26px; max-width: 620px; }
.home-search { max-width: 600px; margin: 0 auto 18px; display: flex; background: #fff; border-radius: 999px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.home-search input { flex: 1; border: 0; outline: 0; padding: 16px 22px; font-size: 1.05rem; color: #111; }
.home-search button { border: 0; background: var(--brand); color: #fff; padding: 0 26px; font-weight: 700; font-size: 1rem; cursor: pointer; }
.home-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.home-chips a { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3); padding: 7px 14px; border-radius: 999px; text-decoration: none; font-size: .9rem; }
.home-chips a:hover { background: rgba(255,255,255,.28); }

.home-section { max-width: var(--maxw); margin: 0 auto; padding: 30px 18px 6px; }
.home-section .sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.home-section .sec-head h2 { font-size: 1.4rem; margin: 0; }
.home-section .sec-head a { color: var(--brand); text-decoration: none; font-weight: 600; font-size: .92rem; }
.home-section .places-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .home-section .places-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .home-section .places-grid { grid-template-columns: repeat(4, 1fr); } }
