/* ===== TRAVEL ADVENTURES - FRÖHLICHES REISE-DESIGN ===== */

/* Travel Index Page */
.travel-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Pattern */
.travel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.travel-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Hero Section - Cheerful */
.travel-container .hero-section {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.travel-container .hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    line-height: 1.1;
    letter-spacing: -1px;
}

.travel-container .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 400;
}

/* Search Box - Sunny Style */
.travel-container .search-input {
    background: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: #2c3e50;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.travel-container .search-input:focus {
    border-color: #ffd700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.travel-container .search-input::placeholder {
    color: #6c757d;
}

/* World Map Section */
.world-map-section {
    margin-bottom: 4rem;
}

.map-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.map-legend {
    display: flex;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid;
}

.legend-item.visited .legend-dot {
    background: #4facfe;
    border-color: #00f2fe;
}

.legend-item.planned .legend-dot {
    background: #ffd700;
    border-color: #ffa500;
}

.world-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Planned Trips Section */
.planned-trips-section {
    margin-bottom: 4rem;
}

.planned-trips-section .section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.planned-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.planned-trip-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #ffd700;
}

.planned-trip-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.3);
}

.trip-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.planned-trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-content {
    padding: 1.75rem;
}

.trip-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.trip-status.planned {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: white;
}

.trip-status.wishlist {
    background: linear-gradient(135deg, #ff6b9d, #c768ff);
    color: white;
}

.trip-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.trip-description {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trip-timeframe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #4facfe;
    font-weight: 600;
}

.trip-timeframe svg {
    stroke: #4facfe;
}

/* Reports Section */
.reports-section {
    background: #f8f9fa;
    padding: 5rem 0;
    border-radius: 40px 40px 0 0;
}

.reports-section .section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.report-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #4facfe;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(79, 172, 254, 0.25);
}

.report-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.9), rgba(0, 242, 254, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card:hover .report-overlay {
    opacity: 1;
}

.report-overlay-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.report-overlay-link:hover {
    transform: scale(1.15);
}

.report-overlay-link svg {
    stroke: #4facfe;
}

.report-content {
    padding: 2rem;
}

.report-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

.report-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.report-meta svg {
    stroke: #4facfe;
}

.report-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.report-excerpt {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    color: white;
}

.read-more-btn svg {
    stroke: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.empty-state h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== TRAVEL REPORT DETAIL PAGE ===== */

/* Travel Detail Hero */
.travel-hero-detail {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem;
}

.travel-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: float 15s ease-in-out infinite;
}

/* Back Button - Travel Style */
.hero-navigation-travel {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.back-button-travel {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.back-button-travel i {
    font-size: 1.3rem;
}

.back-button-travel:hover {
    background: white;
    color: #4facfe;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Content */
.hero-content-travel {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.travel-badge-detail {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: bounce 2s ease-in-out infinite;
}

.travel-badge-detail i {
    font-size: 2rem;
    color: #4facfe;
}

.travel-hero-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.travel-meta-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.travel-meta-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.travel-meta-hero .meta-item i {
    font-size: 1.2rem;
}

.meta-divider-travel {
    opacity: 0.6;
}

/* Travel Detail Page Background */
.travel-detail-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Report Main Content - Light and Airy */
.travel-detail-page .report-main-content {
    background: transparent;
    padding: 3rem 0;
}

.report-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
}

.report-article {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4facfe;
}

.report-featured-image {
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.report-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.report-excerpt-section {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    border-left: 4px solid #4facfe;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.report-excerpt-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* Route Map Section */
.route-map-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffd700;
}

.route-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.route-map-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.route-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
}

/* Sidebar - Cheerful */
.report-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4facfe;
}

.sidebar-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Locations List - Travel Style */
.locations-list {
    display: grid;
    gap: 1rem;
}

.location-item-travel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05), rgba(0, 242, 254, 0.05));
    border-radius: 12px;
    border-left: 3px solid #4facfe;
    transition: all 0.3s ease;
}

.location-item-travel:hover {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    transform: translateX(5px);
}

.location-icon-travel {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon-travel i {
    color: white;
    font-size: 1.1rem;
}

.location-info-travel {
    flex: 1;
}

.location-name-travel {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.location-country-travel {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 1024px) {
    .report-content-grid {
        grid-template-columns: 1fr;
    }

    .report-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .travel-container .hero-title {
        font-size: 3rem;
    }

    .travel-container .hero-subtitle {
        font-size: 1.1rem;
    }

    .travel-hero-title {
        font-size: 2.5rem;
    }

    .travel-meta-hero {
        font-size: 0.95rem;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .world-map {
        height: 350px;
    }

    .reports-grid,
    .planned-trips-grid {
        grid-template-columns: 1fr;
    }

    .map-legend {
        gap: 1rem;
    }

    .report-article {
        padding: 1.5rem;
    }

    .report-featured-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    }
}
