/* =================================================================
   OUTDOOR SHOTS - ADDITIONAL COMPONENTS CSS
   Zusätzliche Styles für spezielle Komponenten
   ================================================================= */

/* =================================================================
   PAGE HEADER STYLES
   ================================================================= */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-header-icon {
    font-size: 60px;
    opacity: 0.9;
}

.page-header-text h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-header-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.page-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.page-stats .stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* =================================================================
   FILTER SECTION STYLES
   ================================================================= */

.filter-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-title {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 20px;
    text-align: center;
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-input {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    min-width: 200px;
    flex: 1;
    max-width: 300px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    background: var(--white);
    min-width: 150px;
}

.filter-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background: #2980b9;
}

.filter-reset {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 13px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.filter-reset:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* =================================================================
   ENHANCED SPOT CARDS
   ================================================================= */

.bikepark-card {
    border-left: 4px solid var(--primary-color);
}

.wildtrail-card {
    border-left: 4px solid var(--secondary-color);
}

.skatepark-card {
    border-left: 4px solid var(--accent-color);
}

.scooterspot-card {
    border-left: 4px solid #9b59b6;
}

.spot-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.spot-details {
    margin: 15px 0;
}

.spot-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
}

.detail-label {
    font-weight: bold;
    color: var(--text-color);
}

.detail-value {
    color: #666;
}

.spot-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.facility-tag {
    background: var(--accent-color);
    color: var(--white);
}

.more-tag {
    background: var(--muted-text);
    color: var(--white);
}

/* =================================================================
   NO RESULTS STYLES
   ================================================================= */

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 30px 0;
}

.no-results-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-results h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
    margin-bottom: 20px;
}

/* =================================================================
   CATEGORY INFO STYLES
   ================================================================= */

.category-info {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-info h3 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 25px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.info-card h4 {
    font-size: 16px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* =================================================================
   FEATURED SECTION STYLES
   ================================================================= */

.featured-section {
    margin: 40px 0;
}

.section-title {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 25px;
    text-align: center;
}

/* =================================================================
   RESPONSIVE DESIGN FOR NEW COMPONENTS
   ================================================================= */

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .page-header-icon {
        font-size: 48px;
    }
    
    .page-header-text h1 {
        font-size: 28px;
    }
    
    .page-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-input,
    .filter-select {
        min-width: auto;
        width: 100%;
    }
    
    .spot-actions {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .filter-section {
        padding: 20px 15px;
        margin: 15px;
    }
    
    .category-info {
        padding: 20px 15px;
        margin: 20px 15px;
    }
    
    .page-header-text h1 {
        font-size: 24px;
    }
    
    .page-header-text p {
        font-size: 14px;
    }
}