/*
    Author: Lecy Lespinasse
    Date: 04/07/2026
    Filename: styles.css
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

header {
    background-color: #2c5f2d;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #97bc62;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero p {
    font-size: 1.2em;
}

.homepage-aside {
    background-color: #e8f5e9;
    padding: 20px;
    margin: 20px;
    border-radius: 12px;          
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    border-left: 6px solid #2c5f2d;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

footer {
    background-color: #2c5f2d;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

