/* Base Styles */

@font-face {
    font-family: montserrat;
    font-display: block;
    font-style: normal;
    font-weight: 100 900;
    src: url(/css/montserrat-variablefont_wght.woff2) format("woff2")
}

body {
    /* font-family: montserrat, sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F0F4F8;
}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #6F263D;
    border-bottom: 3px solid #DAA520;
    color: white;
}
.navbar {
    display: flex;
    gap: 20px;
}
.navbar a {
    text-decoration: none;
    /* font-weight: bold; */
    color: #606161;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    background: #002F6C;
}
.hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    max-width: 600px;
}

/* Three Column Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.underlined-card {
    border-bottom: 5px solid #ffcd00 !important;
}

/* Footer */
.footer {
    background: #6F263D;
    color: white;
    text-align: center;
}
.footer a {
    color: white;
    text-decoration: underline !important;
    font-weight: bold;
}