/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

:root {
    --purple-main: #6e3de8;
    --dark-blue: #2c3e50;
}

/* Navbar */
.navbar-brand { letter-spacing: -1px; }
.nav-link { color: #fff !important; font-weight: 500; font-size: 0.95rem; }
.btn-add-listing {
    background: var(--purple-main);
    color: white !important;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.search-container {
    background: white;
    border-radius: 10px;
    max-width: 1000px;
}

.btn-search {
    background-color: var(--purple-main);
    color: white;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-search:hover { background-color: #5a2bcc; color: white; }

/* Category Cards */
.category-card {
    height: 200px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.category-card.square { height: 180px; }

.category-card.bg-purple { background-color: var(--purple-main); }

.category-card.bg-img {
    background-size: cover;
    background-position: center;
}

.category-card .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.category-card .content { position: relative; z-index: 2; }

.category-card i { font-size: 2.5rem; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.quote-card { border: 1px solid #eee; color: #666 !important; padding: 20px; }

/* Footer */
footer a { color: #666; text-decoration: none; }
footer a:hover { color: var(--purple-main); }
.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero-section { height: auto; padding: 120px 0 60px; }
    .search-container { border-radius: 15px; overflow: hidden; margin: 0 15px; }
    .border-end { border: none !important; border-bottom: 1px solid #eee !important; }
}