/* Start custom CSS for html, class: .elementor-element-97863c4 *//* ==========================================================
   ESCORTS WORLD - FULL WIDTH HEADER
   ==========================================================

   COLOR PALETTE
   #0A2947
   #F3E4C9
   #D3D4C0
   #8B5E3C

   IMPORTANT:
   Header is forced to full browser width even when
   Elementor/WordPress parent has a limited width.
   ========================================================== */


/* ================= GOOGLE FONTS ================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/* ================= GLOBAL HEADER ================= */

.ew-header {

  --ew-navy: #0A2947;
  --ew-cream: #F3E4C9;
  --ew-sage: #D3D4C0;
  --ew-brown: #8B5E3C;
  --ew-white: #ffffff;

  /* FORCE FULL BROWSER WIDTH */
  width: 100vw !important;
  max-width: 100vw !important;

  /* Break out of Elementor/WordPress container */
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;

  position: relative;
  z-index: 999999;

  background: var(--ew-navy);

  border-bottom: 1px solid rgba(243, 228, 201, .15);

  font-family: 'Manrope', sans-serif;

  box-sizing: border-box;
}


/* ================= BOX SIZING ================= */

.ew-header *,
.ew-header *::before,
.ew-header *::after {
  box-sizing: border-box;
}


/* ================= LINKS ================= */

.ew-header a {
  text-decoration: none !important;
}


/* ==========================================================
   HEADER INNER
   ========================================================== */

.ew-header-inner {

  width: min(1380px, calc(100vw - 60px));

  min-height: 94px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  gap: 30px;
}


/* ==========================================================
   LOGO
   ========================================================== */

.ew-logo {

  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--ew-cream) !important;
}


/* Logo Box */

.ew-logo-mark {

  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--ew-brown);

  color: var(--ew-cream);

  font-family: 'Cormorant Garamond', serif;

  font-size: 25px;

  font-weight: 700;

  letter-spacing: 1px;

  transition: all .3s ease;
}


.ew-logo:hover .ew-logo-mark {

  background: var(--ew-brown);

  color: var(--ew-cream);
}


/* Logo Text */

.ew-logo-text {

  display: flex;

  flex-direction: column;

  line-height: 1;
}


.ew-logo-text strong {

  color: var(--ew-cream);

  font-family: 'Cormorant Garamond', serif;

  font-size: 27px;

  font-weight: 600;

  letter-spacing: .5px;
}


.ew-logo-text small {

  margin-top: 5px;

  color: var(--ew-brown);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 4px;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.ew-nav {

  margin-left: auto;

  display: flex;

  align-items: center;

  gap: 2px;

  height: 94px;
}


.ew-nav > a,
.ew-nav-mega-title {

  position: relative;

  min-height: 94px;

  padding: 0 15px;

  display: flex;

  align-items: center;

  color: rgba(243, 228, 201, .9) !important;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .4px;

  white-space: nowrap;

  cursor: pointer;

  transition: all .3s ease;
}


/* Underline */

.ew-nav > a::after,
.ew-nav-mega-title::after {

  content: "";

  position: absolute;

  left: 15px;
  right: 15px;

  bottom: 23px;

  height: 2px;

  background: var(--ew-brown);

  transform: scaleX(0);

  transform-origin: center;

  transition: transform .3s ease;
}


.ew-nav > a:hover,
.ew-nav-mega:hover .ew-nav-mega-title {

  color: var(--ew-cream) !important;
}


.ew-nav > a:hover::after,
.ew-nav-mega:hover .ew-nav-mega-title::after {

  transform: scaleX(1);
}


/* ==========================================================
   LOCATIONS
   ========================================================== */

.ew-nav-mega {

  position: static;

  height: 94px;

  display: flex;

  align-items: center;
}


.ew-nav-mega-title {

  gap: 9px;
}


/* Arrow */

.ew-nav-mega-title i {

  width: 6px;
  height: 6px;

  display: block;

  border-right: 1px solid var(--ew-cream);

  border-bottom: 1px solid var(--ew-cream);

  transform: rotate(45deg);

  margin-top: -4px;

  transition: transform .3s ease;
}


.ew-nav-mega:hover .ew-nav-mega-title i {

  transform: rotate(225deg);
}


/* ==========================================================
   FULL WIDTH MEGA MENU
   ========================================================== */

.ew-mega-menu {

  position: absolute;

  top: 100%;

  left: 0;

  width: 100vw;

  max-width: 100vw;

  padding:

    42px

    max(30px, calc((100vw - 1380px) / 2))

    48px;

  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 30px;

  background: var(--ew-cream);

  border-top: 3px solid var(--ew-brown);

  box-shadow:
    0 25px 60px rgba(10, 41, 71, .25);

  opacity: 0;

  visibility: hidden;

  transform: translateY(12px);

  transition:

    opacity .25s ease,

    visibility .25s ease,

    transform .25s ease;
}


/* Show Mega Menu */

.ew-nav-mega:hover .ew-mega-menu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}


/* ==========================================================
   MEGA MENU COLUMNS
   ========================================================== */

.ew-mega-column {

  min-width: 0;

  padding-right: 18px;

  border-right: 1px solid rgba(10, 41, 71, .13);
}


.ew-mega-column:last-child {

  border-right: 0;

  padding-right: 0;
}


/* Heading */

.ew-mega-column h4 {

  margin: 0 0 20px;

  padding-bottom: 13px;

  color: var(--ew-navy);

  font-family: 'Cormorant Garamond', serif;

  font-size: 24px;

  font-weight: 700;

  line-height: 1;

  border-bottom: 2px solid var(--ew-brown);
}


/* City Links */

.ew-mega-column a {

  position: relative;

  display: block;

  padding: 7px 0;

  color: rgba(10, 41, 71, .78) !important;

  font-size: 12px;

  font-weight: 600;

  line-height: 1.4;

  transition: all .25s ease;
}


.ew-mega-column a::before {

  content: "→";

  display: inline-block;

  margin-right: 7px;

  color: var(--ew-brown);

  opacity: 0;

  transform: translateX(-5px);

  transition: all .25s ease;
}


.ew-mega-column a:hover {

  color: var(--ew-brown) !important;

  padding-left: 3px;
}


.ew-mega-column a:hover::before {

  opacity: 1;

  transform: translateX(0);
}


/* ==========================================================
   CONTACT
   ========================================================== */

.ew-header-contact {

  flex-shrink: 0;

  min-width: 175px;

  padding-left: 25px;

  border-left: 1px solid rgba(243, 228, 201, .18);

  display: flex;

  flex-direction: column;

  gap: 4px;
}


.ew-header-contact span {

  color: var(--ew-brown);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;
}


.ew-header-contact a {

  color: var(--ew-cream) !important;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;

  transition: color .3s ease;
}


.ew-header-contact a:hover {

  color: var(--ew-brown) !important;
}


/* ==========================================================
   MOBILE BUTTON
   ========================================================== */

.ew-menu-toggle {

  display: none;

  width: 46px;
  height: 46px;

  margin-left: auto;

  padding: 9px;

  background: transparent;

  border: 1px solid rgba(243, 228, 201, .25);

  cursor: pointer;
}


.ew-menu-toggle span {

  display: block;

  width: 100%;

  height: 2px;

  margin: 5px 0;

  background: var(--ew-cream);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1250px) {

  .ew-header-inner {

    width: calc(100vw - 40px);

    gap: 15px;
  }


  .ew-nav > a,
  .ew-nav-mega-title {

    padding-left: 9px;

    padding-right: 9px;

    font-size: 11px;
  }


  .ew-nav > a::after,
  .ew-nav-mega-title::after {

    left: 9px;

    right: 9px;
  }


  .ew-header-contact {

    min-width: 150px;

    padding-left: 15px;
  }

}


/* ==========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================== */

@media (max-width: 1050px) {

  .ew-header-inner {

    min-height: 82px;
  }


  .ew-menu-toggle {

    display: block;
  }


  .ew-header-contact {

    display: none;
  }


  .ew-nav {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100vw;

    height: auto;

    display: none;

    flex-direction: column;

    align-items: stretch;

    padding: 15px 20px 25px;

    background: var(--ew-navy);

    border-top: 1px solid rgba(243, 228, 201, .15);

    box-shadow:
      0 20px 45px rgba(10, 41, 71, .25);
  }


  .ew-nav:hover {

    display: flex;
  }


  .ew-menu-toggle:hover + .ew-nav {

    display: flex;
  }


  .ew-nav > a,
  .ew-nav-mega-title {

    width: 100%;

    min-height: 54px;

    justify-content: space-between;

    padding: 0 10px;

    border-bottom:
      1px solid rgba(243, 228, 201, .10);
  }


  .ew-nav > a::after,
  .ew-nav-mega-title::after {

    display: none;
  }


  .ew-nav-mega {

    height: auto;

    width: 100%;

    display: block;

    position: relative;
  }


  /* Mega menu becomes normal mobile dropdown */

  .ew-mega-menu {

    position: relative;

    top: auto;

    left: auto;

    width: 100%;

    max-width: 100%;

    padding: 25px 15px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    background: var(--ew-cream);

    border-top: 0;

    box-shadow: none;

    opacity: 1;

    visibility: visible;

    transform: none;
  }


  .ew-nav-mega:hover .ew-mega-menu {

    transform: none;
  }


  .ew-mega-column {

    padding-right: 0;

    border-right: 0;
  }


  .ew-mega-column h4 {

    font-size: 21px;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

  .ew-header-inner {

    width: calc(100vw - 24px);

    min-height: 76px;
  }


  .ew-logo-mark {

    width: 44px;

    height: 44px;

    font-size: 21px;
  }


  .ew-logo-text strong {

    font-size: 23px;
  }


  .ew-logo-text small {

    font-size: 7px;

    letter-spacing: 3px;
  }


  .ew-mega-menu {

    grid-template-columns: 1fr;

    max-height: 60vh;

    overflow-y: auto;

    padding: 20px 15px;
  }


  .ew-mega-column {

    padding-bottom: 15px;
  }


  .ew-mega-column h4 {

    font-size: 23px;
  }


  .ew-mega-column a {

    font-size: 13px;

    padding: 8px 0;
  }

}


/* ==========================================================
   EXTRA WORDPRESS / ELEMENTOR OVERRIDES
   ========================================================== */

/*
   These rules specifically prevent the Elementor parent
   from restricting the header width.
*/

.elementor .ew-header {

  width: 100vw !important;

  max-width: 100vw !important;

  margin-left: calc(50% - 50vw) !important;

}


.elementor-widget-html:has(.ew-header),
.elementor-widget-shortcode:has(.ew-header) {

  width: 100% !important;

  max-width: 100% !important;
}


/* Prevent horizontal scrollbar caused by 100vw */

html,
body {

  overflow-x: hidden;
}/* End custom CSS */