/* GENERAL STYLES */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    color: #0a3d62;
}

.container {
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    gap: 20px;
}

/* HEADER */
.site-header {
    grid-area: header;
    font-family: "Oswald";
    text-align: center;
    background-color: #0a3d62;
    color: white;
    padding: 20px 10px;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: auto;
  font-style: normal;
}

.site-header img {
    max-width: 150px;
    border-radius: 50%;
    margin: 10px 0;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

.map-card{
    background-color: #4e82ad;
    color:#f0f8ff;
}
.map {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;  
}

/* HERO */
.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #d6e6f2;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0a3d62;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #064273;
}

/* ABOUT */
.about {
    padding: 20px;
    text-align: center;
}

/* Exercises */

.h2 {
    padding: 20px;
    text-align: center;
}
.exercises-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.exercises-card {
    background-color: #f0f8ff;
    border-radius: 10px;
    width: 250px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.exercises-card img {
    max-width: 70%;
    border-radius: 5px;
}

.exercises-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0a3d62;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.exercises-card .btn:hover {
    background-color: #2888d7;
}

/* PROJECTS */
.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project-card {
    background-color: #f0f8ff;
    border-radius: 10px;
    width: 250px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.project-card img {
    max-width: 100%;
    border-radius: 5px;
}

.project-card .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0a3d62;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.project-card .btn:hover {
    background-color: #064273;
}

/* CONTACT */
.contact {
    text-align: center;
    padding: 20px;
}

/* FOOTER */
footer {
    grid-area: footer;
    text-align: center;
    padding: 15px;
    background-color: #0a3d62;
    color: white;
}


@media (max-width: 700px) {
  .menu-section {
    margin: 1rem;
    padding: 1.5rem;
}

}