*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* PP Mori Font Family */
@font-face {
    font-family: 'PPMori-Extralight';
    src: url('fonts/PP Mori/PPMori-Extralight.otf') format('opentype');
}

@font-face {
    font-family: 'PPMori-ExtralightItalic';
    src: url('fonts/PP Mori/PPMori-ExtralightItalic.otf') format('opentype');
}

@font-face {
    font-family: 'PPMori-Regular';
    src: url('fonts/PP Mori/PPMori-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'PPMori-RegularItalic';
    src: url('fonts/PP Mori/PPMori-RegularItalic.otf') format('opentype');
}

@font-face {
    font-family: 'PPMori-SemiBold';
    src: url('fonts/PP Mori/PPMori-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'PPMori-SemiBoldItalic';
    src: url('fonts/PP Mori/PPMori-SemiBoldItalic.otf') format('opentype');
}

/* Medio Font */
@font-face {
    font-family: 'Medio';
    src: url('fonts/Medio/medio.otf') format('opentype');
}

/* Intel Font */
@font-face {
    font-family: 'Intel';
    src: url('fonts/Intel/Intel.ttf') format('truetype');
}

@font-face {
    font-family: 'Intel-light';
    src: url('fonts/intel/intelone-display-light.ttf') format('opentype');
}

@font-face {
    font-family: 'Fornire';
    src: url('fonts/Fornire/Fornire-Light.otf') format('opentype');
}





    h1  {
        color: #ffffff;  
        
        text-align: center;
        font-size: 20pt
    
        }
    
    body {
        background-color: #D5C4B5;
        background-size: cover;
        height: 180vh;
        }
    
        
    .navbar {
        width: 100%;
        height: 12vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 3vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: opacity 0.3s ease;
    }
    
    .logo {
        height: 120%;
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 7vh;
        width: auto;
        transition: transform 0.3s ease;
    }
    
    .logo img:hover {
        transform: rotate(90deg) scale(1.2);
    }
    
    .nav-links {
        display: flex;
        align-items: center;
    }
    
    .nav-links ul {
        display: flex;
        list-style: none;
        gap: 3vw;
        margin: 0;
        padding: 0;
    }
    
    .nav-links ul li a {
        text-decoration: none;
        color: #1E2124;
        font-family: 'Intel-light', sans-serif;
        font-size: 1.1vw;
        transition: color 0.3s ease;
    }
    
    .nav-links ul li a:hover {
        color: #226DA9;
    }
/* Title Section Styles */
main {
    max-width: 80vw;
    margin: 0 auto;
    padding: 2vh;
    margin-top: 12vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vh 0;
    width: 100%;
    height: 50vh;
    text-align: center;
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.title-star {
    width: 6vw;
    height: auto;
    margin-top: -2vh;
    position: absolute;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.left-star {
    left: 28%;
    animation-delay: 0s;
}

.right-star {
    right: 27%;
    animation-delay: 1.5s;
}

.title-image {
    max-width: 22vw;
    height: auto;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Content Section Styles */
.content-section {
    margin-left: 12vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1vh;
    padding: 0 12vw;
    gap: 10vh;
}

.content-row {
    display: flex;
    align-items: flex-start;
    gap: 20vw;
    position: relative;
}

.subtitle {
    font-family: 'Fornire';
    color: #1E2124;
    font-size: 2.5vw;
    text-transform: uppercase;
    margin: 0;
    width: 20%;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.content-group {
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    width: 60%;
}

.content-link {
    font-family: 'PPMori-ExtralightItalic', sans-serif;
    color: #1E2124;
    font-size: 1.7vw;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-right: 2vw;
    transition: transform 0.3s ease;
}

.content-link:hover {
    color: #226DA9;
    transform: translateX(7px);
}

.content-group:hover .subtitle {
    color: #00AA91;
}

.profile-section {
    display: flex;
    justify-content: center;
    margin-top: 15vh;
    width: 100%;
    min-height: 28vh;
}

.profile-image {
    width: 230px;
    height: 331px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin-bottom: 2vh;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
    z-index: 1;
    overflow: visible;
}

.profile-image:hover img {
    will-change: transform;
}

.quote-section {
    text-align: center;
    margin: 2vh 0;
    width: 100%;
    z-index: 2;
    padding: 2vh 0;
}

.quote {
    margin-top: 5vh;
    font-family: 'Medio';
    color: #000;
    font-size: 1.5vw;
    margin-bottom: 1vh;
    letter-spacing: -0.08em;
}

.quote-chinese {
    font-family: PingFangSC-Ultralight, sans-serif;
    color: #000;
    font-size: 1.2vw;
    letter-spacing: 1.001em;
}

@media (max-width: 768px) {
    .bio-text {
        font-size: 2vw;
    }
    
    .quote {
        font-size: 2.5vw;
    }
    
    .quote-chinese {
        font-size: 2vw;
    }
    
    .bio-title {
        font-size: 3.5vw;
    }
    
    .profile-section {
        margin-top: 10vh;
        min-height: 25vh;
    }
    
    .profile-image {
        width: 180px;
        height: 260px;
    }
}


