/* Daibau-like modern Austrian look & feel */
.daibau-directory-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #2D3748;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.daibau-hero {
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.daibau-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff !important;
}
.daibau-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Search Bar */
.daibau-search-bar {
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    gap: 10px;
}
.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    border-right: 1px solid #E2E8F0;
    padding: 0 15px;
}
.search-input-group:last-of-type {
    border-right: none;
}
.search-input-group span {
    font-size: 1.2rem;
    margin-right: 10px;
}
.search-input-group input {
    border: none !important;
    outline: none !important;
    width: 100%;
    font-size: 1rem;
    color: #4A5568;
    background: transparent !important;
    box-shadow: none !important;
}
.daibau-search-btn {
    background-color: #ffc107;
    color: #212529;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.daibau-search-btn:hover {
    background-color: #e0a800;
}

@media (max-width: 768px) {
    .daibau-search-bar {
        flex-direction: column;
        padding: 12px;
    }
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 10px 0;
    }
    .daibau-search-btn {
        width: 100%;
    }
}

/* Layout Grid */
.daibau-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .daibau-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.daibau-sidebar {
    background: #F7FAFC;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    align-self: start;
}
.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #198754;
    padding-bottom: 8px;
    color: #1A202C;
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list li {
    margin-bottom: 8px;
}
.filter-link {
    background: none;
    border: none;
    text-align: left;
    padding: 8px 12px;
    width: 100%;
    font-size: 0.95rem;
    color: #4A5568;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-link:hover, .filter-link.active {
    background-color: #198754;
    color: #ffffff;
    font-weight: 600;
}

/* Main Listings Grid */
.results-meta {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 20px;
}
.daibau-listings-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.daibau-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}
.daibau-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.daibau-card-body {
    padding: 24px;
}
.daibau-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.daibau-badge {
    background: #E6FFFA;
    color: #00A389;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}
.daibau-rating {
    color: #FFB01F;
    font-weight: 700;
    font-size: 0.9rem;
}
.daibau-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1A202C;
}
.daibau-card-desc {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 18px;
}
.daibau-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    font-size: 0.9rem;
    color: #4A5568;
    border-top: 1px solid #EDF2F7;
    padding-top: 15px;
    margin-bottom: 20px;
}
.detail-item a {
    color: #198754;
    text-decoration: none;
    font-weight: 600;
}
.detail-item a:hover {
    text-decoration: underline;
}
.daibau-btn-primary {
    display: inline-block;
    background-color: #198754;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}
.daibau-btn-primary:hover {
    background-color: #0f5132;
}
