/*menu styling*/
.menu{
    position: fixed;
    top: 0;
    left: 0;
    height: 750px;
    padding-left: 10px;
    padding-top: 45px;
    width: 310px;
    margin: 10px;

    background-image: url("../assets/menu-paper.png");
    background-attachment:fixed;
    background-position: top left;
    background-size: 330px 750px;
    background-repeat: no-repeat;
}

.menu p{
    font-family: "Eb Garamond", serif;;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;
    font-size: 100%;
}

.menu h2{
    font-family: "Eb Garamond", serif;;
    line-height: 150%;
    margin-top: 5%;
    margin-bottom: 5%;

}

.menu h3{
    font-family: "Eb Garamond", serif;;
    line-height: 150%;
    margin-top: 5%;
    margin-bottom: 5%;

}

.menu h4{
    font-family: "Eb Garamond", serif;;
    font-weight: 400;
    line-height: 150%;
}

.menu a:hover {
    color: dimgray;
}

.menu a {color: black;
    text-decoration: none;
}

.signature {
    position: absolute;
    left: 40px;
    width: 260px;
    transition: transform 0.8s cubic-bezier(1,0,.34,1);
    transform-origin: center; /* stretch from center */
}

/* Hover effect */
.signature:hover {
    transform: scaleX(1.15);
}

.menu_options {
    position: absolute;
    top: 115px;
    left: 70px
}

.sub_options {
    margin-top: -5%;
    margin-bottom: -10%;
    margin-left: 4%;}

.menubottom {
    position: absolute;
    top: 565px;
    left: 70px;
    font-size: 85%;

}

.socialicons {
    display: flex;             /* flex layout */
    align-items: center;       /* vertical alignment */
    justify-content: flex-start; /* line them up at start */
    gap: 10px;                  /* small fixed gap, not % */
    margin-bottom: 6%;
}

.socialicons img.sociallogo {
    width: auto;               /* fixed width works better */
    height: 1.25em;              /* optional, keep aspect ratio */
}

.secret-wrapper {
    position: relative;   /* Needed for tooltip positioning */
    display: flex;
    align-items: center;
    justify-content: center; /* optional, centers the image inside wrapper */
}

.secretlogo {
    cursor: pointer;}

.secretpopup {
    position: absolute;
    top: -35px;                  /* adjust vertical distance */
    left: 50%;                   /* start at the horizontal center of wrapper */
    transform: translateX(-50%); /* center tooltip horizontally */
    padding: 0.3em 0.5em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    background: #6e7681;
    color: white;
    font-size: 13px;
    text-align: center;
    border-radius: 3px;
    white-space: nowrap;  /* prevent tooltip text from wrapping */
    z-index: 10;          /* make sure it’s above other elements */
}


.secret::before {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  bottom: -0.2em;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  background: var(
    --background-tooltip
  ); /* Use the same background color as the tooltip */
}

.secret-wrapper:hover .secretpopup {
    opacity: 1;
    pointer-events: auto;
}

.secretlogo{
    margin-bottom: 8%;
}

.insta {
    margin-left: -6%;
}

.menubottom p{
    font-family: "Eb Garamond", serif;}

.footer p {
    margin: 0;
}

.coded {
    color: dimgray;
    font-style: italic;
}

.copyright {
    opacity: 50%;
    color: dimgray;
}

@media only screen and (max-width: 575px) {
    .menu{
        display: none;
        margin: unset;
        padding: unset;}
    
    .socialicons{
        display: none;}

}