/* Theme variables */
:root {
  /* Light theme (your current colors) */
  --bg-color: #f0f0f5;
  --text-color: #2b2b2c;
  --nav-color: #2b2b2c;
  --border-color: gray;
  --sup-color: #788a92;
  --title-font-size: 2rem;

    --h3-color: #788a92;
}

*::selection{
    background-color: #788a92;
    color: white;
}

[data-theme="dark"] {
  /* Dark theme */
  --bg-color: #232323;
  --text-color: #ffffff;
  --sup-color: #788a92;
  --nav-color: #ffffff;
  --border-color: #cccccc;
  --strike-color: #7a9ca8;
  --big-head-color: #ffffff;
  --h3-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    font-optical-sizing: auto;
    letter-spacing: 1px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.8;

    /* background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 25px 25px; */
}

.bread {
    text-align: center;
    margin: 15px 0 50px 0;
}

.bread-container {
    position: relative;
    display: inline-block;
    font-size: var(--title-font-size);
    font-weight: bold;
}

.bread-container a, .bread-container a:visited{
    text-decoration: none;
    color: inherit;
}

.bread-container a{
    transition: border-bottom 0.3s ease;
    
}

.bread-container a:hover{
    border-bottom: 3px solid var(--h3-color);
}
.breadcrumbs {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.bread-container span{
    color: var(--big-head-color);
}

.name-plate {
    margin-left: clamp(0%, 25vw, 25%);
    margin-right: clamp(0%, 25vw, 25%);
    box-sizing: border-box;
}
.name-plate a{
    color: var(--text-color);
}






.name-plate ul li{
    list-style-type: square;

}
.name-plate ul li::marker{
    color: var(--border-color);
}










@media (max-width: 600px) {
  .name-plate {
    margin-left: 0%;
    margin-right: 3%;
  }

  
}

.name-plate h2{
  /* border: 3px solid var(--border-color); */
    position: relative;
    /* border-bottom: 3px solid var(--border-color); */
    /* border-bottom: 3px solid var(--border-color); */
  border-left: none; /* Remove the original border */
  padding-left: 20px; /* Add some space where the border was */
  display: inline;
  color: var(--h3-color);
  text-decoration: underline;
  text-decoration-thickness: 3px;

}

/* .name-plate h3:hover::before {
    background: transparent;
    transition: background .5s ease-in-out;
}
.name-plate h3:hover {
    border-bottom: 3px solid var(--border-color);
    transition: border-bottom .5s ease-in-out;
} */

.name-plate h2 a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border-color);
    transform: skewX(-15deg); /* Adjust angle as needed */
    transform-origin: bottom;
}
/* > arrow */
/* .name-plate h3::before{
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
    transform: translateY(-50%) rotate(-45deg);
} */

.name-plate h2 a {
    text-decoration: none;
    color: inherit;
}

.name-plate blockquote{
    border-left:4px solid var(--border-color);
    padding: 0 0 0 16px;
    margin: 25px 0 35px 0;
    font-size: inherit;
}


.name-plate ul, ol{
    padding-left: 0px;
    list-style-position: inside;
    margin: 15px 0 15px 0;
}

.name-plate p{
    margin-left: 0;
    margin-right: 0;
    font-size: inherit;
}



.nav-wrapper{
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    gap: 20px;
    
}

.nav-wrapper a{
    transition: font-weight 0.1s ease;
    transition: transform 0.1s ease-in-out;
    text-decoration: none;
    color: var(--nav-color);
    border-bottom: 3px solid transparent;
    transition: border-bottom .5s ease;

}

.nav-wrapper span {
        border-bottom: 3px solid transparent;

}


.nav-wrapper a:hover{
    border-bottom: 3px solid var(--h3-color);
}

.nav-wrapper a:visited{
    color: var(--nav-color);
}


/* mobile stuff */
@media (max-width: 480px) {
    h1{
      font-size: 10px;
      text-align: left;
      padding: none;
    }

    p{
        font-size: 10px;
        margin: 0 5% 0 5%;
    }
    
    .name-plate{
        font-size: 10px;
        padding-left: 5vw;
        padding-right: 5vw;
        margin: 20px auto;
        max-width: 100%;
    }
    .name-plate blockquote{
        padding: 0 0 0 15px !important;
    }
    .bread-container {
      
        font-size: 1.5rem;
        
    }
    .nav-wrapper a{
        font-size: 13px;
    }

    #myButton::after{
        height: 0.6rem !important;
    }
}
/* Make the button look like your h1 */
.name-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
    
    
    position: relative;
    cursor: pointer;
    --strike-color: var(--strike-color);
    --strike-speed: 2s;
    --strike-scale: 1;
    user-select: none;
    
    color: var(--strike-color);
    transition: color 0.3s ease, transform 0.1s ease;
    /* Remove any default button styling */
    outline: none;
    text-decoration: none;
}



#myButton:hover::after {
    transform: translate(-50%, -50%) scale(1.05);
}

#myButton:hover::after{
    transform: translate(-50%, -50%) scale(1.05);
}



.name-button:focus {
    transform: scale(1.02);
}

.name-button:active {
    transform: scale(0.98);
}

#myButton::after{
    content: "";
    position: absolute;
    top: 53%;
    left: 49%;
    width: 110%;
    height: 12px;
    transform: translate(-50%, -50%);
    background-color: var(--strike-color);
    transition:
      background-color .5s cubic-bezier(0.4, 0, 0.6, 1),
      /* background-color 0.5s ease-in-out, */
      transform .05s linear;
    z-index: -1;
    pointer-events: none;
    border-radius: 1px;
    opacity: 50%;
}

@keyframes Blink {
    0%, 100% {opacity: 1;}
    50% {opacity: 0;}
}
/* The strikethrough effect */
.name-button:hover::after {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Different visual feedback for different button types */
.name-button.theme-toggle:hover {
    color: var(--h3-color);
}


