/* resorts/templates/resorts/resort_list.html */

.snow-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .snow-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    }
    
    .snow-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .stat-box {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
    }
    
    .weather-widget {
        background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
        border-radius: 15px;
        padding: 1.5rem;
        color: white;
    }
    
    .snow-report-box {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-gradient {
        background: linear-gradient(135deg, rgba(128,0,32,0.85) 0%, rgba(255,107,53,0.85) 100%), url('{% static 'images/estaciones/astun-panorama.jpg' %}') center/cover no-repeat;
        color: white;
        padding: 4rem 0;
        margin-bottom: 3rem;
    }
    
    .feature-icon {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: white;
        font-size: 1.5rem;
    }
    
    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }
