/* 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 {
  min-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;
  position: relative;
}

body.page-home .content,
body.page-moreinfo .content {
  background-image: url("../images/bg7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.page-short .content,
body.page-short #content-wrapper,
body.page-short #services,
body.page-short #pricing {
  background-color: #f7f7f7;
  background-image: none;
}

#content-wrapper {
  padding-bottom: 40px;
}

.white {
  background-color: #fff;
}

.gap {
  height: 30px;
}

.center {
  text-align: center;
}

.section-heading hr {
  width: 80px;
  margin: 15px auto 0;
  border: 0;
  border-top: 3px solid #f39c12;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.service-block {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
  margin-bottom: 20px;
}

.service-block i {
  color: #f39c12;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-block .d-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 1.8rem;
  margin-bottom: 0.25rem;
}

.service-block .d-flex i {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin: 0;
}

.service-block .d-flex .media-heading {
  margin: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.media-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

#pricing .btn {
  font-size: 1.2rem;
}

.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../images/bg7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}

.hero-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f5b041;
}

.main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.service-block {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.service-block i {
  color: #f39c12;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.media-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

#pricing .btn {
  font-size: 1.2rem;
}

/* 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;
  }
}
