/* =================================================================
   OUTDOOR SHOTS - MAIN CSS (Updated with Components)
   European Action Sports Directory
   Basierend auf Million Pixel Template mit sportlichen Farben
   ================================================================= */

/* CSS Variables - Sportliche, frische Farben */
:root {
  --primary-color: #e74c3c;      /* Energisches Rot */
  --secondary-color: #27ae60;    /* Frisches Grün */
  --accent-color: #3498db;       /* Sportliches Blau */
  --dark-bg: #2c3e50;           /* Header/Footer dunkel */
  --light-bg: #34495e;          /* Navigation */
  --text-color: #333;           /* Haupttext */
  --bg-color: #f5f5f5;          /* Hintergrund */
  --white: #ffffff;             /* Content-Bereich */
  --border: #bdc3c7;           /* Rahmen */
  --hover: #4a6274;            /* Hover-Effekte */
  --light-text: #ecf0f1;       /* Heller Text */
  --muted-text: #bdc3c7;       /* Gedämpfter Text */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.4;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =================================================================
   HEADER STYLES
   ================================================================= */

.header {
    width: 100%;
    background: var(--dark-bg);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.tagline {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: var(--muted-text);
    margin: 0 20px;
}

.stats-box {
    display: flex;
    gap: 20px;
    font-size: 11px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--muted-text);
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-weight: bold;
    font-size: 14px;
}

.stat-value.spots {
    color: var(--secondary-color);
}

.stat-value.countries {
    color: var(--accent-color);
}

.stat-value.available {
    color: var(--primary-color);
}

/* =================================================================
   NAVIGATION STYLES
   ================================================================= */

.navbar {
    width: 100%;
    background: var(--light-bg);
    border-top: 1px solid var(--hover);
    padding: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    border-right: 1px solid var(--hover);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--hover);
    color: var(--white);
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.nav-link:last-child {
    border-right: none;
}

/* Active Link Indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

/* =================================================================
   MAIN CONTENT STYLES
   ================================================================= */

.main-content {
    flex: 1;
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Category Grid - IMPROVED: 4 Boxes in einer Reihe */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.category-card.bikeparks .category-icon {
    color: var(--primary-color);
}

.category-card.wildtrails .category-icon {
    color: var(--secondary-color);
}

.category-card.skateparks .category-icon {
    color: var(--accent-color);
}

.category-card.scooterspots .category-icon {
    color: #9b59b6;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.category-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.category-stats {
    font-size: 11px;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.category-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.category-button:hover {
    background: #229954;
}

/* Search Section */
.search-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-title {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    min-width: 200px;
}

.search-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    background: var(--white);
}

.search-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background: #2980b9;
}

/* Spot Cards */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.spot-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.spot-image {
    width: 100%;
    height: 180px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--muted-text);
}

.spot-content {
    padding: 15px;
}

.spot-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.spot-location {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.spot-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.spot-tag {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
}

.spot-tag.difficulty-beginner {
    background: var(--secondary-color);
    color: var(--white);
}

.spot-tag.difficulty-intermediate {
    background: #f39c12;
    color: var(--white);
}

.spot-tag.difficulty-advanced {
    background: var(--primary-color);
    color: var(--white);
}

.spot-tag.difficulty-expert {
    background: #8e44ad;
    color: var(--white);
}

/* =================================================================
   QUICK INFO BOX
   ================================================================= */

.quick-info {
    max-width: 1200px;
    margin: 20px auto;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

.quick-info h3 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.quick-info p {
    margin-bottom: 15px;
    color: #555;
}

.action-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.action-button:hover {
    background: #229954;
}

.action-button.primary {
    background: var(--primary-color);
}

.action-button.primary:hover {
    background: #c0392b;
}

.action-button.secondary {
    background: var(--accent-color);
}

.action-button.secondary:hover {
    background: #2980b9;
}

/* =================================================================
   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;
}

/* =================================================================
   FOOTER STYLES
   ================================================================= */

.footer {
    width: 100%;
    background: var(--dark-bg);
    color: var(--muted-text);
    padding: 30px 0;
    border-top: 1px solid var(--light-bg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--muted-text);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--light-bg);
    font-size: 11px;
    color: var(--muted-text);
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 2px solid var(--bg-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1200px) {
    .header-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .content-container {
        padding: 15px;
    }

    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        border-right: none;
        border-bottom: 1px solid var(--hover);
        min-width: 120px;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Category Grid - 2x2 auf Tablet */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .page-header-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tagline {
        margin: 0;
        font-size: 12px;
    }

    .stats-box {
        justify-content: center;
        gap: 15px;
    }

    /* Category Grid - Single Column auf Mobile */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    .spots-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input,
    .search-select {
        min-width: auto;
        width: 100%;
    }

    .quick-info {
        margin: 20px 15px;
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .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%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 11px;
    }

    .logo {
        font-size: 20px;
    }

    .category-card {
        padding: 15px;
    }

    .category-icon {
        font-size: 36px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 11px;
    }

    .action-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .filter-section {
        padding: 20px 15px;
        margin: 15px;
    }

    .page-header-text h1 {
        font-size: 24px;
    }

    .page-header-text p {
        font-size: 14px;
    }
}/* =================================================================
   OUTDOOR SHOTS - MAIN CSS (Updated)
   European Action Sports Directory
   Basierend auf Million Pixel Template mit sportlichen Farben
   ================================================================= */

/* CSS Variables - Sportliche, frische Farben */
:root {
  --primary-color: #e74c3c;      /* Energisches Rot */
  --secondary-color: #27ae60;    /* Frisches Grün */
  --accent-color: #3498db;       /* Sportliches Blau */
  --dark-bg: #2c3e50;           /* Header/Footer dunkel */
  --light-bg: #34495e;          /* Navigation */
  --text-color: #333;           /* Haupttext */
  --bg-color: #f5f5f5;          /* Hintergrund */
  --white: #ffffff;             /* Content-Bereich */
  --border: #bdc3c7;           /* Rahmen */
  --hover: #4a6274;            /* Hover-Effekte */
  --light-text: #ecf0f1;       /* Heller Text */
  --muted-text: #bdc3c7;       /* Gedämpfter Text */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.4;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =================================================================
   HEADER STYLES
   ================================================================= */

.header {
    width: 100%;
    background: var(--dark-bg);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.tagline {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: var(--muted-text);
    margin: 0 20px;
}

.stats-box {
    display: flex;
    gap: 20px;
    font-size: 11px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--muted-text);
    margin-bottom: 2px;
}

.stat-value {
    display: block;
    font-weight: bold;
    font-size: 14px;
}

.stat-value.spots {
    color: var(--secondary-color);
}

.stat-value.countries {
    color: var(--accent-color);
}

.stat-value.available {
    color: var(--primary-color);
}

/* =================================================================
   NAVIGATION STYLES
   ================================================================= */

.navbar {
    width: 100%;
    background: var(--light-bg);
    border-top: 1px solid var(--hover);
    padding: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 500;
    border-right: 1px solid var(--hover);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: var(--hover);
    color: var(--white);
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.nav-link:last-child {
    border-right: none;
}

/* Active Link Indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

/* =================================================================
   MAIN CONTENT STYLES
   ================================================================= */

.main-content {
    flex: 1;
    width: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

/* Category Grid - IMPROVED: 4 Boxes in einer Reihe */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.category-card.bikeparks .category-icon {
    color: var(--primary-color);
}

.category-card.wildtrails .category-icon {
    color: var(--secondary-color);
}

.category-card.skateparks .category-icon {
    color: var(--accent-color);
}

.category-card.scooterspots .category-icon {
    color: #9b59b6;
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.category-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.category-stats {
    font-size: 11px;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.category-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.category-button:hover {
    background: #229954;
}

/* Search Section */
.search-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-title {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    min-width: 200px;
}

.search-select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    background: var(--white);
}

.search-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background: #2980b9;
}

/* Spot Cards */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.spot-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.spot-image {
    width: 100%;
    height: 180px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--muted-text);
}

.spot-content {
    padding: 15px;
}

.spot-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.spot-location {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.spot-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.spot-tag {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
}

.spot-tag.difficulty-beginner {
    background: var(--secondary-color);
    color: var(--white);
}

.spot-tag.difficulty-intermediate {
    background: #f39c12;
    color: var(--white);
}

.spot-tag.difficulty-advanced {
    background: var(--primary-color);
    color: var(--white);
}

.spot-tag.difficulty-expert {
    background: #8e44ad;
    color: var(--white);
}

/* =================================================================
   QUICK INFO BOX
   ================================================================= */

.quick-info {
    max-width: 1200px;
    margin: 20px auto;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

.quick-info h3 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.quick-info p {
    margin-bottom: 15px;
    color: #555;
}

.action-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.action-button:hover {
    background: #229954;
}

.action-button.primary {
    background: var(--primary-color);
}

.action-button.primary:hover {
    background: #c0392b;
}

.action-button.secondary {
    background: var(--accent-color);
}

.action-button.secondary:hover {
    background: #2980b9;
}

/* =================================================================
   FOOTER STYLES
   ================================================================= */

.footer {
    width: 100%;
    background: var(--dark-bg);
    color: var(--muted-text);
    padding: 30px 0;
    border-top: 1px solid var(--light-bg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--muted-text);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--light-bg);
    font-size: 11px;
    color: var(--muted-text);
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 2px solid var(--bg-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1200px) {
    .header-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .content-container {
        padding: 15px;
    }

    .nav-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        border-right: none;
        border-bottom: 1px solid var(--hover);
        min-width: 120px;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Category Grid - 2x2 auf Tablet */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .tagline {
        margin: 0;
        font-size: 12px;
    }

    .stats-box {
        justify-content: center;
        gap: 15px;
    }

    /* Category Grid - Single Column auf Mobile */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    .spots-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input,
    .search-select {
        min-width: auto;
        width: 100%;
    }

    .quick-info {
        margin: 20px 15px;
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 11px;
    }

    .logo {
        font-size: 20px;
    }

    .category-card {
        padding: 15px;
    }

    .category-icon {
        font-size: 36px;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 11px;
    }

    .action-button {
        padding: 10px 20px;
        font-size: 12px;
    }
																																																																																																																																																																			  
		/* Donate Button in Footer */
.social-links .donate-btn {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links .donate-btn:hover {
    background: #229954;
    transform: translateY(-1px);
}																																																																																																																																																																	  
																																																																																																																																																																			  
}