body{
    margin:0;
    font-family:Arial,sans-serif;
}

.navbar-custom{
    background:#08152f;
    padding:15px 0;
}

.logo{
    color:#fff;
    font-size:40px;
    font-weight:bold;
    text-decoration:none;
}

.logo span{
    color:#ff4d4d;
}

/* --- Hero Section Basic CSS (Laptop & Desktop) --- */
.hero{
    min-height: 700px; /* height fix hata kar min-height kiya taaki content badhne par container crash na ho */
    background:url('https://images.unsplash.com/photo-1517841905240-472988babdf9?q=80&w=1920') center center;
    background-size:cover;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    padding-top:180px;
    padding-bottom: 120px; /* Bottom padding di taaki search bar ke liye space bache */
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    line-height: 1.2;
}

.hero-content p{
    font-size:24px;
    margin-bottom: 25px;
}

.post-btn{
    background:#ff8c00;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:40px;
    font-size:20px;
    font-weight:bold;
    display: inline-block;
    text-decoration: none;
}


/* --- Responsive Mobile View Fix (Max width 768px tak ke liye) --- */
@media (max-width: 768px) {
    .hero {
        min-height: 600px; /* Mobile par thoda chota wrapper balance maintain karega */
    }

    .hero-content {
        padding-top: 120px; /* Fixed Navbar ke hisab se safe padding top */
        padding-bottom: 140px; /* Search box ke negative margin (-80px) ko sambhalne ke liye zyada space */
    }

    .hero-content h1 {
        font-size: 34px !important; /* Mobile ke liye ekdum perfect aur responsive size */
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px !important; /* Subtitle text ko bhi balance kiya */
        padding: 0 10px;
    }

    .post-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}
/* --- Premium Footer CSS --- */
.footer-custom {
    background: #08152f !important; /* Navbar ke jaisa same dark color match kiya */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-custom .small-title {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

/* Heading ke niche choti si sky-blue line ka accent */
.footer-custom .small-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #94a3b8 !important; /* Muted slate color */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

/* Hover karne par sky blue shine marega */
.footer-links li a:hover {
    color: #38bdf8 !important;
    padding-left: 5px; /* Chota sa smooth slide animation */
}

.trending-tags .badge {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #cbd5e1 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.2s ease;
}

.trending-tags .badge:hover {
    background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
    color: #fff !important;
    border-color: transparent;
}
/* --- Available Locations Hover Fix --- */
.location-box:hover {
    transform: translateY(-3px);
    border-color: #0ea5e9 !important; /* Border sky-blue ho jayega hover par */
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12) !important;
}

/* Mobile responsive font sizing for tags inside locations */
@media (max-width: 575.98px) {
    .location-box {
        padding: 10px 12px !important; /* Mobile par thoda wrap tight kiya */
    }
    .location-box span {
        font-size: 0.85rem !important;
    }
}

.search-box{
    background:white;
    margin-top:-80px;
    position:relative;
    z-index:10;
    border-radius:20px;
    padding:40px;
    box-shadow:0 5px 25px rgba(0,0,0,.2);
}


.category-card{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:25px;
}

.category-image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:end;
    padding:30px;
    color:#fff;
}

.overlay h3{
    font-size:42px;
    font-weight:700;
}

.city-select{
    min-width:180px;
}