﻿/*home page styling*/
.home-page {
    background-image: linear-gradient( rgba(20,20,30,0.45), rgba(20,20,30,0.45) ), url('/images/lofi-home-bg.jpg');
    background-size: cover;
    background-position: center;
}

.home-layout {
    padding: 100px  40px;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-template-areas:
        "welcome"
        "nowplaying"
        "player"
        "moods";
    max-width: 1400px;
    margin: 0 auto;
}

.home-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 1rem;
    color: white;
}

.now-playing {
    grid-area: nowplaying;
    text-align: center;
    color: white;
}

    .now-playing h3 {
        margin: 0;
        font-size: 2rem;
    }

.music-player {
    grid-area: player;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-moods-section {
    grid-area: moods;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
}

    .featured-moods-section h3 {
        text-align: center;
        font-size: 2rem;
    }

.welcome-message {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    /*border-radius: 30px;*/
}

    .welcome-message h1:focus {
        outline: none;
    }

    .welcome-message h2 {
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
        color: white;
    }

    .welcome-message p {
        font-size: 1.3rem;
        opacity: 0.9;
        color: white;
    }

.featured-moods {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.mood-card {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 1.5rem;
    color: white;
    transition: all .25s ease;
}

    .mood-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.12);
    }

    .mood-card p {
        font-size: 1.3rem;
        opacity: 0.9;
        color: white;
        text-align: center;
    }
