
/* Basic Menu Styling */
.menu-item {
  position: relative;
  list-style: none;
}

.menu-item > a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 500;
}


/* Show Sub-Menu on Hover */
.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Optional Arrow Indicator */
.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.7em;
}


/* Custom styles for Goarch header */

/* Breakpoint matches Bootstrap 5 navbar-expand-lg (< 992px) — covers both tablet and mobile */
@media (max-width: 991.98px) {

header.header1 {
    height: unset !important;
    overflow: visible !important;
}

header.header1 {
    background-color: var(--mobile-header-bg) !important;
    color: var(--mobile-header-icon-color);
}

header.header1 .navbar-collapse {
    background-color: var(--mobile-header-bg) !important;
    padding-bottom: 10px;
}

header.header1 .navbar-collapse.collapsing {
    overflow: hidden;
    transition: height 0.3s ease !important;
}

header.header1 #navbarNav .menu-item a {
    background-color: var(--mobile-menu-tabs-bg);
    color: var(--mobile-menu-link-color);
    border-top: var(--mobile-menu-border-top) var(--mobile-menu-border-style) var(--mobile-menu-border-color);
    border-right: var(--mobile-menu-border-right) var(--mobile-menu-border-style) var(--mobile-menu-border-color);
    border-bottom: var(--mobile-menu-border-bottom) var(--mobile-menu-border-style) var(--mobile-menu-border-color);
    border-left: var(--mobile-menu-border-left) var(--mobile-menu-border-style) var(--mobile-menu-border-color);
}

}



/* Header background */
header.header1 {
    background-color: #0a0a8f;
    padding: 15px 0;
}

/* Logo styling */
.logo {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0px !important;
}

.logo-size{
width: 90px;
}

.logo-g {
    font-size: 2.2rem;
}

.logo-o {
    font-size: 2.2rem;
    margin-left: -3px;
}

.logo-arch {
    font-size: 1.6rem;
}

/* Navigation menu */
.navbar-nav .nav-link {
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

#navbarNav .menu-item a {
     color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

#navbarNav .menu-item a:hover {
     color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Social media icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.google-plus {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    header.header1 .navbar-collapse {
        margin-top: 0.5rem;
    }

    header.header1 .navbar-nav {
        margin-bottom: 0.5rem;
    }

    header.header1 .social-icons {
        margin-top: 0.5rem;
    }

    header.header1 .navbar-collapse .social-icons-mobile {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    header.header1 .navbar-collapse .social-icons-mobile a {
        color: white;
        margin: 0 10px;
        font-size: 1.2rem;
    }
}