.destination-hero {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1531968455001-5c5272a41129');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 60px;
}

.destination-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 2rem;
    background: var(--beige-1);
    position: relative;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navigation {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--gold-1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-item {
    background: var(--third-color);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.destination-meta {
    font-size: 0.85em;
    opacity: 0.8;
    margin-top: 4px;
}

.nav-item:hover {
    background: rgb(42, 42, 42);
    transform: translateX(-5px);
}

.nav-item.active {
    background: var(--third-color);
}

.nav-item .info {
    display: none;
    position: absolute;
    right: 105%;
    top: 0;
    background: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    width: 280px;
    font-size: 0.9em;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-item .info h4 {
    margin: 0 0 8px 0;
    color: var(--beige-2);
}

.nav-item .info p {
    margin: 0;
    line-height: 1.4;
}

.nav-item .info .meta-info {
    margin-top: 8px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
}

.nav-item:hover .info {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

#map {
    height: 600px;
    width: 100%;
}

/* Recommendations Section */
.recommendations {
    padding: 4rem 2rem;
    background: white;
}

.recommendations h2 {
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
}

/* Destination Cards */
.destination-card {
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card-content {
    padding: 1.5rem;
    background: white;
    position: relative;
}

.destination-info {
    padding: 1rem;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-info {
    transform: translateY(0);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-button:hover {
    background: #d35400;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .navigation {
        position: relative;
        right: auto;
        top: auto;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 0;
    }

    .nav-item {
        font-size: 14px;
        padding: 10px 16px;
    }

    .destination-meta {
        font-size: 0.8em;
    }

    .nav-item:hover {
        transform: none;
    }

    .nav-item .info {
        display: none !important;
    }

    #map {
        height: 400px;
    }

    .destination-card {
        min-width: 250px;
    }

    .destination-info {
        display: none;
    }
}