/**
 * HIDE NAME REVEAL
 * Completely hides the "PARTH PATEL." name reveal element
 * Overrides all other styles - HIGHEST PRIORITY
 */

/* Hide name reveal completely - OVERRIDE EVERYTHING */
.name-reveal,
div.name-reveal,
.name-reveal.name-reveal,
.logo-container .name-reveal,
.navbar .name-reveal,
nav .name-reveal,
#navigation .name-reveal,
body .name-reveal,
html .name-reveal,
* .name-reveal,
div[class*="name-reveal"],
[class*="name-reveal"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    text-indent: -9999px !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transform: scale(0) !important;
    -webkit-transform: scale(0) !important;
}

/* Prevent hover/active states from showing it */
.logo-container:hover .name-reveal,
.logo:hover ~ .name-reveal,
.logo:active ~ .name-reveal,
.logo-container:active .name-reveal,
.logo-container:focus .name-reveal,
.logo:focus ~ .name-reveal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Remove any backdrop/overlay effects */
.logo-container:hover::after,
.logo:hover::after,
.logo:active::after {
    display: none !important;
    content: none !important;
}
