/* CSS for Home component */

.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #f5f7fb;
}


/* Logo */

.owlion-icon {
    font-size: 80px;
    margin-bottom: 16px;
    text-align: center;
}


/* App Name */

h1 {
    margin: 0 0 40px 0;
    color: #23408e;
    font-size: 3rem;
    text-align: center;
}


/* Quest Cards Container */

.quests-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}


/* Quest Card */

.quest-card {
    width: 360px;
    max-width: 95%;
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


/* Quest Number */

.quest-number {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
}


/* Title */

.quest-card h2 {
    margin: 0;
    color: #2d5be3;
}


/* Difficulty */

.difficulty {
    margin: 16px 0;
    color: #ff9800;
    font-weight: 600;
}


/* Description */

.quest-card p {
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
    min-height: 50px;
}


/* Reward */

.reward {
    margin: 24px 0;
    font-size: 1.1rem;
}


/* Button */

.begin-button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #2d5be3;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}


    .begin-button:hover {
        background: #2348c4;
        transform: translateY(-2px);
    }


    .begin-button:active {
        transform: translateY(0);
    }


/* Mobile */

@media(max-width:700px) {

    .home-container {
        padding: 20px;
    }


    h1 {
        font-size: 2.3rem;
    }


    .quests-container {
        justify-content: center;
    }


    .quest-card {
        width: 100%;
    }
}
