@font-face {
    font-family: 'Causten-Bold';
    src: url('assets/fonts/Causten-Bold.otf') format('otf'),
         url('assets/fonts/Causten-Bold.ttf') format('truetype'),
         url('assets/fonts/Causten-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Causten-SemiBold';
    src: url('assets/fonts/Causten-SemiBold.otf') format('otf'),
        url('assets/fonts/Causten-SemiBold.ttf') format('truetype'),
        url('assets/fonts/Causten-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Causten-Medium';
    src: url('assets/fonts/Causten-Medium.otf') format('otf'),
         url('assets/fonts/Causten-Medium.ttf') format('truetype'),
         url('assets/fonts/Causten-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Causten-Light';
    src: url('assets/fonts/Causten-Light.otf') format('otf'),
         url('assets/fonts/Causten-Light.ttf') format('truetype'),
         url('assets/fonts/Causten-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.cdnfonts.com/css/chicagoflf');
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

body {
    background: #F7EDE2;
}

/* For Webkit (Safari and Chrome) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e1d8ce; 
}

::-webkit-scrollbar-thumb {
    background: #979797;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6c584c; 
}



h1 {
    color: black;
    font-size: 6em;
    font-family: 'Causten-Bold';
}

h3, h4, h5 {
    font-family: 'Syne Mono', monospace;
    font-weight: bolder;
    color: rgb(95, 95, 95);
}

.bios {
    font-family: 'Syne Mono', monospace;
    color: rgb(95, 95, 95);
}

.date {
    color: rgb(123, 123, 123);
    text-align:right;
}

section {
    height: 100vh;
    
}
.header-section {
    position: relative;
}

.about {
    font-family: 'Syne Mono', monospace;
    font-size: 1.5rem;
    color: rgb(95, 95, 95);
    text-align: center;
    padding-top: 30px;
    font-weight: 300px;
    width: 85%;
}

.desc {
    font-family: 'Syne Mono', monospace;
    font-size: 1.2rem;
    color: rgb(95, 95, 95);
    text-align:left;
    transform: translate(23%, 0);
    width: 70%;
}

.card-body {
    font-family: 'Syne Mono', monospace;
    font-size: 0.8rem;
    color: rgb(95, 95, 95);
    padding: 0rem 1rem;
    padding-bottom: 1rem;
}
.card-title {
    font-size: 1rem;
    color: rgb(95, 95, 95);
    font-weight: bold;
}
.card-text {
    color: rgb(95, 95, 95);
}

.interaction {
  cursor: cell;
  
}

.closing {
    font-family: 'Causten-Light';
    font-size: 1.5rem;
    color: rgb(95, 95, 95);
    text-align: left;
}

.full-width-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

::selection {
    background: #ffb7b7; /* WebKit/Blink Browsers */
    color: black;
}
::-moz-selection {
    background: #ffb7b7; /* Gecko Browsers */
    color:black;
}

footer {
    position: fixed;
    bottom: 10px;
    right: 50%;
    transform: translate(50%, 0);
    z-index: 100;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: url('images/wood.jpeg') no-repeat;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border: 1px solid #bab1a7;
}
footer .dock {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
footer .dock-item {
    position: relative;
    height: 48px;
    width: 48px;
    border: none;
    background: #f7ede2;
    border-radius: 12px;
    transition: all 0.25s;
    filter: drop-shadow(0px 1px 1px #2a2a2a99);

}
footer .dock-item--active:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #6c584c;
    border-radius: 16px;
}
footer .dock-item .title {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 0.7rem;
    color: rgb(255, 255, 255);
    background: #2222226a;
    font-family: 'Syne Mono', monospace;
}
footer .dock-item svg {
    width: 24px;
    height: 24px;
    color: #6c584c;
    stroke: currentColor;
    fill: currentColor;
    transition: all 0.25s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    margin: auto;
    justify-content: center;
}
footer .dock-item:hover, footer .dock-item:focus {
    z-index: 999;
    transform: scale(1.3);
    margin: 0 10px;
}
footer .dock-item:hover .title, footer .dock-item:focus .title {
    display: block;
}
footer .dock-item:hover svg, footer .dock-item:focus svg {
    width: 34px;
    height: 34px;
}
footer .dock .seperator {
    width: 1px;
    height: 24px;
    background: #4c4c4c;
    margin: 0px -4px;
}

.btn {
    padding: 0.175rem 0.75rem;
}

.btn-primary {
    background-color:black;
    border:black
}


.card-body {
    color:white;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: rgb(255, 255, 255);
    background: #22222249;
    font-family: 'Causten-SemiBold';
    text-shadow: 1px 1px #000000;
    text-align:center;
    font-size: 1.2rem;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  
  .video-wrapper {
    overflow: hidden;
    border-radius: 10px; /* or any desired border radius value */
  }
  .video-wrapper video {
    width: 100%;
    height: auto;
  }

  .image-container {
    position: relative;
    display: inline-block;
  }
  
  .iframe-overlay {
    position: absolute;
    top: 130px;
    left: 95px;
    width: 515px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
  }

  .iframe-overlay .iframe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .iframe-overlay iframe {
    width: 100%;
    height: 100%;
  }
  