/* Atrakcje Turystyczne - CSS */

.attr-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

/* NEW HERO SECTION */
.attr-hero-new {
    background: #1f1c2c;
    background: linear-gradient(135deg, #1f1c2c 0%, #4B3F72 100%);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.attr-hero-container {
    max-width: 1400px !important;
}

.attr-hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.attr-hero-info {
    flex: 1;
}

/* Filtry */
.attr-filters-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.attr-breadcrumbs-simple {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.attr-breadcrumbs-simple a {
    color: white;
    text-decoration: none;
}

.attr-hero-info h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats-row {
    display: flex;
    gap: 20px;
}

.h-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.h-stat-num {
    font-size: 24px;
    font-weight: 800;
}

.h-stat-lbl {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.attr-hero-map-wrapper {
    flex: 1.3;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.main-hero-map {
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* CARDS GRID */
.attr-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.attr-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    height: 220px;
    border: 1px solid transparent;
}

.attr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 63, 114, 0.12);
    border-color: rgba(75, 63, 114, 0.1);
}

.attr-card-image {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.attr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.attr-badge-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.attr-badge-rating i {
    color: var(--warning);
}

.attr-badge-rating .votes {
    color: #6c757d;
    font-size: 11px;
    font-weight: 500;
}

/* Status Badge (Open/Closed) */
.attr-badge-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.attr-badge-status.open {
    background: white;
    color: var(--success);
}

.attr-badge-status.closed {
    background: white;
    color: var(--danger);
}

.attr-badge-status i {
    font-size: 8px;
}

.attr-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.attr-card-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
}

.attr-card-lead {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.attr-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f3f5;
}

.attr-btn-read {
    font-weight: 700;
    color: #4B3F72;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.mini-action-btn {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-action-btn:hover {
    background: var(--success);
    color: white;
}

/* MOBILE */
@media (max-width: 991px) {
    .attr-hero-flex {
        flex-direction: column;
    }

    .attr-hero-map-wrapper {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .attr-card {
        flex-direction: column;
        height: auto;
    }

    .attr-card-image {
        width: 100%;
        height: 200px;
    }

    .attr-hero-info h1 {
        font-size: 32px;
    }
}