/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

body {
    line-height: 1
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

nav ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input, select {
    vertical-align: middle
}

li {
    list-style: none
}


/* =============================================================================
   My CSS
   ========================================================================== */

/* ---- base ---- */


html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font: normal 75% Arial, Helvetica, sans-serif;
}

canvas {
    display: block;
    vertical-align: bottom;
}


/* ---- stats.js ---- */

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}


/* ---- particles.js container ---- */

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    background-image: url('/images/landing-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-head {
    transform: translateY(5rem)
}

#jokebar {
    visibility: hidden;
    min-width: 30vw;
    max-width: 70vw;
    background-color: #ffffff;
    color: black;
    text-align: center;
    border-radius: 2px;
    border-color: black;
    padding: 16px;
    position: fixed;
    z-index: 999999;
    bottom: 5vh;
    left: 5vh;
    font-size: 17px;
}

#jokebar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* Basic styling for circular social icons */
.social-icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    border-radius: 50%; /* Makes it a circle */
    background-color: #f0f0f0; /* Light background for the circle */
    color: #333; /* Icon color */
    font-size: 1.2rem; /* Icon size */
    border: 1.5px solid #000000;
    text-decoration: none; /* Remove underline from link */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.social-icon-circle:hover {
    text-decoration: none; /* Remove underline from link */
    transform: scale(1.2);
    background-color: #7300ff; /* Example hover background */
    color: #fff; /* Example hover icon color */
}

/* Optional: If you want to use Font Awesome, ensure you link it in your <head> */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> */


.hero-name {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    animation: heroNameFloatIn 0.9s ease-out forwards;
}

.hero-bio {
    opacity: 0;
    animation: heroBioFadeIn 1.1s ease-out 0.1s forwards;
}

@keyframes heroNameFloatIn {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    60% {
        opacity: 1;
        transform: translateY(0px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes heroBioFadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .hero-name {
        font-size: 2.3rem;
    }

    .hero-bio {
        font-size: 1rem;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift {
    cursor: pointer;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.cursor-pointer {
    cursor: zoom-in;
}

.modal-backdrop {
    background: rgba(0, 0, 0, 0.95) !important;
}

.modal-backdrop-gallery {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.modal-content-gallery {
    position: relative;
    max-width: 90vw;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 576px) {
    .modal-content-gallery {
        max-width: 95vw;
        padding: 0.75rem;
    }
}