@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
.navbar-brand {
    color: #0088cc !important; 
}

/* Hero Section & Search Box */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    margin-top: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 50, 70, 0.4);
}

.search-box {
    border-radius: 8px;
    margin-top: -30px; 
    position: relative;
    z-index: 10;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.search-box .input-group-text {
    border-right: none;
}

.search-box select {
    cursor: pointer;
}

/* Post Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.btn-outline-danger:hover i {
    color: white;
}

/* Footer */
footer a.text-secondary:hover {
    color: #0088cc !important;
}

footer .btn-light {
    background-color: #f1f3f4;
    border: none;
    transition: all 0.3s;
}

footer .btn-light:hover {
    background-color: #e2e6ea;
    color: #333 !important;
}

/* Custom Filter Modal Styles */
.filter-tag-input:checked + .filter-tag-label {
    background-color: #f0f8ff;
    border-color: #0088cc;
    color: #0088cc;
    font-weight: 500;
}
.filter-tag-label {
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 6px 16px;
    color: #495057;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    background-color: white;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 8px;
}
.filter-tag-label:hover {
    border-color: #adb5bd;
}
