@font-face {
    font-family: 'DM Sans';
    src: url('../assets/fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #d8ccaf;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px); /* Adjust for navbar height */
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
}

h1 {
    font-size: 10dvw;
    color: #692b20;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 16px;
}

h2 {
    font-size: 5dvw;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #692b20;
}

h3 {
    font-size: 2.5dvw;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #692b20;
}

p {
    font-size: 2dvw;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #692b20;
}

small {
    font-size: 1dvw;
    margin-bottom: 16px;
    color: #692b20;
}

.text-left {
    align-self: flex-start;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-item {
    margin: 0 10px;
    text-decoration: none;
    color: #692b20;
}

.current {
    font-weight: bolder;
    color: #692b20;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    color: #692b20;
}

textarea.input {
    min-height: 120px;
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    color: #692b20;
}

.hover {
    color: #692b20;
    text-decoration: underline;
}

button {
    background-color: #692b20;
    color: #f7f3ea;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
}

button:hover {
    background-color: #7e9151;
}

button:disabled {
    background-color: #f98b6960;
    cursor: not-allowed;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.logo {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #f7f3ea;
    font-family: sans-serif;
    color: #692b20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  