/* General Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

/* Header and Footer */
.site-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  font-family: 'Cinzel', serif; /* Ensure the header uses Cinzel */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

/* Top Section (Logo, Message, Call Button) */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo img {
  max-height: 100px; /* Adjust size to fit design */
}

.header-message {
  flex-grow: 1;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
}

.call-button a {
  display: inline-block;
  padding: 8px 15px;
  border: 2px solid #c5a17d; /* Gold border */
  border-radius: 5px;
  color: #333333;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
}

.call-button a:hover {
  background-color: #c5a17d;
  color: #ffffff;
}

/* Navigation Bar */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
}

.nav-menu li {
  margin: 0 15px; /* Center-align menu items */
}

.nav-menu a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #c5a17d; /* Gold hover effect */
}

/* Page Wrapper */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* Page Content */
.page-content {
  padding: 20px;
}

.page-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Landscape Warning */
.landscape-warning {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10; /* Higher than content but lower than header/footer */
}

/* Lottie Container */
#lottie-portrait {
  width: 300px; /* Adjust width */
  height: 300px; /* Adjust height */
}

/* Portrait Mode for Mobile/Tablet */
@media screen and (orientation: portrait) and (max-width: 1024px) {
  .landscape-warning {
    display: flex;
  }

  .page-content {
    visibility: hidden;
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: center;
  }

  .header-message {
    margin: 10px 0;
    font-size: 14px;
  }

  .call-button {
    margin-top: 10px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li {
    margin: 5px 0;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    right: 0;
    border-top: 1px solid #e5e5e5;
    padding: 10px 15px;
  }

  .nav-menu.active {
    display: flex;
  }
}