@charset "utf-8";
/* CSS Document */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  list-style: none;
  text-decoration: none;
}

:root {
  --theme-col: #2d4bf0;
}

/* General styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #2F2F2F;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensure the header is above other elements */
  color: #fff;
  text-align: center;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

header.hidden {
  display: none;
}

header.shrink {
  padding: 4px;
}

header img {
  max-height: 120px; /* Adjust the maximum height of your logo */
  width: auto;
}

/* Menu styles */
.menu {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 70%;
  background-color: #2F2F2F;
  position: absolute;
  top: 10px;
  left: 0;
  display: none;
}

.menu.show {
  display: flex;
}

.menu a {
  width: 100%;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.menu a:hover {
  background-color: #4CAF50;
}

/* Menu icon styles */
.menu-icon {
  display: block;
  cursor: pointer;
}

.menu-icon div {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

/* Larger screens */
@media (min-width: 769px) {
  .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
    background-color: transparent;
  }

  .menu a {
    width: auto;
  }

  .menu-icon {
    display: none;
  }
}

/* Hero styles */
.hero {
  background-image: url('images/balloon.jpg'); /* Replace with the path to your hero image */
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  height: 100vh; /* Take up the full viewport height */
  background-attachment: fixed; /* Add the parallax effect */
  margin-top: 80px; /* Adjust this value to add space below the header */
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 2.5em;
}

.hero p {
  font-size: 1.5em;
}

/* Section styles */
section {
  padding: 40px;
  text-align: center;
}

footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 10px;
      position: fixed;
      bottom: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .show-footer {
      opacity: 1;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .main-text {
      font-size: 1.5em;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .main-text {
        font-size: 1.2em;
      }

      form {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      input,
      select {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        box-sizing: border-box;
      }

      button {
        background-color: #4caf50;
        color: #fff;
        padding: 10px;
        border: none;
        cursor: pointer;
      }

      button:hover {
        background-color: #45a049;
      }

      .menu.show {
        position: fixed;
        top: 60px;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #2F2F2F;
      }

      .hero {
        margin-top: 60px; /* Adjust this value to add space below the header */
      }
    }

  input,
  select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
  }

  button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
  }

  button:hover {
    background-color: #45a049;
  }

  .menu.show {
    position: fixed;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #2F2F2F;
  }

  .hero {
    margin-top: 60px; /* Adjust this value to add space below the header */
  }
}

