/*
    Author: Prince Gentillon
    Date: 11/08/2025
    File Name: styles.css
*/

/* ================= Hero Section ================= */
.hero {
    background-image: 
        linear-gradient(
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0.7)
        ),
        url("../images/music-notes.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

/* ================= Welcome Spacing ================= */
.welcome {
    margin-top: 10%;
}

/* ================= Custom Colors ================= */
.bg-dark-purple {
    background-color: #373684; /* deep purple background */
}

.text-dark-purple {
    color: #373684; /* matching purple text */
}

/* ================= General Utility Tweaks ================= */

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;  /* pushes footer to bottom */
}


/* Smooth hover effect for nav links */
.nav-link:hover {
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}

/* Make the hero button a bit smoother on hover */
.btn:hover {
    transform: scale(1.03);
    transition: 0.2s;
}
