/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

html {
    height: 100%;
}

a, a:hover, a:focus {
    color: white;
}

/* Header and Navigation */
header {
    background: #4c3b32; /* Dark brown shade */
    color: #FFBA6A;
    padding: 1rem 0;
    text-align: center;
}

header nav ul {
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #FFBA6A;
    text-decoration: none;
}

header nav ul li a:hover, a:focus {
    color: white;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 0 15px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    margin: 50px;
}

.btn-primary, .bg-primary, .text-primary {
    background-color: #333;
    border-color: #333;
    color: #FFBA6A; /* For readable text on dark background */
}

.navbar-primary {
    background-color: #333;
}

/* Add more elements as needed */
body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* viewport height */
    margin: 0; /* Reset default margin */
}

body, .bg-custom {
    background-color: #FFBA6A;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.btn-custom {
    background-color: #FFBA6A;
    color: #333;
}

/* Footer Styles */
footer {
    background-color: #4c3b32; /* Dark brown, similar to header */
    color: #fff;
    padding: 20px;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #FFBA6A; /* Warm peach tone for headings */
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

/* Responsive Design for Footer */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
        text-align: center;
    }
}
