/*.fresh-background {
  background-color: #000000;
}
*/
#geeks-nav .nav-upper .nav-logo {
  display: none;
}

/* 1. Base Styles: Applies required display, smooth transition, and pointer */
.stamp-menu .title,
.nav-hamburger-btn {
    display: inline-block;  
    transition: transform 0.2s ease-in-out;
    cursor: pointer; /* Ensures the hand icon shows for both */
}

/* 2. Combined Hover State: When the PARENT (.stamp-menu) is hovered,
      scale BOTH the title and the button inside it. */
.stamp-menu:hover .title,
.stamp-menu:hover .nav-hamburger-btn {
    transform: scale(1.05);
}

/* =========   Stamp   ========== */
.stamp {
  z-index: 1000;
  position: fixed;
  top: 5px;
  right: 50px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.5s;
  width: auto;
  height: auto;
  border: 3px solid black;
  background: white;
  padding: 1px;
}

.stamp-menu {
    padding: 0px 4px 5px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    gap: 6px;
    height: 42px;
}

.stamp-menu > div {
  font-family: 'futura std';
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

.nav-hamburger .stamp-inner {
}

.nav-hamburger .stamp.scroll-active .cartoon {
}
.nav-hamburger .stamp .cartoon-box {
  position: relative;
}

.nav-hamburger .stamp .cartoon {
  position: relative;
  height: 140px;
  overflow: hidden;
  transition: 0.5s;
}

.nav-hamburger .stamp .cloud-cartoon img {
  position: absolute;
  left: calc(-100% + -75px);
  z-index: 10;
    top: 11px;
    width: 230px;
  z-index: 10;
  transition: 0.5s all;
  transform: scale(0);
  transform-origin: right top;
  max-width: unset !important;
}

.nav-hamburger .stamp:hover .cloud-cartoon img {
  transform: scale(1);
}

.nav-hamburger .stamp.scroll-active .cartoon {
  height: 0px;
}
.nav-hamburger .stamp.scroll-active:hover .cartoon {
  height: 140px;
}
.nav-hamburger .stamp .cartoon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
}
.nav-hamburger .stamp .contact {
    font-family: 'futura std';
    font-weight: bold;
    font-size: 26px;
    background-color: #ba3927;
    color: white;
    text-align: center;
    padding: 3px 0;
    height: 40px;
}
.nav-hamburger .stamp .contact a {
    display: inline-block; 
    transition: transform 0.2s ease-in-out;
    color: inherit; 
    text-decoration: none;
}
.nav-hamburger .stamp .contact a:hover {
    transform: scale(1.1); /* Scales the text by 10% */
}