@font-face {
    font-family: 'Futura Extra Black';
    src: url('/FuturaExtraBlackCondensedItalicBT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Std';
    src: url('/FuturaStdBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    position: relative;
}

main{
    height:80vh;
    padding:0;
    margin:0;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease;
    z-index: 1;
    background-image: url('/default.jpg');
    will-change: background-image;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0;
    padding: 4rem;
    overflow-y: auto;
    display: flex;
    align-items: center;
}

.bio {
    background: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    max-width: 500px;
    margin-left: 0;
}

.highlight {
    color: #66b3ff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.highlight:hover {
    color: #99ccff;
    background: rgba(102, 179, 255, 0.1);
    border-radius: 3px;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #66b3ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
}

p {
    max-width: 65ch;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

h1 {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
    }
    
    .bio {
        max-width: 100%;
    }
}

/* Apply fonts to specific elements */
.bio h1 {
    font-size:2.2rem;
    font-family: 'Futura Extra Black', sans-serif;
    margin: 0;
    letter-spacing: 0.02rem;
}

.default-text {
    font-family: 'Futura Std', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cv-button-container {
    margin-top: 2rem;
    text-align: left;
}

.cv-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cv-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
}

.cv-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cv-button:hover:before {
    width: 300px;
    height: 300px;
}

.cv-button:active {
    transform: translateY(0);
}