/* NWG Cruise Stats Styles */

.nwg-cruise-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h2 {
    font-size: 32px;
    color: #2c3e50;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.stat-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin: 5px 0 0 0;
}

/* Last 3 Cruises Card */
.stat-card.last-cruises {
    grid-column: 1 / -1;
}

.cruise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cruise-item {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.cruise-item:last-child {
    border-bottom: none;
}

.cruise-item:hover {
    background: #f9fafb;
    border-radius: 8px;
}

.cruise-date {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.cruise-details {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #6b7280;
}

.cruise-duration,
.cruise-passengers {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.no-data {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 20px;
}

/* Route Info */
.route-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.route-info h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card.last-cruises {
        grid-column: 1;
    }
    
    .stats-header h2 {
        font-size: 24px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .cruise-details {
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation for stat values */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-value {
    animation: countUp 0.6s ease-out;
}
