/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styles */
header {
  height: 100px;
  background-color: black;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 30px;
}

header img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

header > a {
  text-decoration: none;
  color: inherit;
}

header > a:hover {
  opacity: 0.8;
}

header h2 {
  color: white;
  font-size: 24px;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

header h4 {
  margin: 0;
}

header h4 a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

header h4 a:hover {
  text-decoration: underline;
}

/* Content Styles */
.content {
  flex: 1;
  background-image: url("../images/bg7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Button Styles */
.info-button {
  position: absolute;
  right: 20%;
  top: 75%;
  transform: translate(50%, -50%);
  background-color: black;
  border: 10px solid orange;
  border-radius: 15px;
  padding: 15px 30px;
}

.info-button.centered {
  top: 85%;
  text-align: center;
}

.info-button a {
  color: orange;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.info-button:hover {
  opacity: 0.9;
}

.info-button a:hover {
  text-decoration: underline;
}

.description-button {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: black;
  border: 10px solid orange;
  border-radius: 15px;
  padding: 15px 30px;
  width: 250px;
  text-align: center;
}

.description-button a {
  color: orange;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.description-button:hover {
  opacity: 0.9;
}

.description-button a:hover {
  text-decoration: underline;
}

.booking-button {
  position: absolute;
  left: 20px;
  top: 120px;
  background-color: black;
  border: 10px solid orange;
  border-radius: 15px;
  padding: 15px 30px;
  width: 250px;
  text-align: center;
}

.booking-button a {
  color: orange;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.booking-button:hover {
  opacity: 0.9;
}

.booking-button a:hover {
  text-decoration: underline;
}

.presentation-button {
  position: absolute;
  left: 290px;
  top: 20px;
  background-color: black;
  border: 10px solid orange;
  border-radius: 15px;
  padding: 15px 30px;
  width: 250px;
  text-align: center;
}

.presentation-button a {
  color: orange;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.presentation-button:hover {
  opacity: 0.9;
}

.presentation-button a:hover {
  text-decoration: underline;
}

/* Footer Styles */
footer {
  height: 140px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

footer h1 {
  text-align: center;
  margin: 5px 0;
  font-size: 26px;
}

footer h2 {
  text-align: center;
  margin: 5px 0;
  font-size: 22px;
}

footer h4 {
  text-align: center;
  margin: 5px 0;
  font-size: 18px;
}

footer h6 {
  text-align: right;
  margin: 20px 0 5px 0;
  font-size: 14px;
  position: absolute;
  right: 20px;
  bottom: 10px;
}

footer h6 a {
  color: inherit;
  text-decoration: none;
}

footer h6 a:hover {
  text-decoration: underline;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  /* Header adjustments */
  header {
    height: auto;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  header img {
    height: 30px;
  }

  header h2 {
    font-size: 20px;
  }

  .nav-links {
    margin-left: 0;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  header h4 a {
    font-size: 14px;
  }

  /* Button adjustments */
  .description-button,
  .booking-button,
  .presentation-button {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .description-button {
    top: 20px;
  }

  .booking-button {
    top: 110px;
  }

  .presentation-button {
    top: 200px;
  }

  .description-button a,
  .booking-button a,
  .presentation-button a {
    font-size: 16px;
  }

  .info-button {
    right: 50%;
    transform: translateX(50%);
    padding: 10px 20px;
    width: calc(100% - 40px);
    max-width: 300px;
  }

  .info-button a {
    font-size: 16px;
  }

  /* Footer adjustments */
  footer {
    height: auto;
    padding: 20px 15px 50px 15px;
  }

  footer h1 {
    font-size: 18px;
  }

  footer h2 {
    font-size: 16px;
  }

  footer h4 {
    font-size: 14px;
  }

  footer h6 {
    font-size: 12px;
    right: 15px;
  }
}
