.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-weight:300;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-primary-line-height:1.1px;--e-global-typography-primary-letter-spacing:10px;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Cormorant Garamond";--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.55px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.e-con{--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:24px;}.elementor-element{--widgets-spacing:24px 24px;--widgets-spacing-row:24px;--widgets-spacing-column:24px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;gap:0px;}.site-header .header-inner{width:0px;max-width:100%;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Wrapper = header + slide1 = full 100vh */
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;        /* full viewport */
  height: 100dvh;       /* modern mobile-safe */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Header gets natural height */
.wrapper > header {
  flex: 0 0 auto;       /* shrink to its own height */
}

/* Slide1 stretches to fill remaining space */
.wrapper > .slide1 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;  /* text + image side by side */
  min-height: 0;        /* fix flex overflow */
  overflow: hidden;
}

/* Left = text */
.slide1 .text {
  flex: 1 1 40%;        /* adjust % as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  box-sizing: border-box;
}

/* Right = image */
.slide1 .image {
  flex: 1 1 60%;        /* adjust % as needed */
  position: relative;
  overflow: hidden;
}

.slide1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* makes image fill & crop */
}


/* Make the header the positioning context */
.site-header{ position: relative; }

/* Pin only the hamburger to the top-left without affecting layout */
.site-header .elementor-nav-menu--dropdown .elementor-menu-toggle{
  position: absolute;
  top: 10px;   /* tweak spacing */
  left: 10px;  /* tweak spacing */
  z-index: 1000;
  margin: 0 !important;
}

/* Keep the logo block centered */
.site-header .elementor-container,
.site-header .e-con {
  justify-content: center;   /* your logo/title stays centered */
}

/* Prevent the nav widget from reserving space */
.site-header .elementor-nav-menu--dropdown{
  width: auto;               /* don't stretch across header */
}/* End custom CSS */