/* =========================================
   KHALILA — Members Club  (Brand Stylesheet)
   ========================================= */

:root {
  --c-cream: #E3D9C4;
  --c-cream-soft: #E3D9C4;
  --c-burgundy: #630000;
  --c-burgundy-dark: #630000;
  --c-olive: #7d8a4c;
  --c-olive-dark: #6a7740;
  --c-terracotta: #c66a3d;
  --c-terracotta-soft: #d27a4d;
  --c-sky: #bfe0e8;
  --c-sky-soft: #d3ecf2;
  --c-text: #630000;
  --c-text-soft: #5a2a2a;
  --c-on-dark: #f5e8d5;
  --c-white: #ffffff;

  --ff-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ff-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

  --shadow-soft: 0 6px 24px rgba(0,0,0,.08);
  --shadow-strong: 0 12px 40px rgba(0,0,0,.18);
  --radius-pill: 999px;
}
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Regular.eot');
    src: url('../fonts/tajawal/Tajawal-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/tajawal/Tajawal-Regular.woff2') format('woff2'),
    url('../fonts/tajawal/Tajawal-Regular.woff') format('woff'),
    url('../fonts/tajawal/Tajawal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html[dir="rtl"] body {
  font-family: 'Tajawal' , serif !important;
  direction: rtl !important;
  text-align: right !important;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1,h2,h3,h4 { margin: 0 0 .6rem; color: var(--c-burgundy); font-weight: 700;   text-transform: uppercase !important; }
p { margin: 0 0 1rem; }

/* ---- Header / Nav ---- */
.site-header {
  background: var(--c-cream);
   position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo img { height: 64px; width: auto; }


/* Language Dropdown */
.language-dropdown {
  position: relative;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--c-cream);
  border-radius: 50%;
  background: var(--c-burgundy);
  color: var(--c-cream);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  padding: 0;
}

.lang-toggle:hover {
  background: var(--c-burgundy-dark);
  color: var(--c-cream-soft);
  border-color: var(--c-cream-soft);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: unset;
  left: 0;
  min-width: 140px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: var(--c-cream);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(99, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 99999;
  overflow: hidden;
  text-align: left;
}

.lang-menu li {
  margin: 0;
  padding: 0;
}

.lang-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--c-burgundy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition: 0.3s ease;
}

.lang-menu li a:hover {
  background: var(--c-olive);
  color: #fff;
}

.language-dropdown:hover .lang-menu,
.language-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ===============================
   Arabic / RTL Version
================================ */
html[dir="rtl"] .language-dropdown {
  direction: rtl;
}

html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .lang-menu li a {
  text-align: right;
}


/* لو الدروب داون جوه هيدر عليه overflow */
header,
.site-header,
.main-header,
.navbar,
.header-wrapper {
  overflow: visible;
}


/* Mobile */
@media (max-width: 767px) {
  .language-dropdown {
    position: relative;
    display: inline-flex;
  }

  .lang-toggle {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .lang-menu {
    top: calc(100% + 8px);
    right: auto !important;
    left: 0 !important;
    min-width: 125px;
  }

  .lang-menu li a {
    padding: 9px 14px;
    font-size: 14px;
  }

  html[dir="rtl"] .lang-menu {
    right: 0 !important;
    left: auto !important;
  }
}
/* ---- Buttons ---- */
.btn-khalila {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--c-olive);
  color: var(--c-burgundy);
  background: transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.mem-tiers .btn-khalila{
  background: var(--c-olive);
  color: var(--c-cream);
}
.btn-khalila:hover {
  background: var(--c-olive);
  color: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-khalila .palm-ico {
  width: 28px; height: 28px;
  display: inline-block;
  background: url("../images/palm.svg") center/contain no-repeat;
}
.btn-solid {
  background: var(--c-burgundy);
  color: var(--c-cream);
  border-color: var(--c-burgundy);
}
.btn-solid:hover {
  background: var(--c-burgundy-dark);
  border-color: var(--c-burgundy-dark);
  color: var(--c-cream);
}

/* ---- Hero (Home) ---- */
.hero-home {
  background: #CAF0F9;
  text-align: center;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-home .palm-divider { margin: 0 auto 28px; }
.hero-home .lead-copy {
  max-width:77%;
  font-weight: 500;
  margin: 0 auto 40px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--c-text);
}
.hero-tray {
  margin-top: 100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Section: Modern Saudi Members Club ---- */
.intro-section {
  background: var(--c-cream);
  text-align: center;
  padding: 100px 0;
}
.intro-section h2 {
  font-size: 28px;
  margin-bottom: 50px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 14px;
  color: var(--c-burgundy);
}

/* ---- Category cards (red strip) ---- */
.cat-strip {
  background: var(--c-burgundy);
  padding: 60px 0;
}
.cat-strip-page{
  background: #fff;
  padding: 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}
.cat-strip-page .cat-grid{
  gap: 50px 10px;
}
.cat-card {
  position: relative;
  display: block;
  height: 200px;
   overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease, box-shadow .4s ease;
}
.cat-strip-page .cat-card{
  height: 600px;
}
/*.cat-card::before {*/
/*  content: '';*/
/*  position: absolute; inset: 0;*/
/*  background: linear-gradient(180deg, rgba(107,14,21,.35) 0%, rgba(107,14,21,.55) 100%);*/
/*  transition: background .4s;*/
/*}*/
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.cat-card:hover::before {
  background: linear-gradient(180deg, rgba(107,14,21,.15) 0%, rgba(107,14,21,.35) 100%);
}
.cat-card .label {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  letter-spacing: .12em;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}

/* ---- OUR SPACE banner ---- */
.space-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px 0 150px;
  color: #fff;
  text-align: center;
}
.space-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(60,20,15,.55);
}
.space-banner > .container-xl { position: relative; z-index: 2; }
.space-banner h2 { color: #fff; font-size: 36px; letter-spacing: .08em; }
.space-banner h3 { color: #fff; font-weight: 600; font-size: 41px; margin : 60px 0;  }
.space-banner p { max-width: 640px; margin: 0 auto; font-size: 15px; }

/* ---- Designed for Privacy framed card ---- */
.privacy-frame {
  background:#fff;
  padding: 60px 0 0;
  position: relative;
}
.frame-wrap {
  position: relative;
  background: url('../images/hero-tray.png') center/100% 100% no-repeat,
  var(--c-terracotta);
  padding: 70px;
  max-width: 100% ;
  height : 550px;
  margin: -140px auto 0;
  z-index : 2 ;
}
.frame-inner {
  padding: 60px 50px 100px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}
.frame-inner h3 { font-size: 34px; margin-bottom: 50px; }
.frame-inner p { max-width: 720px; margin: 50px auto 0; color: var(--c-burgundy); font-size: 16px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--c-cream);
  padding: 10px 0 5px;
  text-align: center;
  color: var(--c-burgundy);
  font-size: 14px;
}
.site-footer .palm-divider{
  width: 75px;
  height: 75px;
}
.site-footer .palm-divider { margin: 0 auto 18px; }
.site-footer p { margin: 4px 0; }
.site-footer a { color: var(--c-burgundy); }
.site-footer a:hover { color: var(--c-olive); }
.site-footer .social-list {
  display: flex; gap: 14px; justify-content: center;
  margin: 16px 0;
}
.site-footer .social-list a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-burgundy); border-radius: 999px;
  font-size: 16px;
  transition: all .25s;
}
.site-footer .social-list a:hover {
  background: var(--c-burgundy); color: var(--c-cream); border-color: var(--c-burgundy);
}

/* ---- Palm divider component ---- */
.palm-divider {
  width: 32px;
  height: 32px;
  background: url('../images/palm.svg') center/contain no-repeat;
}
.line-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  margin: 30px auto;
}
.line-divider::before,
.line-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--c-burgundy);
}
.menu-hero .line-divider::before,
.menu-hero .line-divider::after{
  content: none;
}
.palm-divider-line{
  flex: 1;
  height: 2px;
  background: var(--c-burgundy);
}
.menu-hero .palm-divider{
  width: 75px;
  height: 75px;
}
/* ---- About page ---- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.about-text {
  background: var(--c-burgundy);
  color: var(--c-on-dark);
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-text h1 {
  color: #fff;
  font-size: 56px;
  letter-spacing: .04em;
  margin-bottom: 30px;
}
.about-text p { font-size: 17px; line-height: 1.85; color: var(--c-on-dark); text-align: center}
.about-image {
  background: var(--c-olive);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 80px;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 720px;
}

/* ---- Menu page ---- */
.menu-hero {
  text-align: center;
  padding: 70px 0 40px;
  background: var(--c-cream);
}
.menu-hero h1 { font-size: 38px; letter-spacing: .12em; margin-bottom: 30px; }
.menu-hero h2 { font-size: 26px; font-weight: 600; margin-bottom: 30px; }
.menu-hero p {
  max-width: 720px; margin: 0 auto;
  color: var(--c-burgundy); font-size: 15px;
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-white);
  padding: 30px 0 60px;
}
.menu-cards .cat-card {
  height: 320px;
  border-radius: 0;
  cursor: pointer;
}
.menu-cards .cat-card::before {
  background: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.45) 100%);
}
.menu-cards .cat-card.is-active {
  outline: 4px solid var(--c-olive);
  outline-offset: -4px;
}
.menu-cards .cat-card.is-active::before {
  background: linear-gradient(180deg, rgba(125,138,76,.25) 0%, rgba(107,14,21,.65) 100%);
}
.menu-items {
  background: var(--c-cream);
  padding: 70px 0;
}
.menu-item-col { transition: opacity .25s; }
.menu-item-col.is-hidden { display: none; }
.menu-item-card {
  background: #fff;
  border: 1px solid var(--c-olive);
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  display: flex; flex-direction: column;
}
.menu-item-image {
  margin: -22px -22px 16px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-card h4 { font-size: 18px; margin-bottom: 6px; }
.menu-item-card .desc { font-size: 14px; color: var(--c-text-soft); margin-bottom: 12px; flex: 1; }
.menu-item-card .price { color: var(--c-olive-dark); font-weight: 700; font-size: 16px; }
.menu-empty-state { padding: 30px 0; }

/* ---- Memberships page ---- */
.mem-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0 200px;
  color: #fff;
  text-align: center;
}
.mem-hero > .container-xl { position: relative; z-index: 2; }
.mem-hero h1 { color: #fff; font-size: 28px; margin-bottom: 18px; }
.mem-hero h3 { color: #fff; font-weight: 400; font-size: 22px; margin: 30px 0; }
.mem-hero p { max-width: 600px; margin: 0 auto; }

.mem-tiers {
  background: var(--c-cream);
  padding: 70px 0;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  text-align: center;
}
.tier-card h3 {
  font-size: 22px;
  min-height: 65px;
  letter-spacing: .08em;
  margin-bottom: 10px;
  color: var(--c-burgundy);
}

.apply-section {
  background: var(--c-olive);
  padding: 80px 0;
}
.apply-section h2 {
  text-align: center;
  color: var(--c-burgundy);
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: .08em;
}
.apply-form-wrap {
  background: var(--c-terracotta);
  padding: 40px 50px;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

.apply-form-wrap .wpcf7-form label{
  color: #000;
}
.apply-form-wrap .wpcf7-form .lab-title{
  color: #fff;
}
.apply-form-wrap label{
  display: block;
  font-size: 13px;
  margin: 14px 0 6px;
  color: #fff;
  font-weight: 600;
}
.apply-form-wrap .form-control,
.apply-form-wrap .form-select,
.apply-form-wrap .wpcf7-form input[type=text],
.apply-form-wrap .wpcf7-form input[type=email],
.apply-form-wrap .wpcf7-form input[type=tel],
.apply-form-wrap .wpcf7-form input[type=date],
.apply-form-wrap .wpcf7-form input[type=number],
.apply-form-wrap .wpcf7-form input[type=file],
.apply-form-wrap .wpcf7-form select,
.apply-form-wrap .wpcf7-form textarea {
  background: var(--c-cream-soft);
  border: 0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
  color: var(--c-burgundy);
}
.apply-form-wrap .wpcf7-form .wpcf7-list-item {
  width: 100%; }
.apply-form-wrap .wpcf7-form input[type=submit] {
  width: 100%;
  background: var(--c-cream-soft);
  color: var(--c-burgundy);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 24px;
  cursor: pointer;
  transition: background .25s;
}
.apply-form-wrap .wpcf7-form input[type=submit]:hover { background: #fff; }

/* ---- Membership detail tiers ---- */
.tier-detail {
  background: var(--c-cream);
  padding: 70px 0;
}
.tier-detail .tier-block {
  background: #fff;
   padding: 15px 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
}
.tier-detail h2 {
  color: var(--c-burgundy);
  font-size: 24px;
  margin-bottom: 6px;
  letter-spacing: .06em;
}
.tier-detail .price {
  color: var(--c-olive-dark);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}
.tier-detail ul { padding-left: 22px; margin: 0; color: var(--c-text-soft);list-style: none }
.tier-detail ul li { margin-bottom:0; }
.membership-popup-content .tier-block .btn-khalila{
  margin: 30px auto;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 220px;
  background: #E3D9C4;
}
.membership-popup-content .tier-block .btn-khalila:hover{
  color: var(--c-burgundy);
}
/* ---- Events page ---- */
.events-hero {
  text-align: center;
  padding: 60px 0 30px;
  background: var(--c-cream);
}
.events-hero h1 { font-size: 38px; letter-spacing: .1em; }

.event-slider {
  position: relative;
  background: var(--c-cream);
  padding-bottom: 40px;
}
.event-slider .slides { position: relative; }
.event-slider .slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.event-slider .slide.active { display: grid; }
.event-slider .slide img {
  width: 100%; height: 580px; object-fit: cover;
}
.event-slider .nav-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 0;
  box-shadow: var(--shadow-soft);
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: inline-flex; align-items: center; justify-content: center;
}
.event-slider .nav-arrow.prev { left: 24px; }
.event-slider .nav-arrow.next { right: 24px; }
.event-slider .dots {
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
.event-slider .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(107,14,21,.25); border: 0; cursor: pointer;
}
.event-slider .dot.active { background: var(--c-burgundy); }

.events-grid {
  background: var(--c-cream);
  padding: 30px 0 60px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--c-olive);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.event-card .image { height: 220px; background: var(--c-olive); }
.event-card .image img { width: 100%; height: 100%; object-fit: cover; }
.event-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.event-card .date {
  color: var(--c-olive-dark);
  letter-spacing: .1em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-card h4 { font-size: 18px; margin-bottom: 8px; }
.event-card .desc { font-size: 14px; color: var(--c-text-soft); flex: 1; }

/* ---- Contact page ---- */
.contact-hero {
  text-align: center;
  padding: 70px 0 30px;
  background: var(--c-cream);
}
.contact-hero h1 { font-size: 38px; letter-spacing: .12em; }
.contact-hero p { color: var(--c-burgundy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.contact-info {
  background: var(--c-burgundy);
  color: var(--c-on-dark);
  padding: 70px 60px;
}
.contact-info h3 { color: #fff; margin-top: 0; }
.contact-info .info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,232,213,.15);
  font-size: 15px;
}
.contact-info .info-row .ico {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--c-cream);
  font-size: 18px;
}
.contact-form-wrap {
  background: var(--c-olive);
  padding: 70px 60px;
}
.contact-form-wrap h3 { color: var(--c-burgundy); }
.contact-form-wrap .wpcf7-form input,
.contact-form-wrap .wpcf7-form textarea {
  background: var(--c-cream-soft);
  border: 0; border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 14px;
  width: 100%;
  color: var(--c-burgundy);
}
.contact-form-wrap .wpcf7-form textarea { min-height: 130px; resize: vertical; }
.contact-form-wrap .wpcf7-form input[type=submit] {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  background: var(--c-burgundy);
  color: var(--c-cream);
  cursor: pointer;
  transition: background .3s;
  width: 100%;
}
.contact-form-wrap .wpcf7-form input[type=submit]:hover { background: var(--c-burgundy-dark); }
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---- Generic page (Our Story, etc) ---- */
.page-section {
  padding: 60px 0;
  background: var(--c-cream);
}
.page-section .page-editor {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
}
.page-section .main-tit {
  text-align: center;
  font-size: 40px;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

/* ---- Animations on scroll helper ---- */
/*.reveal { opacity: 0; }*/
/*.reveal.in-view { opacity: 1; }*/

/* ---- RTL ---- */
html[dir="rtl"] .nav-main a { letter-spacing: 0; }
html[dir="rtl"] .tier-detail ul { padding-left: 0; padding-right: 22px; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .apply-form-wrap{
    padding: 40px 20px;
  }
  .nav-toggle { display: inline-flex; }
  .nav-main {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-main.open { display: flex; }
  .cat-grid, .menu-cards, .tier-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .about-section, .contact-grid, .event-slider .slide { grid-template-columns: 1fr; }
  .event-slider .slide img { height: 320px; }
  .about-text {text-align: center; padding: 60px 30px; }
  .about-text h1 { font-size: 40px; }
  .frame-wrap { padding: 30px; }
  .frame-inner { padding: 40px 24px; }
  .frame-inner h3{
    font-size: 18px;
  }
  .frame-inner p{
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .cat-grid, .menu-cards, .tier-grid { grid-template-columns: 1fr; }
  .brand-logo img { height: 48px; }
  .hero-home { padding-top: 40px; }
  .hero-home .lead-copy { font-size: 15px; padding: 0 16px; }
  .about-text h1 { font-size: 32px; }
  .space-banner h2 { font-size: 28px; }
  .space-banner h3 { font-size: 18px; }
  .contact-info, .contact-form-wrap { padding: 40px 24px; }
}
@media (min-width: 993px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-list {
    display: flex;
    margin-inline-end: 50px;
    margin-bottom: 0;
  }

  .nav-list > .menu-item {
    position: relative;
  }

  html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
    margin-inline-end: 5px;
  }

  html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
    margin-inline-start: 5px;
  }

  .nav-list > .menu-item.home i {
    font-size: 26px;
    color: #630000;
  }

  .nav-list > .menu-item > a {
    display: flex;
    color: #630000;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase !important;

    position: relative;
    padding: 15px 10px;
    transition: all 0.5s ease-in-out;
  }

  .nav-list > .menu-item-has-children > a:after {
    display: inline-block;
    content: "\f0d7";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    color: #630000;
    transition: all .35s ease-in-out;
    margin-inline-start: 6px;
  }

  .nav-list .menu-item:hover > a,
  .nav-list > .menu-item.active > a,
  .nav-list > .menu-item.current-menu-item > a,
  .nav-list > .menu-item.current_page_item > a {
    color: #666636;
  }

  .nav-list > .menu-item:hover > a:after,
  .nav-list > .menu-item.active > a:after,
  .nav-list > .menu-item.current-menu-item > a:after,
  .nav-list > .menu-item.current_page_item > a:after {
    color: #666636;
  }

  .nav-list > .menu-item:hover > a:before,
  .nav-list > .menu-item.active > a:before,
  .nav-list > .menu-item.current-menu-item > a:before,
  .nav-list > .menu-item.current_page_item > a:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-list > .menu-item-has-children:hover > a:after {
    transform: rotateX(-180deg);
    color: #666636;
  }

  html[dir="rtl"].sub-menu {
    left: 0;
  }

  html[dir="ltr"].sub-menu {
    right: 0;
  }

  .sub-menu {
    position: absolute;
    top: 100%;
    z-index: 4;
    min-width: 250px;
    background-color: #ffffff;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0 0;
    transform: scaleY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
    transition: all 0.2s ease-in-out;
  }

  .sub-menu li {
    position: relative;
    padding: 0 20px;
  }

  .sub-menu li:not(:last-of-type) a {
    margin-bottom: 10px;
  }

  .sub-menu li a {
    display: block;
    width: 100%;
    position: relative;
    color: #630000;
    padding-bottom: 10px;
    transition: all 0.5s ease-in-out;
  }

  html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
    left: 0;
    content: "\f324";
  }

  html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
    right: 0;
    content: "\f323";
  }

  .nav-list .sub-menu > li.menu-item-has-children > a:after {
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    color: #630000;
    position: absolute;
    transition: all 0.5s ease-in-out;
  }

  .sub-menu li a:hover {
    color: #666636;
  }

  .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
    color: #666636;
  }

  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: scaleY(1);
  }

  html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
    right: 100%;
  }

  html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
    left: 100%;
  }

  .sub-menu .menu-item-has-children .sub-menu {
    top: 0 !important;
  }

  html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
    right: 100%;
  }

  html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
    left: 100%;
  }

  html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
    content: "\f104";
  }

  html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
    content: "\f105";
  }

  .nav-list > .menu-item-has-children > .sub-menu a:before {
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    display: inline-block;
    margin-inline-end: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: #630000;
    color: #ffffff;
    font-size: 14px;
    transition: all .35s ease-in-out;
  }

  .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
    background: #666636;
    color: #ffffff;
  }

  .lang-switch a {
    color: #630000;
  }

  .lang-switch a:hover {
    color: #666636;
  }

  .nav-btn,
  .mobile-nav-list,
  .dd-trigger {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-nav-list #menu-primary-menu {
    padding: 0 !important;
  }
  .menu-item-has-children {
    display: flex;
    width: 100%;
    align-items: center;
  }

  .nav-list {
    display: none;
  }

  .dd-trigger {
    display: block;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .head-logo {
    display: flex;
    align-items: center;
  }

  .menu-icons a:not(:last-of-type) {
    margin-inline-end: 10px;
  }

  .nav-list > li.menu-item-has-children > a:after {
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    color: #630000;
    position: absolute;
    transition: all 0.5s ease-in-out;
  }

  .nav-btn {
    width: 40px;
    height: 30px;
    border-radius: 10px;
    color: #ffffff;
    background-color: #630000;
    margin-inline-end: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
  }

  .nav-btn:hover {
    background-color: #666636;
    color: #ffffff;
  }

  html[dir="rtl"] .nav-btn {
    margin-inline-start: 10px;
  }

  html[dir="ltr"] .nav-btn {
    margin-inline-start: 10px;
  }

  html[dir="ltr"] .mobile-nav-list {
    left: 0;
    transform: translateX(-100%);
  }

  html[dir="rtl"] .mobile-nav-list {
    transform: translateX(100%);
    right: 0;
  }

  .mobile-nav-list {
    width: 300px;
    height: 100%;
    padding: 15px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 99;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    overflow-y: scroll;
    transition: all .5s linear;
  }

  .mobile-nav-list .menu-item {
    position: relative;
    border-bottom: 1px solid #630000;
  }

  .mobile-nav-list .menu-item > a {
    display: block;
    color: #630000;
    padding: 15px;
    transition: all .3s linear;
  }

  .mobile-nav-list .menu-item.menu-item-has-children > a {
    width: calc(100% - 34px);
    display: inline-block;
  }

  .mobile-nav-list .menu-item > a:hover,
  .mobile-nav-list .menu-item.active > a,
  .mobile-nav-list .menu-item.current-menu-item > a,
  .mobile-nav-list .menu-item.current_page_item > a {
    color: #666636;
  }

  html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
    border-left: 1px solid #630000;
  }

  html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
    border-right: 1px solid #630000;
  }

  .mobile-nav-list .menu-item.menu-item-has-children i {
    color: #630000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform-origin: center;
    transition: all .3s linear;
  }

  .mobile-nav-list .menu-item i.open {
    color: #666636;
  }

  .sub-menu {
    list-style: none;
    background-color: #630000;
  }

  .mobile-nav-list .sub-menu a {
    display: block;
    padding: 15px 25px;
    color: #ffffff;
    transition: all .3s linear;
  }

  .mobile-nav-list .sub-menu a:hover {
    color: #e9dfc8;
    background-color: #666636;
  }

  .head-touch-mob a {
    background: #630000;
    color: #ffffff;
    transition: all .3s ease;
  }

  .head-touch-mob a:hover {
    background: #666636;
    color: #ffffff;
  }

  .trans-none {
    transform: none !important;
  }

  html[dir="ltr"] .nav-overlay {
    right: 0;
    transform: translateX(100%);
  }

  html[dir="rtl"] .nav-overlay {
    left: 0;
    transform: translateX(-100%);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    transition: all .35s ease-in-out;
  }
  .nav-btn {
    cursor: pointer;
    position: relative;
    z-index: 10000;
  }

  .mobile-nav-list {
    z-index: 9999;
  }

  .nav-overlay {
    z-index: 9998;
  }

  .trans-none {
    transform: none !important;
  }

}