* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: "Google Sans", sans-serif;

    color: white;

    background-color: #111;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    
}


.container {
    width: 100%;
    max-width: 850px;

    text-align: center;

    margin-top: -100px;
}




.nova {
    font-size: 60px;
    font-weight: 300;

    letter-spacing: 1px;

    margin: 0 0 50px 0;
}



/* Search bar */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


/* Input */
.search-bar input {
    width: 650px;
    height: 56px;

    padding: 0 20px;

    border: 1px solid #d5d5d5;
    border-radius: 30px;

    font-size: 16px;

    outline: none;

    background: white;

    /* Your old soft shadow */
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.20);

    transition: all 0.2s ease;
}


/* Input hover */
.search-bar input:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25);

    transform: translateY(-1px);
}


/* Input when clicked */
.search-bar input:focus {
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.25);
}


/* Search button */
.submit {
    width: 56px;
    height: 56px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #d5d5d5;
    border-radius: 50%;

    background: white;

    cursor: pointer;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.20);

    transition: all 0.2s ease;
}


/* Button hover */
.submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.28);
}


/* Button click */
.submit:active {
    transform: translateY(0);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.20);
}


.content {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px 80px;
}




.content-section {

    width: 100%;

    margin: 0 auto 70px;

    text-align: center;
}




.content-section h2 {

    font-size: 28px;

    font-weight: 400;

    margin: 0 0 25px;
}



.content-box {

    width: 100%;

    min-height: 150px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 30px;

    border: 1px solid #ddd;

    border-radius: 20px;

    background: white;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.06);

    transition: 0.25s ease;
}


/* Small hover effect */

.content-box:hover {

    transform: translateY(-3px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.10);
}




.content-box p {

    color: #777;

    font-size: 16px;

    margin: 0;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .nova {
        font-size: 42px;

        margin-bottom: 35px;
    }


    .container {
        margin-top: -50px;
    }


    .search-bar input {
        width: 100%;

        height: 50px;
    }


    .submit {
        width: 50px;
        height: 50px;
    }


    .content {
        padding: 0 15px 50px;
    }


    .content-section h2 {
        font-size: 24px;
    }


    .content-box {
        min-height: 130px;
    }
}

#apps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.app-card {
    text-decoration: none;
    color: #111;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 150px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #ddd;
    border-radius: 18px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.10);

    transition: all 0.2s ease;
}

.app-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}

.app-logo {
    width: 45px;
    height: 45px;

    object-fit: contain;

    margin-bottom: 12px;
}

.app-card h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 500;
}

/* =========================
   MUSIC SECTION
========================= */

#music-container {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    background: transparent;

    border: none;

    box-shadow: none;

    padding: 0;
}


/* Music card */

.music-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid #ddd;

    border-radius: 16px;

    text-align: left;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);

    transition: all 0.2s ease;
}


/* Hover */

.music-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Album cover */

.album-cover {

    width: 70px;

    height: 70px;

    object-fit: cover;

    border-radius: 10px;
}


/* Song information */

.music-info {

    flex: 1;
    color:black;
}

.music-info h3 {

    margin: 0 0 5px;

    font-size: 17px;

    font-weight: 500;
}

.music-info p {

    margin: 0;

    color: #777;

    font-size: 14px;
}


/* Listen button */

.listen-btn {

    text-decoration: none;

    color: #111;

    padding: 8px 14px;

    border: 1px solid #ddd;

    border-radius: 20px;

    font-size: 13px;

    transition: all 0.2s ease;
}

.listen-btn:hover {

    background: #111;

    color: white;

    transform: translateY(-2px);
}


/* =========================
   NEWS SECTION
========================= */

#news-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* News card */

.news-card {
    display: flex;
    flex-direction: column;

    min-height: 280px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 18px;

    text-decoration: none;

    color: #111;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Hover */

.news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.20);
}


/* Title */

.news-card h3 {
    margin: 0 0 12px;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;
}


/* Description */

.news-card p {
    margin: 0 0 18px;

    color: #666;

    font-size: 14px;

    line-height: 1.5;

    flex: 1;
}


/* Source */

.news-card small {
    color: #888;

    font-size: 12px;

    border-top: 1px solid #eee;

    padding-top: 12px;
}
