.elementor-63 .elementor-element.elementor-element-3814484{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-63 .elementor-element.elementor-element-c5b3fbe{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;top:0px;z-index:999;}body:not(.rtl) .elementor-63 .elementor-element.elementor-element-c5b3fbe{left:0px;}body.rtl .elementor-63 .elementor-element.elementor-element-c5b3fbe{right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c5b3fbe *//* =================================================
   MANGALASSERY PAVILION – HEADER (FINAL VERSION)
   ================================================= */

/* -------- BRAND COLORS -------- */
:root {
  --mp-green: #0f3b2f;
  --mp-gold:  #c9a24d;
  --mp-ivory: #f7f3ee;
  --mp-white: #ffffff;
}

/* -------- RESET -------- */
body {
  margin: 0;
}

/* -------- HEADER BASE -------- */
.mp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--mp-ivory);
  transition: all 0.4s ease;
}

.mp-header.scrolled {
  background: var(--mp-green);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* -------- INNER CONTAINER -------- */
.mp-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------- LOGO -------- */
.mp-logo img {
  max-height: 88px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.18));
}

.mp-header.scrolled .mp-logo img {
  max-height: 82px;
}

/* -------- NAVIGATION -------- */
.mp-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.mp-nav a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--mp-green);
  transition: 0.3s ease;
}

.mp-header.scrolled .mp-nav a {
  color: var(--mp-white);
}

.mp-nav a:hover {
  opacity: 0.75;
}

.mp-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.mp-nav a:hover::after {
  width: 100%;
}

/* -------- CTA BUTTON -------- */
.mp-cta a {
  border: 1px solid var(--mp-gold);
  color: var(--mp-gold);
  padding: 11px 24px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.mp-cta a:hover {
  background: var(--mp-gold);
  color: #000;
}

.mp-header.scrolled .mp-cta a {
  background: var(--mp-gold);
  color: #000;
}

/* -------- MOBILE TOGGLE -------- */
.mp-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.mp-toggle span {
  width: 24px;
  height: 2px;
  background: var(--mp-green);
  transition: all 0.3s ease;
}

.mp-header.scrolled .mp-toggle span {
  background: var(--mp-white);
}

/* Hamburger Animation */
.mp-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mp-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mp-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -------- MOBILE MENU -------- */
@media (max-width: 991px) {

  .mp-cta {
    display: none;
  }

  .mp-toggle {
    display: flex;
  }

  .mp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--mp-green);
    padding-top: 120px;
    transition: right 0.4s ease;
  }

  .mp-nav.active {
    right: 0;
  }

  .mp-nav ul {
    flex-direction: column;
    gap: 28px;
    padding-left: 40px;
  }

  .mp-nav a {
    color: var(--mp-white);
    font-size: 18px;
  }

  .mp-logo img {
    max-height: 58px;
  }
}/* End custom CSS */