:root {
    --primary: #000000;
    --secondary: #ffffff;
    --accent: #333333;
    --gray-light: #f8f9fa;
}

/* FORCE Normal Text for the whole site */
body, h1, h2, h3, h4, h5, h6, p, span, a, div, input, button, select, textarea {
    font-family: 'Inter', sans-serif !important;
}

/* Ensure FontAwesome is ONLY used on icon tags */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Navbar */
.navbar {
    background-color: var(--secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.btn-post-ad {
    background-color: var(--primary);
    color: var(--secondary) !important;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-post-ad:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Hero Search */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?sri-lanka,city');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}
.search-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}

/* Cards */
.category-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    color: var(--primary);
    text-decoration: none;
    display: block;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.ad-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.ad-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.ad-card img {
    height: 180px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #111;
    color: #bbb;
    padding-top: 50px;
}
footer a {
    color: #bbb;
    text-decoration: none;
    transition: 0.2s;
}
footer a:hover {
    color: white;
}