@font-face {
  font-family: 'BebasNeue-Regular';
  src: url('fonts/BebasNeue-Regular.woff2') format('woff2'), /* Modern Browsers */
       url('fonts/BebasNeue-Regular.woff') format('woff'),   /* Older Browsers */
       url('fonts/BebasNeue-Regular.ttf') format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: 'Nunito-Regular';
  src: url('fonts/Nunito-Regular.woff2') format('woff2'), /* Modern Browsers */
       url('fonts/Nunito-Regular.woff') format('woff'),   /* Older Browsers */
       url('fonts/Nunito-Regular.ttf') format("truetype");
  font-weight: normal;
}

.button {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}
.button:hover { background-color: #6a4384; }

.contact-button {
  background-color: #111; /* Green background */
  border: none;             /* Remove default border */
  color: white;             /* White text */
  padding: 15px 32px;       /* Space around the text */
  text-align: center;       /* Center the text */
  text-decoration: none;    /* Remove underline if it's an <a> tag styled as a button */
  display: inline-block;    /* Allows for padding and margin */
  font-size: 16px;          /* Increase font size */
  cursor: pointer;          /* Change cursor to a hand icon on hover */
  border-radius: 8px;       /* Rounded corners */
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.contact-button:hover { background-color: #6a4384; }

.contact-button:active { 
  transform: translateY(2px); /* Add a slight push-down effect when clicked */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); /* Reduce shadow when clicked */ 
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header nav ul {
  list-style-type: none; /* Removes the bullet points */
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex; /* Aligns list items horizontally */
  background-color: #333; /* Adds a background color */
}

h1 {
  display: flex;
  padding: 0px 12px;
  margin: 0;
  color: white;
  font-family: "BebasNeue-Regular";
  font-weight: 800;
  font-size: 48px;
}

h2 {
  font-family: "BebasNeue-Regular";
  padding: 0px 0px;
  margin: 0;
  font-size: 32px;
}

h3 {
  font-family: "BebasNeue-Regular";
  font-size: 24px;
}

h4 {
  font-family: "BebasNeue-Regular";
  font-size: 24px;
}

p {
  font-family: "Nunito-Regular";
}

li {
  font-family: "Nunito-Regular";
}

label {
  font-family: "Nunito-Regular";
}
nav ul li a {
  display: block; /* Makes the whole area of the link clickable */
  color: white;
  text-align: center;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none; /* Removes default link underlines */
  align-items: self-end;
  justify-content: self-end;
  font-family: "Nunito-Regular";

}


nav ul li a:hover {
  background-color: #111; /* Changes background on hover */
  color: #a576d2;
}

nav ul li a:active {
  background-color: #eeeeee; /* Changes background on hover */
  color: #6a4384;
}

nav {
  position: fixed; /* Fixes the navbar to the viewport */
  top: 0; /* Positions it at the top */
  width: 100%; /* Ensures it spans the full width */
  z-index: 9999; /* Ensures it is above other content */
}

.message {
  vertical-align: top;
}



main {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 100%;
}

.image-container-01 {
    position: relative; /* Establishes a positioning context for children */
    height: 300px; /* Set height for the container */
}

.background-image {
    position: absolute; /* Positions the image absolutely within the container */
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area nicely */
    z-index: -1; /* Sends the image behind other content in the container */
}

.overlay-text {
    position: absolute;
    top: 50%; /* Positions the text in the vertical center */
    left: 50%; /* Positions the text in the horizontal center */
    transform: translate(-50%, -50%); /* Precisely centers the text */
    color: white;
    font-size: 18px;
    font-family: "Nunito-Regular";
    mix-blend-mode: difference;
    text-align: center;
    width: 100%;
}

.top-align {
  vertical-align: top;
  max-width: 290px;
  text-align: justify;
}


footer {
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}