@font-face {
  font-family: "AaMgScript-Regular";
  src: url("../../AaMgScript-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.main-header {
  background-color: #fff;
  border-bottom: 3px solid rgba(242, 187, 44, 0.5);
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1000;
  overflow: visible !important;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 100%;
  margin: 0;
  gap: 0;
  min-height: 100px;
}

.award-img {
  width: auto;
  max-height: 120px;
  max-width: min(200px, 20vw);
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.award-img:hover {
  transform: scale(1.05);
}

.award-left,
.award-right {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  max-width: 600px;
  padding: 0 clamp(5px, 2vw, 20px);
}

.header-center h1,
.header-center h2,
.tagline-primary,
.tagline-secondary {
  font-family: "Delphin No. 2 W01 Regular", "Delphin", "Cinzel",
    "Playfair Display", "Georgia", serif !important;
  font-display: swap;
}

.tagline-primary {
  font-size: clamp(1.2rem, 4vw, 2.5rem) !important;
  color: #42971f !important;
  margin: 0 0 clamp(4px, 1vw, 12px) 0 !important;
  font-weight: 500 !important;
  line-height: clamp(1.1, 1vw + 1, 1.3) !important;
  font-style: normal !important;
  word-wrap: break-word;
  hyphens: auto;
}

.tagline-secondary {
  font-size: clamp(1rem, 3.2vw, 2rem) !important;
  color: #42971f !important;
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: clamp(1.2, 1vw + 1.1, 1.4) !important;
  word-wrap: break-word;
  hyphens: auto;
}

div[data-role="page"],
.ui-page,
.home {
  overflow: visible !important;
}

.main-navigation {
  background: #ffffff;
  border-top: 3px solid rgba(242, 187, 44, 0.5);
  border-bottom: 3px solid rgba(242, 187, 44, 0.5);
  overflow: visible !important;
  position: relative;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 15px;
  height: 50px;
  column-gap: 10px;
  overflow: visible;
}

.hamburger-menu-btn {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  color: teal !important;
  padding: 6px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
  width: auto !important;
  height: auto !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.hamburger-menu-btn:focus {
  outline: none !important;
  border: none !important;
}

.hamburger-menu-btn svg {
  transition: all 0.3s ease;
}
.hamburger-menu-btn:hover {
  color: #006666;
  transform: scale(1.1);
}
.hamburger-menu-btn:hover svg {
  filter: drop-shadow(0 2px 4px rgba(0, 128, 128, 0.3));
}
.hamburger-menu-btn:active {
  transform: scale(0.95);
}
.hamburger-menu-btn:active svg {
  filter: none;
}

.visible-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  min-width: 0;
  white-space: nowrap;
  overflow: visible;
  justify-content: flex-start;
  gap: 0;
}

@media (max-width: 768px) {
  .visible-nav {
    gap: 1px;
    margin-right: 12px;
  }
  .nav-link {
    padding: 8px 10px !important;
    font-size: 0.85rem !important;
    margin: 0 -2px 0 0 !important;
    flex-shrink: 1;
  }
  .more-btn {
    font-size: 0.85rem !important;
    padding: 4px !important;
    margin-left: 6px !important;
    gap: 4px !important;
  }
}

@media (max-width: 600px) {
  .visible-nav {
    margin-right: 15px;
  }
  .nav-link {
    padding: 6px 8px !important;
    font-size: 0.8rem !important;
    margin: 0 -1px 0 0 !important;
  }
}

.more-dropdown {
  position: relative;
  margin-left: 15px;
  justify-self: end;
  flex-shrink: 0;
  z-index: 1000;
}

@media (max-width: 768px) {
  .more-dropdown {
    margin-left: 6px !important;
  }
}

.more-btn {
  background: transparent !important;
  color: teal !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 6px;
  margin-left: 15px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Delphin No. 2 W01 Regular", "Delphin", "Cinzel",
    "Playfair Display", "Georgia", serif !important;
}

.more-btn:focus {
  outline: none !important;
  border: none !important;
}
.more-btn:hover {
  color: #006666 !important;
  transform: scale(1.1);
}
.more-btn:active {
  transform: scale(0.95);
}
.more-btn svg {
  transition: all 0.3s ease;
}
.more-btn:hover svg {
  filter: drop-shadow(0 2px 4px rgba(0, 128, 128, 0.3));
}
.more-btn:active svg {
  filter: none;
}
.more-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.more-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%) !important;
  border: 1px solid rgba(0, 128, 128, 0.2) !important;
  border-top: 2px solid teal !important;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 128, 128, 0.1) !important;
  min-width: 220px;
  display: none !important;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99999 !important;
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.more-menu.show {
  display: block !important;
}

.more-menu::-webkit-scrollbar {
  width: 6px;
}
.more-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.more-menu::-webkit-scrollbar-thumb {
  background: teal;
  border-radius: 3px;
}
.more-menu::-webkit-scrollbar-thumb:hover {
  background: #006666;
}

.more-menu .nav-link {
  display: block !important;
  margin: 0 4px !important;
  padding: 14px 24px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  color: #2c3e50 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
  width: calc(100% - 8px) !important;
  text-align: left !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

.more-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, teal, #006666);
  transition: height 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.more-menu .nav-link:hover {
  background: linear-gradient(
    to right,
    rgba(0, 128, 128, 0.08),
    transparent
  ) !important;
  color: teal !important;
  transform: translateX(4px) !important;
  padding-left: 28px !important;
}

.more-menu .nav-link:hover::before {
  height: 70%;
}

.more-menu .nav-link.btnSelected {
  background: linear-gradient(
    135deg,
    rgba(0, 128, 128, 0.12) 0%,
    rgba(0, 128, 128, 0.05) 100%
  ) !important;
  color: teal !important;
  font-weight: 600 !important;
  border-left: 3px solid teal !important;
  padding-left: 21px !important;
}

.more-menu .nav-link.btnSelected::after {
  content: "●";
  position: absolute;
  right: 20px;
  color: teal;
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.more-menu .nav-link:active {
  transform: scale(0.98) translateX(4px) !important;
}

.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.hamburger-overlay.show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.hamburger-menu {
  background: white;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hamburger-header {
  background: white;
  padding: 25px 30px 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10001;
}

.hamburger-header-text {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.hamburger-header-text h2 {
  color: #42971f;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  margin: 0;
  font-family: "AaMgScript-Regular", "Georgia", serif !important;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.hamburger-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hamburger-logo img {
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.hamburger-logo:hover img {
  opacity: 0.8;
}

.close-hamburger {
  background: none;
  border: none;
  color: red !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  transition: all 0.2s ease;
  width: 100px !important;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  box-sizing: border-box !important;
}

.close-hamburger:hover {
  background-color: rgba(255, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.05);
}
.close-hamburger:focus {
  outline: none !important;
}
.close-hamburger svg {
  width: 64px !important;
  height: 64px !important;
  stroke-width: 3;
  display: block !important;
  margin: 0 auto !important;
}
.close-hamburger svg path {
  stroke: red !important;
}

.hamburger-nav {
  padding: 40px 20px 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}
.nav-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px;
  padding: 0;
  margin: 0;
}
.nav-category {
  margin-bottom: 30px;
}
.category-header {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 15px;
  padding-left: 0px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 20px;
  font-family: "AaMgScript-Regular", "Georgia", serif !important;
}
.nav-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-item {
  display: block;
  padding: 12px 10px;
  color: #2c3e50 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
  border-left: 3px solid transparent;
  padding-left: 0px;
}
.nav-item:hover {
  color: teal;
  border-left-color: teal;
  background-color: rgba(0, 128, 128, 0.05);
  padding-left: 10px;
}
.nav-item.featured {
  font-weight: 500 !important;
  color: #2c3e50 !important;
}
.nav-item.featured:hover {
  color: teal;
}

button.ui-btn.hamburger-menu-btn,
button.ui-btn.close-hamburger {
  width: auto !important;
  height: auto !important;
}
#hamburgerBtn.ui-btn,
#closeHamburger.ui-btn {
  width: auto !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .nav-column {
    min-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
  .hamburger-nav {
    gap: 30px;
    padding: 30px 20px;
  }
  .hamburger-header {
    padding: 20px;
  }
  .hamburger-header-text {
    padding: 0 15px;
  }
  .hamburger-header-text h2 {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
  }
  .nav-category {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .nav-column {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .hamburger-nav {
    gap: 25px;
    padding: 25px 15px;
  }
  .hamburger-header {
    padding: 15px;
  }
  .hamburger-header-text {
    padding: 0 10px;
  }
  .hamburger-header-text h2 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }
  .close-hamburger {
    width: 80px !important;
    height: 80px !important;
    right: 15px;
  }
  .close-hamburger svg {
    width: 48px !important;
    height: 48px !important;
  }
  .hamburger-logo img {
    height: 35px;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  margin: 0 -4px 0 0;
  background: teal !important;
  text-shadow: none !important;
  color: white !important;
  -webkit-box-shadow: 2px 4px rgba(255, 255, 204, 0.6) !important;
  box-shadow: 2px 4px rgba(255, 255, 204, 0.6) !important;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.95rem;
  padding: 12px 15px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover,
.nav-link.active,
.nav-link.btnSelected {
  background-color: #58faac !important;
  color: rgb(1, 75, 66) !important;
}
.nav-link.book-now {
  background: teal !important;
  color: white !important;
  -webkit-box-shadow: 2px 4px rgba(255, 255, 204, 0.6) !important;
  box-shadow: 2px 4px rgba(255, 255, 204, 0.6) !important;
}
.nav-link.book-now:hover,
.nav-link.book-now.active,
.nav-link.book-now.btnSelected {
  background-color: #58faac !important;
  color: rgb(1, 75, 66) !important;
}

/* Awards container responsive */
.awards-container {
  display: none;
}
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    padding: 15px 10px;
    min-height: auto;
    align-items: center;
  }
  .award-left,
  .award-right {
    display: none;
  }
  .header-center {
    order: 1;
    padding: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .tagline-primary {
    font-size: clamp(1.3rem, 4vw, 1.8rem) !important;
    margin-bottom: clamp(3px, 0.8vw, 8px);
  }
  .tagline-secondary {
    font-size: clamp(1rem, 3vw, 1.4rem) !important;
  }
  .awards-container {
    display: flex;
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
  .award-left-mobile,
  .award-right-mobile {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }
  .awards-container .award-img {
    max-height: 70px;
    max-width: 120px;
    width: auto;
    height: 70px;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .header-top {
    padding: 8px 0;
    min-height: 85px;
  }
  .award-img {
    max-height: 85px;
    max-width: min(160px, 16vw);
  }
  .nav-link {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}
@media (max-width: 1200px) {
  .header-top {
    padding: 8px 0;
    min-height: 90px;
  }
  .award-img {
    max-height: 100px;
    max-width: min(180px, 18vw);
  }
  .tagline-primary {
    font-size: clamp(1.4rem, 3.5vw, 2rem) !important;
  }
  .tagline-secondary {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem) !important;
  }
  .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/* Prevent body scroll when hamburger is open */
body.hamburger-open {
  overflow: hidden !important;
}
