* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  list-style: none;
}

.header {
  position: fixed;
  top: 0;
  background: #ffffff;
  width: 100%;
  z-index: 99;
  padding: 1.2rem 0;
}
.header.transparent {
  background-color: transparent !important;
  transition: background-color 0.3s ease;
}
.hide-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.header-btn {
  background: #5b6f7b;
  padding: 13px 35px 17px 35px;
  border-radius: 80px;
  font-family: "HurmeGeometricSans1", sans-serif;
}
.header-btn a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "HurmeGeometricSans2", sans-serif;
}
.subHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menuImg {
  width: 2.5em;
}
#fullMenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url(./assets/menuBackground.webp) #5b6f7b;
  transform: scaleY(0.1);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s ease-out;
  z-index: 8;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

#fullMenu.openMenu {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* Full screen menu overlay */
.menuOverlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #39535c; 
  transition: top 0.6s ease-in-out;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuOverlay.openMenu {
  top: 0;
}

/* Example layout for content */
.menuContent {
    width: 95%;
    height: 70vh;
    display: grid;
    grid-template-columns: 40% 53%;
    justify-content: space-between;
}

.menuImages{
  height: inherit;  
}

.menuImage {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}
.menuLinks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
  font-size: 1.8rem;
  justify-content: center;
  width: fit-content;
}
#fullMenu.openMenu .menuLinks {
  opacity: 1;
  transform: translateY(0);
}

.menuLinks a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
  cursor: pointer;
  font-family: "HurmeGeometricSans1", sans-serif;
    font-weight: 300;
    font-size: 46px;
    line-height: 51px;
    letter-spacing: 0px;
    vertical-align: middle;
}

.menuLinks a:hover {
  color: #fff;
}

.menuLinks a {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Trigger fade-in on menu open, staggered */
#fullMenu.openMenu .menuLinks a:nth-child(1) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
#fullMenu.openMenu .menuLinks a:nth-child(2) {
  transition-delay: 0.45s;
  opacity: 1;
  transform: translateY(0);
}
#fullMenu.openMenu .menuLinks a:nth-child(3) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}
#fullMenu.openMenu .menuLinks a:nth-child(4) {
  transition-delay: 0.75s;
  opacity: 1;
  transform: translateY(0);
}
#fullMenu.openMenu .menuLinks a:nth-child(5) {
  transition-delay: 0.9s;
  opacity: 1;
  transform: translateY(0);
}

/* Close Button */
.closeMenu {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}
/*------------*/
iframe {
  width: 85vw;
  height: 100vh;
  scale: 0.55;
  border: none;
  position: absolute;
  top: 0;
  left: 30%;
}
.menuLogoBanner {
  /*position: absolute;*/
  /*z-index: -1;*/
  /*width: 50vw;*/
  /*left: -10%;*/
  /*top: 2%;*/
  /*opacity: 0.3;*/
  /*scale: 1.15;*/
  /*position: absolute;*/
  /*z-index: -1;*/
  /*width: 50vw;*/
  /*left: -11%;*/
  /*top: 2rem;*/
  /*opacity: 0.3;*/
  position: absolute;
  z-index: -1;
  width: auto;
  left: -11%;
  height: 95vh;
  top: 2rem;
  opacity: 0.3;
}
.caLinks {
  display: grid;
  grid-template-columns: 40% 1fr;
  width: 90%;
  height: 100vh;
  align-items: center;
  margin: auto;
}
.caLinksUL {
  display: grid;
  gap: 4rem;
  /* justify-content: end; */
}
.caLinksUL li {
  font-size: 27px;
  font-weight: 400;
  line-height: normal;
  white-space: normal;
  list-style-type: none;
  color: #554c47;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: serif;
}
.caLinksUL li:hover {
  color: #3b3431;
  font-weight: 500;
}

/* main screen scal transformation end */
.bannerTitle {
  color: #554c47;
  font-size: 36px;
  font-weight: 400;
  font-family: serif;
}
.csLogoCont {
  height: 30px;
  cursor: pointer;
}
.menuIcon {
  /*margin-bottom: -9px;*/
  display: flex;
  align-items: center;
  gap: 10px;
}
.menuIcon span {
  color: #5b6f7b;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.csLogo {
  height: 100%;
}
.csLogoFilter {
  filter: brightness(5);
}

/*.container {*/
/*  width: 90%;*/
/*  margin: 0 auto;*/
/*}*/
[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}
.heroBanner {
  /*background: url(./assets/images/Architecture_Banner_image.jpg);*/
  /*background: url(./assets/images/hero-banner.png); c6-night.jpg */
  background: url(./assets/images/nigh-sight.jpg);
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.menu-global-img img {
  width: 80%;
}
.mobile-header{
    display:none;
}
.pelican-logo{
    margin-left:30px;
}
@media (max-width: 768px) {
  .header-btn {
    display: none;
  }
  .menuImages{
      display:none;
  }
  .menuContent{
    grid-template-columns: 1fr; 
  }
  .menuLinks{
      width: 100%;
    align-items: center;
  }
  .menuLinks a {
    font-size: 40px;
    line-height: 36px;
}
.subHeader {
    flex-direction: row-reverse;
}
.pelican-logo {
    margin-left: 0px;
}
span.menuText {
    display: none;
}
.containerSecondary {
    width: 90%;
    margin: 0 auto;
}
.menuImg {
    width: 2.5em;
}
.csLogo {
    height: 88%;
}
}
