@charset "utf-8";

/* -----------------------
   Landing Page Colour Palette
   Body Background: #fefcfb - egg-shell white
   Header/Footer Background: #231942 - deep purple
   Header/Footer Text: #fefcfb - off-white
   Header/Footer Links: #76b9af - mint green
   Main Links: #034078 - navy blue
-------------------------*/

body {
    margin: 0;
    background-color: #fefcfb;
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", serif;
    font-size: 1.2rem;
}

#wrapper {
    max-width: 1024px;
    margin: 0 auto;
}

header, footer {
    background-color: #231942;
    color: #fefcfb;
    text-align: center;
    padding: 60px 50px;
}

h1, h2 {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    margin: 0.5em 0;
}

#logo {
    border-radius: 50%;
    float: left;
    margin-right: 20px;
}

a {
    color: #034078;
    text-decoration: none;
}

header a, footer a {
    color: #76b9af;
    text-decoration: none;
}

header a:hover, footer a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

main section {
    flex: 1 1 300px; /* responsive flex items */
    background-color: #fdfbf9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

footer a {
    display: inline-block;
    padding: 0.5em 1em;
    border: 0.1em solid #fff;
    margin: 5px;
    border-radius: 5px;
}

footer p {
    margin: 0.5em 0;
}

/* Clear float after header logo */
header::after {
    content: "";
    display: block;
    clear: both;
}
