.elementor-18 .elementor-element.elementor-element-046662a{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-dccdb9f *//* Starway Events Header Styles */
.starway-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 160, 96, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.starway-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  min-height: 100px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 320px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-image {
  height: 70px;
  width: auto;
  max-width: 300px;
  max-height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(200, 160, 96, 0.2));
}

.logo-image:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(200, 160, 96, 0.3));
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C8A060, #E6C896);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #C8A060;
}

.nav-menu a:hover::before {
  width: 100%;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info .phone {
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

.cta-button {
  background: linear-gradient(135deg, #C8A060, #E6C896);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 160, 96, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 160, 96, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 350px;
  height: 100%;
  background: white;
  padding: 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.close-mobile-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 50px 0 30px 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #C8A060;
}

.mobile-contact {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}

.mobile-contact span {
  display: block;
  margin-bottom: 15px;
  color: #666;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .contact-info {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 85px;
    min-height: 85px;
  }
  
  .logo-section {
    max-width: 240px;
  }
  
  .logo-image {
    height: 55px;
    max-height: 55px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 80px;
    min-height: 80px;
  }
  
  .logo-section {
    max-width: 200px;
  }
  
  .logo-image {
    height: 50px;
    max-height: 50px;
    max-width: 180px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}/* End custom CSS */