/* Main Header Style */
.rubyshore-popup-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #091B39;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 75px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: top 0.3s ease-in-out;
}

.rubyshore-popup-header.show {
  top: 0px;
}

/* Container for header content */
.rubyshore-popup-header .site-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

/* Center the logo and navigation */
.rubyshore-popup-header .site-header-main-section-left,
.rubyshore-popup-header .site-header-main-section-right {
  display: flex;
  align-items: center;
}

/* Logo Section */
.rubyshore-popup-header .site-branding {
  flex-shrink: 0;
}

.rubyshore-popup-header .site-branding img {
  max-height: 60px;
  width: auto;
}

/* Navigation and Button Section */
.rubyshore-header-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.rubyshore-popup-header nav.main-navigation ul,
.rubyshore-popup-header nav.secondary-navigation ul {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.rubyshore-popup-header nav.main-navigation ul li,
.rubyshore-popup-header nav.secondary-navigation ul li {
  list-style: none;
}

.rubyshore-popup-header nav.main-navigation ul li a,
.rubyshore-popup-header nav.secondary-navigation ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 6px 12px;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.rubyshore-popup-header nav.main-navigation ul li a:hover,
.rubyshore-popup-header nav.secondary-navigation ul li a:hover {
  background-color: #ff9900;
  border-radius: 4px;
}

/* Get Started Button */
.rubyshore-popup-header .get-started-btn {
  background-color: #ff9900;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.rubyshore-popup-header .get-started-btn:hover {
  background-color: #cc7a00;
}

/* Spacing Between Elements */
.rubyshore-popup-header .site-header-main-section-left,
.rubyshore-popup-header .site-header-main-section-right,
.rubyshore-popup-header .get-started-btn {
  margin: 0 10px;
}

/* Adjust what size screens the header will appear on */
@media (max-width: 1230px) {
  .rubyshore-popup-header {
    display: none;
  }
}
