* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--primary-font);
  max-width: 100%;
}

/* Regular */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-Regular.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-Regular.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-SemiBold.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-SemiBold.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =======================
   GENERAL SANS
======================= */

@font-face {
  font-family: "General Sans";
  src:
    url("../fonts/general-sans/GeneralSans-Semibold.woff2") format("woff2"),
    url("../fonts/general-sans/GeneralSans-Semibold.woff") format("woff"),
    url("../fonts/general-sans/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General-Medium";
  src:
    url("../fonts/general-sans/GeneralSans-Medium.woff2") format("woff2"),
    url("../fonts/general-sans/GeneralSans-Medium.woff") format("woff"),
    url("../fonts/general-sans/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #e6a600;
  --secondary: #026cb5;
  --tertiary: #594800;
  --color-green: #9cc43f;
  --color-yellow: #ffce00;
  --primary-font: "PP Mori", sans-serif;
  --secondary-font: "General Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
.header-title h2 {
  font-family: var(--primary-font);
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-size: 60px;
}
.destination__title h2 {
  font-family: var(--primary-font);
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-size: 56px;
}
.header-title span {
  font-family: var(--primary-font);
  color: var(--secondary);
}
.destination__title span {
  font-family: var(--primary-font);
  color: var(--secondary);
}
.header-title {
  margin-bottom: 30px;
}
.header-title p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.58);
  text-align: center;
  max-width: 100%;
  width: 500px;
  margin: 0 auto;
  line-height: 25px;
}
h3 {
  font-family: var(--primary-font);
  font-size: 24px;
  line-height: 1.4;

  color: #000;
}

p {
  font-family: var(--primary-font);
  color: #000;
  font-size: 16px;
  margin-bottom: 0;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  object-fit: cover;
}

.position-relative {
  position: relative;
}

.column-1 {
  grid-column: span 1;
}
.row-1 {
  grid-row: span 1;
}
.column-2 {
  grid-column: span 2;
}
.row-2 {
  grid-row: span 2;
}
.column-3 {
  grid-column: span 3;
}
.row-3 {
  grid-row: span 3;
}
.column-4 {
  grid-column: span 4;
}
.row-4 {
  grid-row: span 4;
}
.column-5 {
  grid-column: span 5;
}
.row-5 {
  grid-row: span 5;
}
.column-6 {
  grid-column: span 6;
}
.row-6 {
  grid-row: span 6;
}
.column-7 {
  grid-column: span 7;
}
.row-7 {
  grid-row: span 7;
}
.column-8 {
  grid-column: span 8;
}
.row-8 {
  grid-row: span 8;
}
.column-9 {
  grid-column: span 9;
}
.row-9 {
  grid-row: span 9;
}
.column-10 {
  grid-column: span 10;
}
.row-10 {
  grid-row: span 10;
}
.column-11 {
  grid-column: span 11;
}
.row-11 {
  grid-row: span 11;
}
.column-12 {
  grid-column: span 12;
}
.row-12 {
  grid-row: span 12;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.section {
  padding-top: 50px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.h-100 {
  height: 100%;
}

.mb-5 {
  margin-bottom: 30px;
}

.mt-48 {
  margin-top: 40%;
}
.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-inline::after,
.flex-inline::before,
.flex::after,
.flex::before {
  display: none;
}
.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}

@media (max-width: 992px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 6;
  }
  .grid {
    grid-gap: 16px;
  }
}

@media (max-width: 768px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 12;
  }
}

.mt-40 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 2rem;
}
.left-column {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 3rem;
}
.right-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 300px;
  min-width: 300px;
}

.section-sm {
  padding: 40px 0;
}
.section-md {
  padding: 50px 0;
}
.section-lg {
  padding: 100px 0;
}

.castle-container-xlarge {
  max-width: 1800px;
  margin: 0 auto;
}

.castle-container-large {
  max-width: 1400px;

  margin: 0 auto;
  padding: 0 20px;
}
.castle-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.castle-container-small {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.castle-container-xsmall {
  max-width: 890px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .castle-container-small {
    padding: 0 40px;
  }
}
.text-center {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin: 1.5em 0;
  display: grid;
  grid-gap: 1.5em;
  padding: 0 15px;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.gallery-icon.landscape {
  height: 100%;
}
@media (max-width: 768px) {
  .gallery {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}

@media (max-width: 992px) {
  .header-title h2 {
    font-size: 35px;
    text-align: center;
  }
  .header-content h1 {
    font-size: 45px;
  }
}

/* ======================
Header Contents 
=========================*/
.site-header {
  align-items: center;
  justify-content: space-between;
  top: 0;
  font-family: var(--primary-font);
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  padding: 5px 0;
  background: transparent;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.site-header.sticky {
  top: 0;
  position: fixed;
}
/* Sticky Transparent Header */
.site-header.sticky-transparent {
  position: absolute;
  background: transparent;

  box-shadow: none;
}
/* .site-header.fixed-opaque,
.site-header.sticky-transparent {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
} */
/* Fixed Opaque Header */
.site-header.fixed-opaque {
  position: fixed !important;
  background: var(--secondary) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
  padding: 5px 0;
}

.site-header.header-default {
  position: static;
  background: var(--secondary) !important;
  backdrop-filter: blur(20px) !important;
  padding: 5px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Header Container */
.site-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

/* Branding / Logo */
.site-branding {
  display: flex;
  gap: 20px;
}

.custom-logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.custom-logo {
  height: 112.62px;
  width: 142px;
  transition: all 0.3s ease;
}

.site-title {
  display: none;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-description {
  font-size: 11px;
  font-weight: 400;
  color: #333;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;

  background: transparent;
  transition: all 0.3s ease;
}

.primary-menu,
#primary-menu {
  display: flex;
  list-style: none;
  gap: 50px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
@media (max-width: 1400px) {
  .primary-menu,
  #primary-menu {
    gap: 30px;
    row-gap: 0;
  }
  .site-header-container {
    gap: 50px;
  }
}
.primary-menu li,
#primary-menu li {
  position: relative;
}

.primary-menu li a,
#primary-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a,
#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--primary);
}

/* Dropdown Arrow */
.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  margin: 0 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Desktop Dropdown */
.primary-menu .sub-menu,
#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;

  list-style: none;
  margin: 0;
  min-width: 200px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;

  transition: all 0.1s ease;
}

.primary-menu li:hover > .sub-menu,
#primary-menu li:hover > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-menu .sub-menu li:first-child,
#primary-menu .sub-menu li:first-child {
  margin-top: 10px;
}

.primary-menu .sub-menu li:last-child,
#primary-menu .sub-menu li:last-child {
  padding-bottom: 10px;
}

.primary-menu .sub-menu li,
#primary-menu .sub-menu li {
  margin: 0 10px;
}

.primary-menu .sub-menu li a,
#primary-menu .sub-menu li a {
  padding: 12px;
  color: var(--secondary);
  font-size: 16px;

  white-space: nowrap;
}

.primary-menu .sub-menu li a:hover,
#primary-menu .sub-menu li a:hover {
  background: var(--secondary);

  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-header {
  will-change: position;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
/* 
.mobile-menu-toggle:focus,
.primary-menu a:focus,
#primary-menu a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
} */

@media (min-width: 901px) {
  .site-header.fixed-opaque .custom-logo {
    height: 90px;
    width: 115px;
  }
}
/* ============================================
   FOOTER 
============================================ */

.site-footer {
  position: relative;
  background: #fff;
  padding-top: 60px;
}

.footer-col.first {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
}

.site-info {
  position: relative;
  z-index: 1;
}

.site-info::after {
  content: url("../images/footer-bg.png");
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  pointer-events: none;
}

.footer-col h4 {
  font-size: 24px;
  font-family: var(--primary-font);
  color: rgba(0, 0, 0, 1);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
  /* display: flex;
  align-items: flex-start; */
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(36, 36, 36, 0.98);
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-col ul li p {
  font-family: var(--primary-font);
  color: rgba(36, 36, 36, 0.98);
  font-size: 16px;
  margin: 0;
}

.footer-bottom-links p {
  font-family: var(--primary-font);
  color: rgba(36, 36, 36, 0.98);
  font-size: 18px;
  margin: 25px 0 10px 0;
  font-weight: 600;
}

.footer-col.logo {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: inline-block;
  height: 200px;
  width: 250px;
  margin-bottom: 10px;
}

.footer-logo img {
  object-fit: contain;
}

.footer-bottom-links.aff {
  text-align: center;
}
.footer-bottom-links.social {
  padding-top: 25px;
}
.affiliations {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.affiliations img {
  height: 30px;
  width: auto;
}

.footer-col.links {
  text-align: right;
}

/* .footer-col.links ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */

.social-icons {
  display: flex;
  gap: 14px;
}

.fa-brands,
.fa-solid {
  font-size: 25px;
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 60px;
  margin-bottom: 0;
  position: relative;
  text-align: left;
  background: var(--secondary);
  z-index: 1;
}

.castle-container.footer-last {
  margin: auto;
  align-items: center;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.castle-container.footer-last p {
  font-size: 14px;
  margin: 0;
}

.footer-bottom p {
  margin: 0;
  color: white;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

@media (max-width: 800px) {
  .site-footer {
    padding-top: 20px;
  }
  .footer-bottom {
    margin-top: 20px;
  }
  .footer-col.first {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Logo takes full first row */
  .footer-col.logo {
    grid-column: 1 / -1;
    order: 1;
  }

  /* Contact and Links side-by-side below logo */
  .footer-col.contact {
    order: 2;
    grid-column: 1;
  }

  .footer-col.links {
    order: 3;
    grid-column: 2;
  }

  .footer-logo {
    height: 160px;
    width: 220px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .castle-container.footer-last {
    display: block;
    line-height: 1.6;
    text-align: center;
  }
}

/* 480px ONLY: LEFT ALIGN ALL CONTENT, LOGO CENTER */
@media (max-width: 480px) {
  .footer-col.first {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .footer-col h4 {
    text-align: left !important;
  }

  .footer-col ul {
    text-align: left !important;
  }

  .footer-col ul li {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .footer-col.contact,
  .footer-col.links {
    text-align: left !important;
  }

  .footer-col.links ul {
    align-items: flex-start !important;
  }

  .footer-col.logo {
    text-align: center !important;
  }

  .footer-col.logo {
    order: 1;
    grid-column: 1 !important;
  }

  .footer-col.links {
    order: 2;
    grid-column: 1 !important;
  }

  .footer-col.contact {
    order: 3;
    grid-column: 1 !important;
  }

  .footer-logo {
    height: 140px;
    width: 200px;
  }
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-section {
    min-height: 60vh;
  }
  .hero-btn:hover {
    transform: none !important;
  }
}

.hero-image {
  position: absolute;
  inset: 0;
  max-width: 100%;
  height: 100%;
}
.overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 39.44%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px 80px 20px;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--secondary-font);
  color: #fff;
  letter-spacing: -0.02em;
  font-size: 64px;
  font-weight: 600;
  line-height: 68px;
  max-width: 100%;
  width: 1000px;
  margin: 0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content {
    width: 800px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    display: block;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    overflow: visible;
    padding-top: 90px;
  }

  .hero-image {
    width: 100%;
    height: auto;

    display: block;
  }

  .overlay-hero {
    display: none;
  }
  .hero-content {
    position: static;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin: 0 auto;

    background: var(--secondary);
  }

  .hero-content h1 {
    line-height: 40px;
    font-size: 36px;

    width: 100%;
    word-wrap: break-word;
  }

  .hero-content p {
    font-size: 18px;
    color: #fff;
    word-wrap: break-word;
  }

  .hero-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
  }
  .primary-menu .sub-menu li:first-child,
  #primary-menu .sub-menu li:first-child {
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    line-height: 30px;
    font-size: 20px;
  }

  .hero-btn {
    padding: 10px 0;
    font-size: 13px;
  }
  .header-title h2 {
    font-size: 22px;
  }
  .about-content h3 {
    font-size: 18px;
  }
}

.sub-title {
  font-weight: 500;
  color: rgba(33, 33, 33, 0.81);
  font-family: var(--secondary-font);
  font-size: 24px;
}

.hero-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--tertiary);
  text-decoration: none;
  font-family: var(--primary-font);
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 40px;
  padding-top: 14.7px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  /* Fixed Header on Mobile */
  .site-header {
    position: fixed !important;

    background: var(--secondary) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 1000;
  }
  .site-header.sticky-transparent {
    position: absolute !important;
    background: transparent !important;
    padding: 20px 0;
    box-shadow: none !important;
  }

  .site-header.fixed-opaque {
    position: fixed !important;
    background: var(--secondary) !important;
    padding: 15px 0;
  }
  body {
    padding-top: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .mobile-menu-toggle span {
    background: #fff;
    width: 25px;
    margin-bottom: 5px;
  }

  .main-navigation {
    display: block;
    align-items: normal;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    width: 320px;
    height: 100vh;
    background: var(--secondary);
    padding: 130px 20px;
    z-index: 1000;
  }

  .main-navigation.toggled {
    width: 250px;
    transform: translateX(0);
  }

  /* Vertical Menu Items */
  .primary-menu,
  #primary-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .primary-menu li,
  #primary-menu li {
    width: 100%;
  }

  /* Mobile Dropdown */
  .menu-item-has-children > a {
    position: relative;
  }

  .menu-item-has-children > a::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top-color: #fff;
  }

  .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .primary-menu .sub-menu {
    /* max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; */
    padding-right: 20px;
    /* margin-top: 5px;
    background: rgba(255, 255, 255, 0.05); */
  }

  .menu-item-has-children.active > .sub-menu {
    max-height: 500px;
  }

  .primary-menu .sub-menu li a,
  #primary-menu .sub-menu li a {
    font-size: 16px;

    color: #000;
  }

  .hero-image {
    position: relative;
  }
}
@media (max-width: 900px) {
  .primary-menu .sub-menu {
    position: relative !important; /* Not absolute */
  }
  .primary-menu .sub-menu li a {
    pointer-events: auto !important;
    z-index: 1003;
  }
}
/* Hero Section Single Pages */
.hero-content.single {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
}

.hero-content.single h1 {
  font-family: var(--primary-font);
  color: var(--color-yellow);
  font-size: 58px;
  width: 100%;
  margin: 0;
}
.hero-content.single p {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .hero-content.single h1 {
    font-size: 50px;
    line-height: 1;
  }
}
@media (max-width: 900px) {
  .hero-content.single {
    transform: translateX(0);
    position: static;
  }
  .overlay-hero {
    display: none;
  }

  .hero-content.single h1 {
    font-size: 48px;
  }
  .hero-content.single p {
    font-size: 28px;

    color: #fff;
  }
  .header-title p {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .hero-content.single h1 {
    font-size: 38px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .hero-content.single h1 {
    font-size: 30px;
  }
  .hero-content.single p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content.single h1 {
    font-size: 24px;
    line-height: 22px;
  }

  .hero-content.single p {
    font-size: 18px;
  }

  .hero-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ============
Content Single 
================ */
.content-single p {
  text-align: center;
  margin: 0 auto;
  font-family: var(--primary-font);
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
/* =============
404 page
============== */
.error-404-section {
  display: flex;
  justify-content: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.castle-container-small.error {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: white;
  max-width: 600px;
}

.error-404-number {
  font-size: 180px;
  font-weight: 900;
  background: linear-gradient(135deg, #fdb714 0%, #e5a712 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(253, 183, 20, 0.3);
}
.error-404-section h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.error-404-section p {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.error-btn-primary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background: var(--secondary, #026cb5);
  color: white;
  border: 2px solid var(--secondary, #026cb5);
  transition: all 0.3s ease;
}

.error-btn-primary:hover {
  background: var(--color-yellow, #ffce00);
  border-color: var(--color-yellow, #ffce00);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 183, 20, 0.4);
}


@media (max-width: 768px) {
  .error-404-number {
    font-size: 120px;
  }
  .error-404-section h1 {
    font-size: 32px;
  }
  .castle-container-small.error {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .error-404-number {
    font-size: 90px;
  }
  .error-404-section h1 {
    font-size: 26px;
  }
}

.content-block.sample h2 {
  font-size: 30px;
  color: var(--secondary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.content-block.sample p {
  font-size: 18px;
  font-weight: 400px;
  margin-top: 20px;
  color: #000;
}
.readmore-text {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.read-more {
  display: none;
  cursor: pointer;
  font-weight: 600;
}
.book-form form.wpcf7-form {
gap: 20px;
row-gap: 20px;
row-gap: 10px;}