@font-face{
    font-family: 'StrikeFighter';
    src: url('fonts/strikefighter/strikefighter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    background: black
}

body {
    display: flex;
    margin: 16px;
    height:780px;
    align-items: center;
    justify-content: center;
    -webkit-perspective: 1000;
}

@media (max-width: 1024px) {
    body {
        margin: 10px;
        height: 780px;
    }
}

@media (max-width: 640px) {
    body {
        margin: 5px;
        height: 780px;
    }
}

#welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name-subtitle {
    text-align: right;
    justify-content: center;
    color: white;
}

/* NOT NEEDED RIGHT NOW
h1 {
    text-align: start;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

/* PAGE HEADER INFORMATION */

.page-header {
    width: 100%;
    max-height: fit-content;
    background: linear-gradient(135deg, #d4c5b0 0%, #c4b5a0 100%);
    border-radius: 20px;
    padding: 20px 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .page-header {
        width: 100%;
        max-height: fit-content;
        background: linear-gradient(135deg, #d4c5b0 0%, #c4b5a0 100%);
        border-radius: 20px;
        padding: 15px 30px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .page-header {
        width: 100%;
        max-height: fit-content;
        background: linear-gradient(135deg, #d4c5b0 0%, #c4b5a0 100%);
        border-radius: 20px;
        padding: 10px 20px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.header-name {
    font-family: 'StrikeFighter', sans-serif ;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.header-name span {
    font-weight: 400;
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    font-family: 'StrikeFighter', sans-serif ;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
}

.header-nav a:hover {
    opacity: 0.6;
    scale: 105%;
}

@media (max-width: 1024px) {
    .header-name {
        font-family: 'StrikeFighter', sans-serif ;
        font-size: 1.2rem;
        font-weight: 900;
        color: #1a1a1a;
        letter-spacing: 1px;
    }

    .header-nav {
        display: flex;
        gap: 16px;
        align-items: center;
        letter-spacing: 1px;
    }

    .header-nav a {
        font-family: 'StrikeFighter', sans-serif ;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        transition: opacity 0.2s ease;
        letter-spacing: 1px;
    }

}

@media (max-width: 640px) {
    .header-name {
        font-family: 'StrikeFighter', sans-serif ;
        font-size: 1.0rem;
        font-weight: 900;
        color: #1a1a1a;
    }

    .header-nav {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .header-nav a {
        font-family: 'StrikeFighter', sans-serif ;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 500;
        text-transform: uppercase;
        transition: opacity 0.2s ease;
    }

}

@media (max-width: 460px) {
    .header-name {
        font-family: 'StrikeFighter', sans-serif ;
        font-size: .8rem;
        font-weight: 900;
        color: #1a1a1a;
    }

    .header-nav {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .header-nav a {
        font-family: 'StrikeFighter', sans-serif ;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.45rem;
        font-weight: 500;
        text-transform: uppercase;
        transition: opacity 0.2s ease;
    }

}

/* END OF PAGE HEADER INFORMATION */

/* BENTO GRID INFORMATION */

.bento-grid {
    position: absolute;
    top: 80px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    grid-auto-rows: 90px;
    width: 100%;
}

@media (max-width: 1024px) {
    .bento-grid {
    top: 66px;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    grid-auto-rows: 70px;
    }
}

@media (max-width: 640px) {
    .bento-grid {
    top: 44px;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    grid-auto-rows: 50px;
    }
}

.bento-card.slideshow-card{
    grid-column: span 5;
    grid-row: span 5;
}

@media (max-width: 460px) {
    .bento-card.slideshow-card {
        grid-column: span 8;
        grid-row: span 5;
    }
}

.bento-card.slideshow-card:hover {
    transform: none;
    border-color: #d4c5b0 0%;
    box-shadow: 0px 0px 20px 1px #c4b5a0;
}

.bento-card.slideshow-card .card-overlay {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

@media (max-width: 1024px) {
    .bento-card.slideshow-card .card-title {
        font-size: 1.2rem; 
    }
}

@media (max-width: 640px) {
        .bento-card.slideshow-card .card-title {
        font-size: 1.0rem; 
    }
}

@media (max-width: 460px) {
        .bento-card.slideshow-card .card-title {
        font-size: 0.8rem; 
    }
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide-image.active {
    opacity: 1;
    z-index: 1;
}

.slideshow-dots {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.arrow {
  cursor: pointer;
  height: 60px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.1s;
  width: 50px;
}

.arrow-top, .arrow-bottom {
  background-color: #666;
  height: 4px;
  left: -5px;
  position: absolute;
  top: 50%;
  width: 100%;
}

.arrow-top:after, .arrow-bottom:after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.15s;
}

.arrow-top {
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.arrow-bottom:after {
  left: 100%;
  right: 0;
  transition-delay: 0.0s;
}

.arrow-top:after {
  left: 0;
  right: 100%;
  transition-delay: 0.15s;
}

.arrow-bottom {
  transform: rotate(-45deg);
  transform-origin: top right;
}


.arrow:hover .arrow-top:after {
  right: 0;
  transition-delay: 0s;
}

.arrow:hover .arrow-bottom:after {
  left: 0;
  transition-delay: 0.15s;
}

.arrow:active {
  transform: translateX(-50%) translateY(-50%) scale(0.9);
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.slideshow-card:hover .slide-prev,
.slideshow-card:hover .slide-next {
    opacity: 1;
}

.slide-prev {
    left: 10px;
}

.slide-next {
    right: 10px;
}

.slide-prev:hover,
.slide-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.bento-card.profile-picture {
    grid-column: span 3;
    grid-row: span 6;
}

.headshot{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

@media (max-width: 460px) {
    .bento-card.profile-picture {
        grid-column: span 5;
        grid-row: span 6;
    }
}

.bento-card.profile-picture:hover {
    transform: translateY(-4px);
    border-color: #d4c5b0 0%;
    box-shadow: 0px 0px 20px 1px #c4b5a0;
}

.bento-card.contact {
    display: flex;
    grid-column: span 3;
    grid-row: span 1;
    justify-content: space-between;
    background: #756d61;
    padding: 20px ;
    cursor: default;
    pointer-events: none;
}

.bento-card.contact * {
    pointer-events: auto;
}

.card-overlay.contact {
    display: flex;
    justify-content: center;
    align-content: center;
    color: white;
    position: relative;
}

.contact-nav{
    display: flex;
    color: white;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    padding: 20px;
    gap: 4px;
}

@media (max-width: 1024px) {
    .card-overlay.contact {
        display: flex;
        justify-content: space-between;
        align-content: center;
        color: white;
    }

    .card-title.contact {
        font-size: 1.2rem;
    }

        .contact-nav {
        display: flex;
        align-content: center;
        justify-content: space-evenly;
    }
}

@media (max-width: 640px) {
    .card-title.contact {
        display: none;
    }

    .contact-nav {
        display: flex;
        color: white;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        padding: 5px;
        gap: 4px;
    }

    .bento-card.contact {
    justify-content: center;
    }
}

@media (max-width: 460px) {
    .card-title.contact {
        display: none;
    }

    .contact-nav {
        scale: 85%;
        display: flex;
        color: white;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }
}

.line-md--instagram {
    animation-delay: 3s;
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='66' d='M16 3c2.76 0 5 2.24 5 5v8c0 2.76 -2.24 5 -5 5h-8c-2.76 0 -5 -2.24 -5 -5v-8c0 -2.76 2.24 -5 5 -5h4Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.0s' dur='1.3s' values='66;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='28' stroke-dashoffset='28' d='M12 8c2.21 0 4 1.79 4 4c0 2.21 -1.79 4 -4 4c-2.21 0 -4 -1.79 -4 -4c0 -2.21 1.79 -4 4 -4'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.7s' dur='0.9s' to='0'/%3E%3C/path%3E%3C/g%3E%3Ccircle cx='17' cy='7' r='1.5' fill='%23000' opacity='0'%3E%3Canimate fill='freeze' attributeName='opacity' begin='3.6s' dur='0.5s' to='1'/%3E%3C/circle%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.line-md--facebook {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cpath stroke-dasharray='24' d='M17 4l-2 0c-2.5 0 -4 1.5 -4 4v12'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.0s' dur='1.5s' values='24;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='10' stroke-dashoffset='10' d='M8 12h7'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.6s' dur='0.6s' to='0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.line-md--linkedin {
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='4' cy='4' r='2' fill='%23000' opacity='0'%3E%3Canimate fill='freeze' attributeName='opacity' begin='1.0s' dur='0.4s' to='1'/%3E%3C/circle%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='4'%3E%3Cg stroke-dasharray='12' stroke-dashoffset='12'%3E%3Cpath d='M4 10v10'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.2s' dur='0.4s' to='0'/%3E%3C/path%3E%3Cpath d='M10 10v10'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.5s' dur='0.4s' to='0'/%3E%3C/path%3E%3C/g%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M10 15c0 -2.76 2.24 -5 5 -5c2.76 0 5 2.24 5 5v5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.9s' dur='0.8s' to='0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.line-md--email {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='66' d='M4 5h16c0.55 0 1 0.45 1 1v12c0 0.55 -0.45 1 -1 1h-16c-0.55 0 -1 -0.45 -1 -1v-12c0 -0.55 0.45 -1 1 -1Z'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.0s' dur='0.9s' values='66;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='24' stroke-dashoffset='24' d='M3 6.5l9 5.5l9 -5.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.6s' dur='0.6s' to='0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.contact-nav a{
    color: white;
}

.contact-nav a:hover{
    opacity: 0.6;
    scale: 105%;
}

.bento-card.contact:hover {
    transform:none;
    border-color: #2a2a2a;
    box-shadow: none;
}

.bento-card {
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2a2a2a;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: linear-gradient(135deg, #d4c5b0 0%, #c4b5a0 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.span-2-rows {
    grid-row: span 2;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.bento-card:hover .card-image {
    transform: scale(1.05);
}


/*.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
}
*/


.card-title {
    font-family: 'StrikeFighter', sans-serif ;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: rgb(180, 180, 180);
    justify-self: center;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #aaa;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.5;
}

/* END OF PAGE HEADER INFORMATION */


.fade-in {
	animation: fade-in 1.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.0s both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
  }

#welcome-Button {
      font-family: 'StrikeFighter', sans-serif ;
    --glow-color: rgb(212, 197, 176);
    --glow-spread-color: rgba(230, 230, 230, 0.500);
    --enhanced-glow-color: rgb(170, 170, 170);
    --btn-color: #756d61;
    border: .25em solid var(--glow-color);
    padding: 1em 3em;
    color: var(--glow-color);
    font-size: 18px;
    font-weight: bold;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
    text-shadow: 0 0 .5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
}
   
#welcome-Button::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
}
   
#welcome-Button:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 2em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
}
   
#welcome-Button:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
           0 0 2.5em 2em var(--glow-spread-color),
           inset 0 0 .5em .25em var(--glow-color);
}

#welcome-Button:hover::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .9;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
} 

.slide-out-fwd-center {
	animation: slide-out-fwd-center 1.0s cubic-bezier(0.6, 0.1, 0.6, 0.9) both;
}

.slide-in-bck-center {
	animation: slide-in-bck-center 1.0s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-out-fwd-center {
    0% {
      transform: translateZ(0);
      opacity: 1;
    }
    100% {
      transform: translateZ(500px);
      opacity: 0;

    }
}

@keyframes slide-in-bck-center {
  0% {
    transform: translateZ(600px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}


/* ----------------------------------------------
 * Generated by Animista on 2026-1-13 22:27:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */









/*Smaller Phone information and formating */



            .bento-card,
            .bento-card.span-2,
            .bento-card.span-2-rows,
            .bento-card.large {
                grid-column: span 1;
                grid-row: span 1;
            }

            .modal-body {
                padding: 24px;
            }

            .modal-title {
                font-size: 1.5rem;
            }

            .modal-image {
                height: 250px;
            }
        }