/* LonelyRoad Integration Styles */

.lonelyroad-section {
    margin: 3rem auto;
    padding: 2rem 1rem;
    max-width: 1200px;
}

.lonelyroad-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lonelyroad-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.lonelyroad-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.lonelyroad-header a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.lonelyroad-header a:hover {
    text-decoration: underline;
}

/* Removed .api-link styles - now inline in paragraph */

.lonelyroad-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.lonelyroad-city {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

.lonelyroad-city h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.lonelyroad-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

/* Guide Card */
.lonelyroad-guide-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guide-icon {
    font-size: 2.5rem;
}

.guide-header h4 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.lonelyroad-guide-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.guide-link {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.guide-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Recommendations Section */
.lonelyroad-recommendations {
    margin-top: 2rem;
}

.lonelyroad-recommendations h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.recommendation-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
}

.recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.rec-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.rec-content {
    flex: 1;
}

.rec-content h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.rec-place {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0;
    font-weight: 500;
}

.rec-distance {
    font-size: 0.85rem;
    color: #999;
    margin: 0.25rem 0;
}

.rec-why {
    font-size: 0.95rem;
    color: #555;
    margin: 0.75rem 0;
    line-height: 1.5;
}

.rec-content a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.rec-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lonelyroad-section {
        padding: 1.5rem 0.5rem;
        margin: 2rem auto;
    }

    .lonelyroad-header h2 {
        font-size: 1.6rem;
    }

    .lonelyroad-city {
        padding: 1.5rem;
    }

    .lonelyroad-city h3 {
        font-size: 1.5rem;
    }

    .lonelyroad-guide-card {
        padding: 1.5rem;
    }

    .guide-header h4 {
        font-size: 1.3rem;
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .recommendation-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rec-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .lonelyroad-header h2 {
        font-size: 1.4rem;
    }

    .lonelyroad-header p {
        font-size: 1rem;
    }

    .lonelyroad-city h3 {
        font-size: 1.3rem;
    }
}
