/*
    Author: Prince Gentillon
    Date: 9/13/2025
    File Name: styles.css
*/

/* ================= CSS Reset ================= */
body, header, nav, main, footer, img, h1 {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Ensure images scale properly */
img {
    max-width: 100%;
    display: block;
}

/* ================= Header Styles ================= */
header {
    text-align: center;
    font-size: 3em;
    color: #373684;
}

/* Style for header text */
header h1 {
    font-style: italic;
}

/* ================= Navigation Styles ================= */

/* Style rules for navigation area */
nav {
    background-color: #373684;
}

/* Remove default list styling and align center */
nav ul {
    list-style-type: none;
    margin: 0;
    text-align: center;
}

/* Display navigation items side by side */
nav li {
    display: inline-block;
    font-size: 2em;
}

/* Style rules for navigation links */
nav li a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 0.5em 1em;
    text-decoration: none;
}


/* ================= Main Content Styles ================= */
main {
    padding: 2%;
    background-color: #e5e9fc;
    overflow: auto;
    font-family: Verdana, Arial, sans-serif;
}

/* Paragraphs inside main */
main p {
    font-size: 1.25em;
}

/* Action text (highlighted/important content) */
.action {
    font-size: 1.75em;
    color: #373684;
    font-weight: bold;
}

/* Music section boxes */
#piano, #guitar, #violin {
    width: 29%;
    float: left;
    margin: 0 2%;
}

/* Info section box */
#info {
    clear: left;
    background-color: #c0caf7;
    padding: 1% 2%;
}

/* ================= Contact Section ================= */
#contact {
    text-align: center;
}

/* Contact links */
#contact a {
    color: #4645a8;
    text-decoration: none;
    font-weight: bold;
}

/* Map container */
.map {
    border: 5px solid #373684;
}

/* ================= Footer Styles ================= */
footer {
    text-align: center;
    font-size: 0.65em;
    clear: left;
}

/* Footer links */
footer a {
    color: #4645a8;
    text-decoration: none;
}
