/* NAVIGATION BAR STYLING */
/* Styling for the main navigation bar */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  color: #000000;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  z-index: 1000; /* Ensure it's above other content */
}

body {
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

/* Styling for navigation links */
.nav-links a {
  color: #6a6a6a;
}
.nav-links a:hover {
  color: rgb(255, 166, 0);
}

/* LOGO */
/* Styling for the logo */
.logo {
  font-size: 32px;
}

/* Styling for the logo in the header */
.header-logo-css {
  color: #000000;
}

/* HAMBURGER MENU */
/* Styling for the hamburger menu icon */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1001; /* Ensure it's above the menu */
}

/* APPLYING MEDIA QUERIES */
/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  /* Hide the menu by default */
  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    right: 0;
    text-align: center;
    padding: 16px 0;
    padding-top: 50px;
    height: 100%;
    line-height: 44px;
    width: 100%;
    z-index: 1000;
  }

  /* Styling for menu items on hover */
  .menu li:hover {
    display: inline-block;
    background-color:#ffffff;
    transition: 0.3s ease;
    color: #7d7d7d;
  }

  /* Show the menu when checkbox is checked */
  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  /* Show the checkbox */
  input[type="checkbox"] {
    display: none;
  }

  /* Styling for the hamburger icon */
  .hamburger {
    display: block;
    color: #ff8c00;
  }
}

/* Additional styles for the contact-us-button */
.contact-us-button {
  background: transparent;
  border-radius: 8px;
  color: #ff6500;
  border: 2px solid #ff6500;
  font-size: large;
  padding: 10px;
}

/* Styling for the contact-us-button on hover */
.contact-us-button:hover {
  background: rgba(255, 255, 255, 0.482);
  border-radius: 8px;
  color: #ff6500;
  border: 2px solid #ff6500;
  font-size: large;
  padding: 10px;
}

/* FOOTER STYLING */
/* Styling for the footer */
.footer {
  background: url("../images/footer\ graphic.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: larger;
  height: 300px; /* Adjust the height as needed */
  line-height: 3.5rem;
  margin-top: auto;
  position: relative; /* Add position */
  background-color: #0707075b;
  padding-top: 9.5rem;
}

/* Styling for footer links */
.footer a {
  background: transparent;
  border-radius: 8px;
  color: #ff0000;
  font-size: large;
  padding: 10px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Styling for the contact-us-button in the footer */
.contact-us-button-footer {
  background: transparent;
  border-radius: 8px;
  color: #ff6500;
  border: 2px solid #ff6500;
  font-size: large;
  padding: 10px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

/* Styling for the contact-us-button on hover in the footer */
.contact-us-button-footer:hover {
  background: rgba(142, 126, 126, 0.482);
  color: orange;
}

/* Styling for the Impressum section */
.impressum-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
  background-color: #f9f9f9;
  top: 0;
  right: 0;
  left: 0;
  right: 0;
  
}

/* Styling for the Impressum content */
.impressum-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Styling for the Impressum details */
.impressum-details {
  flex: 1;
  padding-right: 2rem;
}

/* Styling for the Impressum heading */
.impressum-details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

/* Styling for Impressum paragraphs */
.impressum-details p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Styling for the Contact Us button in Impressum */
.impressum-details .contact-us-button {
  background: #ff6500;
  border-radius: 8px;
  color: #ffffff;
  font-size: large;
  padding: 10px 20px;
  text-decoration: none;
}

/* Styling for the Impressum image */
.impressum-image {
  flex-basis: 40%;
  text-align: center;
}

/* Styling for the Impressum image */
.impressum-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .impressum-content {
    flex-direction: column;
    text-align: center;
  }

  .impressum-details {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .impressum-image {
    flex-basis: 100%;
  }
}
