/* ==========================================================================
   AUSFLUGSZIELE STYLES (Zusatz-Stylesheet)
   ========================================================================== */

/* 1. Praktische Infos (Infrastruktur-Grid) */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0 60px 0;
}

.info-card {
    background-color: var(--creme-light);
    color: var(--text-dark);
    border: 1px solid var(--brand-orange);
    border-top: 4px solid var(--brand-orange);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* Passt zum Schatten-Stil deiner style.css */
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.info-card h3 {
    font-family: 'Georgia', serif;
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    padding-bottom: 0;
    border: none;
}

.info-card ul {
    padding-left: 18px;
    margin: 10px 0 0 0;
    list-style-type: square;
}

.info-card li {
    margin-bottom: 6px;
}

/* 2. Ausflugsziele (Top 10 Liste) */
.destinations-container {
    margin-top: 50px;
}

.destinations-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: left;
}

.destination-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dest-item {
    display: flex;
    background-color: var(--creme-light);
    color: var(--text-dark);
    border: 1px solid var(--brand-orange);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.dest-item:hover {
    transform: translateY(-3px); /* Gleicher dezenter Hover-Effekt wie bei den Apartments */
}

.dest-number {
    background-color: var(--brand-orange);
    color: var(--black); /* Kontraststarkes Schwarz auf Kupfer-Orange */
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 20px;
}

.dest-content {
    padding: 25px;
    flex-grow: 1;
}

.dest-content h4 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--brand-orange); /* Orange Akzentfarbe für Titel */
    margin: 0 0 5px 0;
}

.dest-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.dest-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* 3. Responsive Anpassungen */
@media (max-width: 768px) {
    .dest-item {
        flex-direction: column;
    }
    .dest-number {
        padding: 12px;
        min-width: auto;
        font-size: 1.5rem;
    }
    .dest-content {
        padding: 20px;
    }
}