@font-face {
    font-family: 'Higuen Serif';
    src: url('/static/fonts/Higuen Serif.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0; /* Ensure no default margin */
}

/* Make the body a flex container */
body {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: url(../images/terms.jpg) no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-attachment: fixed;
}

.navbar {
    font-family: 'Higuen Serif', serif;
    background-color: white !important;
}

h1 {
    font-family: 'Higuen Serif', serif;
    color: #5f511b;
  }

  .container {
    flex-grow: 1; /* Ensures content section grows to take available space */
}

  .container .bg-light {
    padding: 20px;
    border-radius: 10px;
    padding-bottom: 50px; /* Add extra padding at the bottom */
    background-color: #fdd0cb !important;
    opacity: 0.8;
  }

  .container p {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }

  /* Ensure the body takes full height */
html, body {
    height: 100%;
    margin: 0; /* Ensure no default margin */
}

/* Make the body a flex container */
body {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: url(../images/terms.jpg) no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Ensure content grows to fill available space */
.page-content {
    flex-grow: 1;
}

.footer {
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer .list-inline-item i {
    margin-right: 8px;
    font-size: 1em;
}

.footer .list-inline-item {
    margin-right: 20px;
}
