/* Progression Page Styles */

.progression-page {
    padding: 40px 0;
    font-family: 'Comfortaa', sans-serif;
    color: #4a4a4a;
}

/* Breadcrumbs */
.progression-breadcrumbs {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.progression-breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.progression-breadcrumbs a:hover {
    color: #2c3e50;
}

/* Summary Banner */
.progression-banner {
    background: linear-gradient(135deg, rgba(160, 140, 120, 0.9), rgba(130, 110, 90, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progression-banner-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.progression-points {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.progression-points span {
    font-size: 1.4rem;
    margin-left: 10px;
    color: #fff;
}

/* Badge Sections */
.progression-section-title {
    font-family: 'Poetsen One', sans-serif;
    background: url('../images/wood-texture.jpg') center/cover;
    /* Placeholder for wood texture */
    background-color: #8b5e3c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.8rem;
    margin: 60px 0 40px;
    font-style: italic;
    display: inline-block;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Badge Card */
.badge-card {
    position: relative;
    width: 200px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.badge-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.badge-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-info {
    text-align: center;
    margin-top: 10px;
}

.badge-name {
    font-family: 'Poetsen One', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.badge-desc {
    font-size: 0.8rem;
    color: #666;
}

/* Locked Badge */
.badge-card.locked {
    filter: grayscale(1);
    opacity: 0.7;
}

.badge-card.locked:hover {
    filter: grayscale(0.5);
    opacity: 0.9;
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    backdrop-filter: blur(2px);
    z-index: 2;
}

/* Back Button */
.back-actions {
    margin-top: 80px;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #8fb88f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-back:hover {
    background-color: #7da57d;
    transform: scale(1.02);
}

.btn-back .arrow {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .progression-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .progression-section-title {
        font-size: 1.4rem;
        width: 100%;
    }

    .badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .badge-card {
        width: 150px;
    }
}