/* Mobile-First Responsive Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Mobile Styles (320px+) */
body {
    font-family: 'Arial', sans-serif;
    background: url('background_mobile.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateY(110%);
    z-index: 5000;
}

body::before {
    background: linear-gradient(165deg, #0f4c5c 0%, #154c65 56%, #1d5e82 100%);
    transition: transform 0.56s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.22s ease;
}

body::after {
    background: repeating-linear-gradient(
        -8deg,
        rgba(255, 255, 255, 0.09) 0px,
        rgba(255, 255, 255, 0.09) 14px,
        rgba(255, 255, 255, 0) 14px,
        rgba(255, 255, 255, 0) 34px
    );
    transition: transform 0.64s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.25s ease;
}

body.page-transitioning-to-awards {
    overflow: hidden;
}

body.page-transitioning-to-awards::before,
body.page-transitioning-to-awards::after {
    opacity: 1;
    transform: translateY(0);
}

body.page-transitioning-to-awards .container,
body.page-transitioning-to-awards .biography-section {
    transform: translate3d(0, -20px, 0) scale(0.985);
    filter: blur(3px);
    transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.2, 1), filter 0.5s ease;
}

.container {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile Navigation - Base */
.navbar {
    display: none;
}

/* Mobile Floating Navigation */
.mobile-floating-nav {
    position: fixed;
    left: 15px;
    top: 15px;
    z-index: 1200;
    pointer-events: auto;
}

.mobile-floating-nav .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-floating-nav .mobile-menu-toggle span {
    width: 16px;
    height: 2px;
    background: white;
    margin: 1.5px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.mobile-floating-nav .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-floating-nav .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-floating-nav .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Floating Resume Button */
.mobile-floating-resume {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1200;
    pointer-events: auto;
}

.mobile-floating-resume .resume-btn {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3px;
}

.mobile-floating-resume .resume-btn .nav-btn {
    padding: 6px 12px;
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: transparent;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1100;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 60px 20px 40px 20px;
    flex-wrap: nowrap;
}

.mobile-nav-overlay .nav-links .nav-btn {
    padding: 6px 12px;
    font-size: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    width: auto;
    min-width: 85px;
    max-width: 95px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 5px;
}

.mobile-nav-overlay .nav-links .nav-btn:hover,
.mobile-nav-overlay .nav-links .nav-btn:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(0.98);
}

/* Hero Section - Mobile Base */
.hero-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 15px;
    min-height: 100vh;
    position: relative;
    width: 100%;
    flex: 1;
}

.name-section {
    position: absolute;
    bottom: 100px;
    left: 15px;
    text-align: left;
    z-index: 10;
    width: calc(100% - 30px);
}

.first-name {
    font-size: 28px;
    font-weight: 900;
    color: #d4d4d4;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    overflow: hidden;
}

/* Animated text effects */
.animated-text {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards, glow 3s ease-in-out 2s infinite alternate;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 212, 212, 0.3);
    }

    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 212, 212, 0.6), 0 0 30px rgba(212, 212, 212, 0.4);
    }
}

.first-name br {
    display: none;
}

/* Biography Section - Mobile Base */
.biography-section {
    min-height: 100vh;
    background-color: #e8e8e8;
    color: #333;
}

.biography-content {
    padding: 20px 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: #4169E1;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
    overflow: hidden;
    position: relative;
}

/* Animated section title effects - initially hidden */
.animated-section-title {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.animated-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4169E1, #6495ED);
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    60% {
        opacity: 0.8;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Animation triggers only when section comes into view */
.section-title.animate-in .animated-section-title {
    animation: slideInFromBottom 1.2s ease-out forwards;
}

.section-title.animate-in .animated-section-title::after {
    animation: expandLine 1.5s ease-out 0.8s forwards;
}

.bio-text {
    display: block;
}

.bio-column p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Animated biography text - typewriter/reveal effect */
.animated-bio-text {
    opacity: 0;
    overflow: hidden;
    border-right: 2px solid #4169E1;
    white-space: nowrap;
    width: 0;
    animation: none;
}

/* Progressive reveal animation */
.biography-content.animate-in .animated-bio-text:nth-child(1) {
    animation: typewriter 3s steps(150) 0.5s forwards, blinkCursor 0.8s step-end 3.5s 3;
    white-space: normal;
}

.biography-content.animate-in .animated-bio-text:nth-child(2) {
    animation: typewriter 3.5s steps(180) 1.2s forwards, blinkCursor 0.8s step-end 4.7s 3;
    white-space: normal;
}

.biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(1) {
    animation: typewriter 3s steps(140) 2s forwards, blinkCursor 0.8s step-end 5s 3;
    white-space: normal;
}

.biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(2) {
    animation: typewriter 3.2s steps(160) 2.8s forwards, blinkCursor 0.8s step-end 6s 3;
    white-space: normal;
}

@keyframes typewriter {
    0% {
        opacity: 1;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
        border-right: none;
    }
}

@keyframes blinkCursor {

    0%,
    50% {
        border-right-color: #4169E1;
    }

    51%,
    100% {
        border-right-color: transparent;
    }
}

/* Fade in effect for mobile */
@media (max-width: 1199px) {
    .animated-bio-text {
        white-space: normal;
        border-right: none;
        width: auto;
        opacity: 0;
        transform: translateY(20px);
    }

    .biography-content.animate-in .animated-bio-text:nth-child(1) {
        animation: fadeInSlide 1.2s ease-out 0.3s forwards;
    }

    .biography-content.animate-in .animated-bio-text:nth-child(2) {
        animation: fadeInSlide 1.2s ease-out 0.6s forwards;
    }

    .biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(1) {
        animation: fadeInSlide 1.2s ease-out 0.9s forwards;
    }

    .biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(2) {
        animation: fadeInSlide 1.2s ease-out 1.2s forwards;
    }

    @keyframes fadeInSlide {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.bio-link {
    color: #4169E1;
    text-decoration: none;
}

.bio-link:hover {
    text-decoration: underline;
}

/* Hide desktop elements on mobile */
.sticky-navbar {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
}

/* Small Mobile Optimization (360px+) */
@media (min-width: 360px) {
    .mobile-floating-nav .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        padding: 11px;
    }

    .mobile-floating-nav .mobile-menu-toggle span {
        width: 17px;
    }

    .mobile-floating-resume .resume-btn .nav-btn {
        padding: 7px 13px;
        font-size: 12px;
    }

    .mobile-nav-overlay .nav-links .nav-btn {
        padding: 7px 13px;
        font-size: 13px;
        min-width: 90px;
        max-width: 100px;
    }

    .first-name {
        font-size: 32px;
    }

    /* Enhanced mobile animation for 360px+ */
    .first-name .animated-text {
        animation: fadeInUp 1.8s ease-out 0.4s forwards, mobilePulse 2.5s ease-in-out 2.2s infinite;
    }

    @keyframes mobilePulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.02);
        }
    }

    .section-title {
        font-size: 32px;
    }

    /* Mobile animation - initially hidden, triggers on scroll */
    .section-title .animated-section-title {
        opacity: 0;
        transform: translateY(40px);
    }

    .section-title .animated-section-title::after {
        width: 0;
        height: 2px;
    }

    /* Mobile animation triggers only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: slideInFromBottom 1.2s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: expandLine 1.5s ease-out 0.8s forwards;
    }

    .bio-column p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Medium Mobile (400px+) */
@media (min-width: 400px) {
    .mobile-floating-nav {
        left: 18px;
        top: 18px;
    }

    .mobile-floating-resume {
        right: 18px;
        top: 18px;
    }

    .mobile-floating-nav .mobile-menu-toggle {
        width: 45px;
        height: 45px;
        padding: 12px;
    }

    .mobile-floating-nav .mobile-menu-toggle span {
        width: 18px;
    }

    .mobile-floating-resume .resume-btn .nav-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .mobile-nav-overlay .nav-links {
        padding: 70px 25px 50px 25px;
        gap: 12px;
    }

    .mobile-nav-overlay .nav-links .nav-btn {
        padding: 8px 15px;
        font-size: 14px;
        min-width: 95px;
        max-width: 105px;
        margin-left: 8px;
    }

    .hero-section {
        padding: 18px;
    }

    .name-section {
        bottom: 70px;
        left: 18px;
    }

    .first-name {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .biography-content {
        padding: 25px 18px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    /* Mobile 400px+ animation - initially hidden, triggers on scroll */
    .section-title .animated-section-title {
        opacity: 0;
        transform: translateY(45px);
    }

    .section-title .animated-section-title::after {
        width: 0;
        height: 2px;
    }

    /* Mobile animation triggers only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: slideInFromBottom 1.3s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: expandLine 1.6s ease-out 0.9s forwards;
    }

}

/* Large Mobile (480px+) */
@media (min-width: 480px) {
    .mobile-floating-nav {
        left: 20px;
        top: 20px;
    }

    .mobile-floating-resume {
        right: 20px;
        top: 20px;
    }

    .mobile-floating-nav .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        padding: 13px;
    }

    .mobile-floating-nav .mobile-menu-toggle span {
        width: 19px;
    }

    .mobile-floating-resume .resume-btn .nav-btn {
        padding: 9px 16px;
        font-size: 14px;
    }

    .mobile-nav-overlay .nav-links {
        padding: 80px 30px 60px 30px;
        gap: 14px;
    }

    .mobile-nav-overlay .nav-links .nav-btn {
        padding: 9px 16px;
        font-size: 15px;
        min-width: 100px;
        max-width: 110px;
        margin-left: 10px;
    }

    .hero-section {
        padding: 20px;
    }

    .name-section {
        bottom: 80px;
        left: 20px;
    }

    .first-name {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .biography-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    /* Mobile 480px+ animation - initially hidden, triggers on scroll */
    .section-title .animated-section-title {
        opacity: 0;
        transform: translateY(50px);
    }

    .section-title .animated-section-title::after {
        width: 0;
        height: 3px;
    }

    /* Mobile animation triggers only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: slideInFromBottom 1.4s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: expandLine 1.7s ease-out 1s forwards;
    }

    .bio-column p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

}

/* Tablet Portrait (600px+) */
@media (min-width: 600px) {
    .mobile-nav-overlay .nav-links {
        padding: 90px 40px 70px 40px;
        gap: 16px;
    }

    .mobile-nav-overlay .nav-links .nav-btn {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 110px;
        max-width: 120px;
        margin-left: 12px;
    }

    .first-name {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .biography-content {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    /* Tablet portrait animation - initially hidden, triggers on scroll */
    .section-title .animated-section-title {
        opacity: 0;
        transform: translateY(55px);
    }

    .section-title .animated-section-title::after {
        width: 0;
        height: 3px;
    }

    /* Tablet animation triggers only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: slideInFromBottom 1.5s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: expandLine 1.8s ease-out 1.1s forwards;
    }

    .bio-column p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

}

/* Tablet Landscape (768px+) */
@media (min-width: 768px) {
    .mobile-floating-nav .mobile-menu-toggle {
        width: 50px;
        height: 50px;
        padding: 15px;
    }

    .mobile-floating-nav .mobile-menu-toggle span {
        width: 20px;
        margin: 2px 0;
    }

    .mobile-floating-resume .resume-btn .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .mobile-nav-overlay .nav-links {
        padding: 100px 50px 80px 50px;
        gap: 18px;
    }

    .mobile-nav-overlay .nav-links .nav-btn {
        padding: 10px 20px;
        font-size: 16px;
        min-width: 120px;
        max-width: 130px;
        margin-left: 15px;
    }

    .name-section {
        bottom: 90px;
    }

    .first-name {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .biography-content {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 52px;
        margin-bottom: 30px;
    }

    /* Tablet landscape animation - initially hidden, triggers on scroll */
    .section-title .animated-section-title {
        opacity: 0;
        transform: translateY(60px);
    }

    .section-title .animated-section-title::after {
        width: 0;
        height: 4px;
    }

    /* Tablet landscape animation triggers only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: slideInFromBottom 1.6s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: expandLine 1.9s ease-out 1.2s forwards;
    }

    .bio-text {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}

/* Small Desktop (1024px+) */
@media (min-width: 1024px) {
    .biography-content {
        padding: 45px 40px;
    }

    .section-title {
        font-size: 60px;
        margin-bottom: 35px;
        letter-spacing: -2px;
    }

    .bio-text {
        gap: 50px;
        max-width: 1000px;
    }

}

/* Desktop (1200px+) - Switch to Desktop Layout */
@media (min-width: 1200px) {
    body {
        background: url('background.jpg') no-repeat center top fixed;
        background-size: 100%;
    }

    /* Hide mobile elements */
    .mobile-floating-nav,
    .mobile-floating-resume,
    .mobile-nav-overlay {
        display: none !important;
    }

    /* Show desktop navbar - make it sticky */
    .navbar {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 30px 50px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        transition: all 0.3s ease;
    }

    /* Desktop navbar color change in biography section */
    .navbar.in-biography {
        background: transparent;
    }

    .navbar.in-biography .nav-btn {
        color: #4169E1;
        background: white;
        border-color: rgba(65, 105, 225, 0.3);
        font-weight: 500;
        font-family: 'Arial', sans-serif;
    }

    .navbar.in-biography .nav-btn:hover {
        background: rgba(65, 105, 225, 0.1);
        border-color: #4169E1;
        color: #4169E1;
    }

    .navbar.in-biography .resume-btn .nav-btn {
        border-color: #4169E1;
        color: #4169E1;
        background: white;
        font-weight: 500;
    }

    .nav-links {
        display: flex !important;
        gap: 15px;
    }

    .nav-btn {
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 25px;
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        background: transparent;
    }

    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }

    .resume-btn .nav-btn {
        border-color: white;
    }

    /* Desktop hero section - add top padding for fixed navbar */
    .hero-section {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 180px 50px 100px 50px;
        min-height: calc(100vh - 100px);
        gap: 80px;
    }

    .name-section {
        position: static;
        flex: 1;
        text-align: left;
    }

    .first-name {
        font-size: 80px;
        font-weight: 900;
        color: #d4d4d4;
        letter-spacing: -5px;
        line-height: 0.9;
        text-transform: uppercase;
        overflow: hidden;
    }

    /* Enhanced desktop animations */
    .first-name .animated-text {
        display: inline-block;
        opacity: 0;
        animation: slideInScale 2s ease-out 0.3s forwards, desktopGlow 4s ease-in-out 2.5s infinite alternate;
    }

    @keyframes slideInScale {
        0% {
            opacity: 0;
            transform: translateX(-50px) scale(0.8);
        }

        50% {
            opacity: 0.7;
            transform: translateX(0) scale(1.05);
        }

        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    @keyframes desktopGlow {
        0% {
            text-shadow: 0 0 10px rgba(212, 212, 212, 0.3), 0 0 20px rgba(212, 212, 212, 0.2);
        }

        100% {
            text-shadow: 0 0 20px rgba(212, 212, 212, 0.6), 0 0 40px rgba(212, 212, 212, 0.4), 0 0 60px rgba(212, 212, 212, 0.2);
        }
    }

    .first-name br {
        display: block;
    }

    /* Desktop biography */
    .biography-content {
        padding: 50px;
    }

    .section-title {
        font-size: 80px;
        font-weight: 900;
        color: #4169E1;
        text-transform: uppercase;
        margin-bottom: 40px;
        letter-spacing: -2px;
        overflow: hidden;
        position: relative;
    }

    /* Enhanced desktop section title animation - initially hidden */
    .section-title .animated-section-title {
        display: inline-block;
        opacity: 0;
        transform: translateX(-100px) rotateY(-20deg);
        transform-origin: left center;
    }

    .section-title .animated-section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 5px;
        background: linear-gradient(90deg, #4169E1, #6495ED, #87CEEB);
        box-shadow: 0 2px 10px rgba(65, 105, 225, 0.3);
    }

    /* Desktop animations trigger only on scroll */
    .section-title.animate-in .animated-section-title {
        animation: desktopSlideRotate 1.8s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: desktopExpandLine 2s ease-out 1s forwards;
    }

    @keyframes desktopSlideRotate {
        0% {
            opacity: 0;
            transform: translateX(-100px) rotateY(-20deg);
        }

        50% {
            opacity: 0.7;
            transform: translateX(10px) rotateY(5deg);
        }

        100% {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }
    }

    @keyframes desktopExpandLine {
        0% {
            width: 0;
            box-shadow: 0 2px 10px rgba(65, 105, 225, 0.3);
        }

        100% {
            width: 100%;
            box-shadow: 0 2px 20px rgba(65, 105, 225, 0.5);
        }
    }

    .bio-text {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 1200px;
    }

    .bio-column p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #333;
        font-family: Arial, sans-serif;
    }

    /* Desktop typewriter effect with enhanced styling */
    .animated-bio-text {
        opacity: 0;
        overflow: hidden;
        border-right: 3px solid #4169E1;
        white-space: nowrap;
        width: 0;
        position: relative;
    }

    /* Desktop progressive typewriter animation */
    .biography-content.animate-in .animated-bio-text:nth-child(1) {
        animation: desktopTypewriter 4s steps(200) 0.8s forwards,
            desktopBlinkCursor 0.6s step-end 4.8s 4,
            finalFade 0.5s ease-out 7.2s forwards;
        white-space: normal;
    }

    .biography-content.animate-in .animated-bio-text:nth-child(2) {
        animation: desktopTypewriter 4.5s steps(220) 1.5s forwards,
            desktopBlinkCursor 0.6s step-end 6s 4,
            finalFade 0.5s ease-out 8.4s forwards;
        white-space: normal;
    }

    .biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(1) {
        animation: desktopTypewriter 4s steps(180) 2.2s forwards,
            desktopBlinkCursor 0.6s step-end 6.2s 4,
            finalFade 0.5s ease-out 8.6s forwards;
        white-space: normal;
    }

    .biography-content.animate-in .bio-column:nth-child(2) .animated-bio-text:nth-child(2) {
        animation: desktopTypewriter 4.2s steps(200) 3s forwards,
            desktopBlinkCursor 0.6s step-end 7.2s 4,
            finalFade 0.5s ease-out 9.6s forwards;
        white-space: normal;
    }

    @keyframes desktopTypewriter {
        0% {
            opacity: 1;
            width: 0;
        }

        100% {
            opacity: 1;
            width: 100%;
        }
    }

    @keyframes desktopBlinkCursor {

        0%,
        50% {
            border-right-color: #4169E1;
        }

        51%,
        100% {
            border-right-color: transparent;
        }
    }

    @keyframes finalFade {
        0% {
            border-right: 3px solid #4169E1;
        }

        100% {
            border-right: none;
        }
    }

}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .navbar {
        padding: 35px 60px;
    }

    .hero-section {
        padding: 120px 60px;
        gap: 100px;
    }

    .first-name {
        font-size: 90px;
        letter-spacing: -6px;
    }

    .biography-content {
        padding: 60px;
    }

    .section-title {
        font-size: 90px;
        margin-bottom: 50px;
    }

    .bio-text {
        gap: 80px;
        max-width: 1400px;
    }

    .bio-column p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

}

/* Ultra-wide Desktop (1920px+) */
@media (min-width: 1920px) {
    .navbar {
        padding: 40px 80px;
    }

    .hero-section {
        padding: 150px 80px;
        gap: 120px;
    }

    .first-name {
        font-size: 100px;
        letter-spacing: -7px;
    }

    .biography-content {
        padding: 80px;
    }

    .section-title {
        font-size: 100px;
        margin-bottom: 60px;
    }

    .bio-text {
        gap: 100px;
        max-width: 1600px;
    }

    .bio-column p {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

}

/* Utility Classes for Better Mobile Experience */
@media (max-width: 1199px) {

    /* Improve touch targets */
    .mobile-nav-overlay .nav-links .nav-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-floating-nav .mobile-menu-toggle,
    .mobile-floating-resume .resume-btn .nav-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on mobile UI elements */
    .mobile-floating-nav,
    .mobile-floating-resume,
    .mobile-nav-overlay {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Optimize for mobile performance */
    .mobile-nav-overlay {
        will-change: transform, opacity;
    }

    .mobile-floating-nav .mobile-menu-toggle,
    .mobile-floating-resume .resume-btn {
        will-change: transform;
    }
}

/* ============================================
   PUBLICATIONS PAGE STYLES
   ============================================ */

/* Publications Main Section - Mobile Base */
.publications-main-section {
    min-height: 100vh;
    background-color: #e8e8e8;
    color: #333;
}

.publications-content {
    padding: 20px 15px;
}

.publications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.publication-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4169E1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.publication-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.publication-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.publication-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex: 1;
}

.publication-year {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.publication-meta {
    font-size: 12px;
    color: #4169E1;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.publication-description {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.publication-link {
    font-size: 12px;
    color: #4169E1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.publication-link:hover {
    color: #2c5aa0;
    transform: translateX(3px);
}

/* Small Mobile Optimization (360px+) */
@media (min-width: 360px) {
    .publications-content {
        padding: 25px 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .publications-list {
        gap: 16px;
        margin-top: 20px;
    }

    .publication-item {
        padding: 16px;
        border-left-width: 4px;
    }

    .publication-title {
        font-size: 15px;
    }

    .publication-meta {
        font-size: 13px;
    }

    .publication-description {
        font-size: 13px;
    }

    .publication-link {
        font-size: 13px;
    }
}

/* Medium Mobile (400px+) */
@media (min-width: 400px) {
    .publications-content {
        padding: 25px 18px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .publications-list {
        gap: 16px;
        margin-top: 25px;
    }

    .publication-item {
        padding: 18px;
    }

    .publication-title {
        font-size: 16px;
    }

    .publication-description {
        font-size: 14px;
    }
}

/* Large Mobile (480px+) */
@media (min-width: 480px) {
    .publications-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .publications-list {
        gap: 18px;
        margin-top: 30px;
    }
}


/* Card Image */
.card-image {
    display: none;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.card-content {
    padding: 50px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.card-year {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-section {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-preview {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    display: inline-block;
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #1565c0;
}


/* No Publications Message */
.no-publications,
.error {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 1.1rem;
}

.error {
    color: #d32f2f;
}

/* ==========================================
   CREATIVE & PERFORMING ARTS - Index Page
   ========================================== */

.creative-performing-home-section {
    background: #9da79c;
    color: #223028;
    padding: 36px 20px;
    position: relative;
    z-index: 5;
}

.creative-performing-home-section .section-title {
    color: #223028;
    text-align: center;
    margin-bottom: 24px;
}

.creative-performing-home-heading {
    opacity: 1;
    transform: none;
    animation: none;
    position: relative;
    z-index: 6;
    font-size: 24px;
    line-height: 1.1;
}

.creative-performing-home-section .animated-section-title {
    color: #223028;
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

.creative-performing-home-section .animated-section-title::after {
    width: 100%;
    animation: none;
}

.creative-performing-home-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.creative-performing-home-card {
    background: #f5f9ff;
    border: 1px solid #c6d7ea;
    border-left: 5px solid #2f7ac2;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 8px 20px rgba(16, 34, 58, 0.08);
}

.creative-performing-home-list.creative-performing-home-animated .creative-performing-home-card {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(2px);
}

.creative-performing-home-list.creative-performing-home-animated .creative-performing-home-card.card-visible {
    animation: creativeCardReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes creativeCardReveal {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.creative-performing-home-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #1a2b43;
    line-height: 1.3;
    font-weight: 700;
}

.creative-performing-home-link {
    color: #0f4f8b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.creative-performing-home-link:hover {
    color: #0a3c6a;
    border-color: #0a3c6a;
}

.creative-performing-home-link.disabled {
    color: #7c8798;
    border-bottom: none;
    pointer-events: none;
}

/* ==========================================
   PUBLICATIONS - Index Page
   ========================================== */

.home-publications-section {
    background: radial-gradient(circle at 10% 20%, rgba(35, 56, 94, 0.45) 0%, rgba(6, 10, 18, 0) 34%),
        radial-gradient(circle at 90% 80%, rgba(35, 56, 94, 0.38) 0%, rgba(6, 10, 18, 0) 38%),
        #05080f;
    padding: 0 0 36px 0;
    border-top: none;
    border-bottom: 1px solid rgba(157, 181, 216, 0.2);
}

.home-publications-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.home-publications-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0 16px;
}

.home-publications-heading {
    margin: 0;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    color: #d2dee7;
}

.home-publications-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a6c2e8;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.home-publications-cta:hover {
    color: #d7e8ff;
    border-color: #d7e8ff;
}

.home-publications-grid {
    display: block;
}

.home-publication-card {
    background: linear-gradient(135deg, rgba(6, 10, 18, 0.94) 0%, rgba(8, 13, 24, 0.98) 100%);
    border: 1px solid rgba(180, 203, 232, 0.2);
    border-radius: 14px;
    padding: 18px 16px 20px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: sticky;
    top: 0;
    overflow: hidden;
    width: 100%;
    border-left: none;
    border-right: none;
    border-radius: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.home-publication-card + .home-publication-card {
    margin-top: 14px;
}

.home-publications-grid .home-publication-card:nth-child(1),
.home-publications-grid .home-publication-card:nth-child(3),
.home-publications-grid .home-publication-card:nth-child(5) {
    background: radial-gradient(circle at 10% 18%, rgba(66, 92, 125, 0.18) 0%, rgba(4, 8, 14, 0) 34%),
        radial-gradient(circle at 90% 75%, rgba(66, 92, 125, 0.14) 0%, rgba(4, 8, 14, 0) 38%),
        #02060b;
    border-color: rgba(170, 195, 225, 0.24);
}

.home-publications-grid .home-publication-card:nth-child(2),
.home-publications-grid .home-publication-card:nth-child(4) {
    background: radial-gradient(circle at 12% 18%, rgba(88, 100, 92, 0.11) 0%, rgba(157, 170, 157, 0) 34%),
        radial-gradient(circle at 88% 74%, rgba(88, 100, 92, 0.1) 0%, rgba(157, 170, 157, 0) 38%),
        #a2afa2;
    border-color: rgba(58, 67, 60, 0.22);
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-pill,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-pill {
    color: #1f2822;
    border-color: rgba(31, 40, 34, 0.78);
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-rule,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-rule {
    background: linear-gradient(90deg, rgba(20, 27, 22, 0.9) 0%, rgba(20, 27, 22, 0.2) 100%);
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-title,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-title {
    color: #090d0a;
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-title-accent,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-title-accent {
    background: linear-gradient(90deg, rgba(28, 39, 31, 0.2) 0%, rgba(17, 26, 18, 0.9) 50%, rgba(28, 39, 31, 0.2) 100%);
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-title-accent::after,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-title-accent::after {
    background: rgba(17, 26, 18, 0.92);
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-postid,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-postid,
.home-publications-grid .home-publication-card:nth-child(2) .home-publication-subline,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-subline,
.home-publications-grid .home-publication-card:nth-child(2) .home-publication-post-text,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-post-text,
.home-publications-grid .home-publication-card:nth-child(2) .home-publication-link,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-link {
    color: #253129;
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-link:hover,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-link:hover {
    color: #111711;
    border-color: #111711;
}

.home-publications-grid .home-publication-card:nth-child(2) .home-publication-index,
.home-publications-grid .home-publication-card:nth-child(4) .home-publication-index {
    color: rgba(54, 66, 58, 0.16);
}

.home-publication-card:hover {
    transform: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.home-publication-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.home-publication-body {
    padding-top: clamp(90px, 14vh, 170px);
}

.home-publication-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(176, 200, 230, 0.85);
    color: #bdd3ec;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.8px;
    padding: 5px 12px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.home-publication-rule {
    height: 1px;
    background: linear-gradient(90deg, rgba(180, 203, 232, 0.8) 0%, rgba(180, 203, 232, 0.12) 100%);
    flex: 1;
}

.home-publication-title-accent {
    display: block;
    width: 120px;
    height: 4px;
    margin: 0 0 14px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 229, 253, 0.2) 0%, #d7e8ff 50%, rgba(212, 229, 253, 0.2) 100%);
    transform-origin: left center;
    animation: accentReveal 0.9s ease-out forwards, accentPulse 2.8s ease-in-out 1s infinite;
    position: relative;
    z-index: 2;
}

.home-publication-title-accent::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 20px;
    height: 8px;
    border-radius: 999px;
    background: rgba(239, 245, 255, 0.95);
    filter: blur(0.2px);
    animation: accentGlide 2.8s ease-in-out 1s infinite;
}

@keyframes accentReveal {
    0% {
        transform: scaleX(0.2);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes accentPulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(215, 232, 255, 0);
    }

    50% {
        box-shadow: 0 0 16px rgba(215, 232, 255, 0.45);
    }
}

@keyframes accentGlide {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.8;
    }

    50% {
        transform: translateX(100px);
        opacity: 1;
    }
}

.home-publication-title {
    margin: 0 0 8px 0;
    color: #c8d4cf;
    font-size: 20px;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.6px;
    max-width: 86%;
    position: relative;
    z-index: 2;
}

.home-publications-grid.home-publications-animated .home-publication-title {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.home-publications-grid.home-publications-animated .home-publication-title-accent {
    opacity: 0;
    transform: scaleX(0.3);
}

.home-publications-grid.home-publications-animated .home-publication-post-text {
    opacity: 0;
    transform: translateY(20px);
}

.home-publication-card.title-visible .home-publication-title {
    animation: publicationTitleReveal 0.85s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.home-publication-card.title-visible .home-publication-title-accent {
    animation: publicationAccentReveal 0.6s ease-out forwards, accentPulse 2.8s ease-in-out 0.8s infinite;
}

.home-publication-card.title-visible .home-publication-title-accent::after {
    animation: accentGlide 2.8s ease-in-out 0.8s infinite;
}

.home-publication-card.title-visible .home-publication-post-text {
    animation: publicationPostReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

@keyframes publicationTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes publicationAccentReveal {
    0% {
        opacity: 0;
        transform: scaleX(0.3);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes publicationPostReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.home-publication-meta {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #9ab0c8;
    font-weight: 600;
}

.home-publication-postid {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #9eb6d2;
    white-space: nowrap;
}

.home-publication-subline {
    margin: 0 0 14px 0;
    color: #b7c6d8;
    font-style: italic;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.home-publication-post-text {
    margin: 0 0 14px 0;
    color: #d2dee7;
    font-size: 16px;
    line-height: 1.45;
    position: relative;
    z-index: 2;
}

.home-publication-description {
    margin: 0 0 12px 0;
    color: #3f4d66;
    font-size: 13px;
    line-height: 1.55;
}

.home-publication-link {
    color: #c5dcff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    position: relative;
    z-index: 2;
}

.home-publication-link:hover {
    color: #eff5ff;
    border-color: #eff5ff;
}

.home-publication-index {
    position: absolute;
    right: 12px;
    bottom: -12px;
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    color: rgba(176, 200, 230, 0.08);
    letter-spacing: -4px;
    z-index: 1;
    pointer-events: none;
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Tablet Layout */
@media (min-width: 768px) {
    .card-content {
        padding: 55px;
    }

    .home-publications-section {
        padding: 0 0 46px 0;
    }

    .home-publications-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 24px;
        padding: 0 24px;
    }

    .home-publications-heading {
        font-size: 46px;
    }

    .home-publication-card + .home-publication-card {
        margin-top: 18px;
    }

    .home-publication-card {
        padding: 24px 22px 26px 22px;
    }

    .home-publication-body {
        padding-top: clamp(120px, 16vh, 220px);
    }

    .home-publication-title {
        font-size: 30px;
        max-width: 84%;
    }

    .home-publication-postid {
        font-size: 13px;
    }

    .home-publication-title-accent {
        width: 160px;
        margin-bottom: 18px;
    }

    .home-publication-subline {
        font-size: 18px;
    }

    .home-publication-post-text {
        font-size: 19px;
    }

    .home-publication-index {
        right: 20px;
        font-size: 180px;
    }

    .creative-performing-home-section {
        padding: 44px 30px;
    }

    .creative-performing-home-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .creative-performing-home-title {
        font-size: 22px;
    }

    .creative-performing-home-heading {
        font-size: 32px;
    }
}

.card-title {
    font-size: 1.4rem;
    color: #1976d2;
    font-weight: 700;
}


/* Desktop Layout - 3 Columns */
@media (min-width: 1200px) {
    .home-publications-section {
        padding: 0 0 58px 0;
    }

    .home-publications-header {
        padding: 0 30px;
    }

    .home-publications-heading {
        font-size: 60px;
    }

    .home-publication-card + .home-publication-card {
        margin-top: 20px;
    }

    .home-publication-card {
        min-height: 320px;
        padding: 28px 28px 32px 28px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .home-publication-body {
        padding-top: clamp(150px, 18vh, 280px);
    }

    .home-publication-title {
        font-size: 38px;
        max-width: 80%;
    }

    .home-publication-title-accent {
        width: 190px;
        margin-bottom: 20px;
    }

    .home-publication-pill {
        font-size: 12px;
        padding: 6px 14px;
    }

    .home-publication-postid {
        font-size: 14px;
    }

    .home-publication-subline {
        font-size: 19px;
    }

    .home-publication-post-text {
        font-size: 24px;
        line-height: 1.4;
    }

    .home-publication-link {
        font-size: 15px;
    }

    .home-publication-index {
        right: 24px;
        font-size: 220px;
    }

    .creative-performing-home-section {
        padding: 56px 50px;
    }

    .creative-performing-home-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .creative-performing-home-card {
        padding: 22px 20px;
    }

    .creative-performing-home-heading {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .creative-performing-home-section .section-title.creative-performing-home-heading {
        font-size: 28px !important;
        line-height: 1.15;
    }
}

@media (min-width: 1440px) {
    .creative-performing-home-section .section-title.creative-performing-home-heading {
        font-size: 28px !important;
    }
}

@media (min-width: 1920px) {
    .creative-performing-home-section .section-title.creative-performing-home-heading {
        font-size: 28px !important;
    }
}

/* ============================================
   CONFERENCES PAGE STYLES
   ============================================ */

/* Conferences Main Section */
body.conferences-page {
    background: #16a085;
}

.conferences-page .container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-size: cover;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
}

.conferences-main-section {
    min-height: 100vh;
    background-color: #16a085;
    color: #fff;
}

.conferences-content {
    padding: 20px 15px;
}

.conferences-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    display: none;
}

.conferences-title-box {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.conferences-page .hero-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
    will-change: opacity, transform, filter;
}

.conferences-page .hero-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.conferences-page .hero-reveal.is-visible.conferences-title-box {
    animation: conferencesHeroGlow 5.2s ease-in-out 1s infinite alternate;
}

@keyframes conferencesHeroGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 255, 255, 0.2);
    }
}

.conferences-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.conferences-main-section .conferences-heading-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(6px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.72s ease;
    will-change: opacity, transform, filter;
}

.conferences-main-section .conferences-heading-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.conference-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0d7969;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #333;
}

.conferences-list .conference-card-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.986);
    filter: blur(7px);
    transition: opacity 0.74s ease, transform 0.74s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.74s ease;
    transition-delay: var(--conference-card-delay, 0ms);
    will-change: opacity, transform, filter;
}

.conferences-list .conference-card-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.conferences-list .conference-card-reveal .conference-card-child {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: var(--conference-child-delay, 0ms);
}

.conferences-list .conference-card-reveal.is-visible .conference-card-child {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.conference-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.conference-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.conference-title {
    font-size: 16px;
    font-weight: 700;
    color: #16a085;
    margin: 0;
    flex: 1;
}

.conference-year {
    font-size: 12px;
    color: #fff;
    background: #16a085;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 600;
}

.conference-meta {
    font-size: 12px;
    color: #16a085;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.conference-description {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .conferences-page .hero-section {
        justify-content: center;
        align-items: center;
    }

    .conferences-title-box {
        transform: translateY(-8vh);
    }
}

/* Small Mobile Optimization (360px+) */
@media (min-width: 360px) {
    .conferences-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
        max-width: 92%;
    }

    .conferences-content {
        padding: 25px 18px;
    }

    .conferences-title-box {
        font-size: 32px;
    }

    .conferences-list {
        gap: 16px;
        margin-top: 20px;
    }

    .conference-item {
        padding: 16px;
        border-left-width: 4px;
    }

    .conference-title {
        font-size: 15px;
    }

    .conference-meta {
        font-size: 13px;
    }

    .conference-description {
        font-size: 13px;
    }
}

/* Medium Mobile (400px+) */
@media (min-width: 400px) {
    .conferences-subtitle {
        font-size: 13px;
        margin-bottom: 14px;
        max-width: 93%;
    }

    .conferences-content {
        padding: 25px 18px;
    }

    .conferences-title-box {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .conferences-list {
        gap: 16px;
        margin-top: 25px;
    }

    .conference-item {
        padding: 18px;
    }

    .conference-title {
        font-size: 16px;
    }

    .conference-description {
        font-size: 14px;
    }
}

/* Large Mobile (480px+) */
@media (min-width: 480px) {
    .conferences-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
        max-width: 94%;
    }

    .conferences-content {
        padding: 30px 20px;
    }

    .conferences-title-box {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .conferences-list {
        gap: 18px;
        margin-top: 30px;
    }
}

/* Tablet Portrait (600px+) */
@media (min-width: 600px) {
    .conferences-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
        max-width: 95%;
    }

    .conferences-content {
        padding: 35px 25px;
    }

    .conferences-title-box {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .conferences-list {
        gap: 20px;
        margin-top: 35px;
    }

    .conference-item {
        padding: 22px;
        border-left-width: 5px;
    }

    .conference-title {
        font-size: 18px;
    }

    .conference-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Tablet Landscape (768px+) */
@media (min-width: 768px) {
    .conferences-subtitle {
        display: block;
        font-size: 16px;
        margin-bottom: 20px;
        max-width: 96%;
    }

    .conferences-page .container {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
            url('background.jpg') no-repeat center top;
        background-size: cover;
        background-attachment: scroll;
    }

    .conferences-main-section {
        background-color: #16a085;
    }

    .conferences-content {
        padding: 40px 30px;
    }

    .conferences-title-box {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .conferences-list {
        gap: 22px;
        margin-top: 40px;
    }

    .conference-item {
        padding: 24px;
    }

    .conference-title {
        font-size: 19px;
    }

    .conference-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Small Desktop (1024px+) */
@media (min-width: 1024px) {
    .conferences-subtitle {
        display: block;
        font-size: 18px;
        margin-bottom: 25px;
        max-width: 97%;
        line-height: 1.7;
    }

    .conferences-content {
        padding: 45px 40px;
    }

    .conferences-title-box {
        font-size: 60px;
        margin-bottom: 35px;
        letter-spacing: -2px;
    }

    .conferences-list {
        gap: 24px;
        margin-top: 45px;
    }

    .conference-item {
        padding: 26px;
        border-left-width: 5px;
    }

    .conference-title {
        font-size: 20px;
    }

    .conference-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .conferences-page .hero-section {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
    }

    .conferences-subtitle {
        display: block;
        font-size: 19px;
        margin-bottom: 30px;
        max-width: 98%;
        line-height: 1.8;
    }

    .conferences-main-section {
        background-color: #16a085;
        color: #fff;
    }

    .conferences-content {
        padding: 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .conferences-title-box {
        font-size: 80px;
        font-weight: 900;
        color: white;
        text-transform: uppercase;
        margin-bottom: 40px;
        letter-spacing: -2px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .conferences-list {
        gap: 28px;
        margin-top: 50px;
    }

    .conference-item {
        padding: 28px;
        border-left-width: 6px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .conference-item:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 1);
    }

    .conference-title {
        font-size: 22px;
        font-weight: 700;
    }

    .conference-description {
        font-size: 16px;
        line-height: 1.7;
        margin: 12px 0;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .conferences-subtitle {
        display: block;
        font-size: 21px;
        margin-bottom: 35px;
        max-width: 98%;
        line-height: 1.9;
    }

    .conferences-content {
        padding: 60px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .conferences-title-box {
        font-size: 90px;
        margin-bottom: 50px;
    }

    .conferences-list {
        gap: 32px;
        margin-top: 60px;
    }

    .conference-item {
        padding: 32px;
    }

    .conference-title {
        font-size: 24px;
    }

    .conference-description {
        font-size: 18px;
        line-height: 1.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .conferences-page .hero-reveal,
    .conferences-page .hero-reveal.is-visible,
    .conferences-page .hero-reveal.is-visible.conferences-title-box,
    .conferences-main-section .conferences-heading-reveal,
    .conferences-main-section .conferences-heading-reveal.is-visible,
    .conferences-list .conference-card-reveal,
    .conferences-list .conference-card-reveal.is-visible,
    .conferences-list .conference-card-reveal .conference-card-child,
    .conferences-list .conference-card-reveal.is-visible .conference-card-child {
        animation: none;
        transition: none;
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* ============================================
   CONFERENCES PAGE - GET IN TOUCH SECTION
   ============================================ */
.get-in-touch-section {
    background: #e7e7e5;
    color: #312fe2;
    padding: 34px 14px 42px;
}

.get-in-touch-wrap {
    max-width: 1700px;
    margin: 0 auto;
}

.get-in-touch-title {
    margin: 0;
    text-align: center;
    color: #312fe2;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 3.45rem;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 900;
}

.get-in-touch-top-row {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.get-in-touch-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.touch-email-pill {
    width: fit-content;
    text-decoration: none;
    color: #4b49ee;
    border: 2px solid rgba(75, 73, 238, 0.8);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
}

.touch-social-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.touch-social-label {
    color: #4b49ee;
    border: 2px solid rgba(75, 73, 238, 0.8);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.95rem;
    line-height: 1;
}

.touch-social-icon {
    min-width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #4b49ee;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 9px;
    font-size: 0.92rem;
    font-weight: 700;
}

.touch-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.touch-line-art {
    width: 100%;
}

.touch-line-art svg {
    display: block;
    width: 100%;
    height: 78px;
}

.touch-line-art path {
    fill: none;
    stroke: #4b49ee;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.touch-quote {
    margin: 8px 0 0;
    color: #312fe2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 700;
    text-align: left;
    max-width: 760px;
}

.touch-quote-author {
    display: block;
    margin-top: 10px;
    font-size: 0.98rem;
}

.touch-role-strip {
    margin-top: 18px;
    overflow: hidden;
    border-top: 4px solid rgba(75, 73, 238, 0.12);
    padding-top: 14px;
}

.touch-role-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 3.5rem;
    animation: touchRoleScroll 28s linear infinite;
}

.touch-role-item {
    white-space: nowrap;
    color: #312fe2;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 2.35rem;
    line-height: 0.95;
    letter-spacing: 0.4px;
    font-weight: 900;
}

.touch-footer {
    margin-top: 18px;
    color: #4b49ee;
}

.touch-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.touch-footer-quote-main {
    margin: 0;
    color: #312fe2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
}

.touch-footer-quote-sub {
    margin: 8px 0 0;
    color: rgba(75, 73, 238, 0.85);
    font-size: 0.92rem;
    line-height: 1.35;
}

.touch-footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
}

.touch-footer-col h4 {
    margin: 0 0 8px;
    color: #312fe2;
    font-size: 1.12rem;
    line-height: 1;
}

.touch-footer-col a {
    display: block;
    color: #5c5af1;
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.55;
}

.touch-footer-col a:hover {
    text-decoration: underline;
}

.touch-footer-bottom {
    margin-top: 18px;
    text-align: center;
}

.touch-footer-bottom p,
.touch-footer-bottom a {
    margin: 0;
    color: rgba(75, 73, 238, 0.78);
    font-size: 0.86rem;
    line-height: 1.45;
    text-decoration: none;
}

.touch-footer-bottom a:hover {
    text-decoration: underline;
}

@keyframes touchRoleScroll {
    from {
        transform: translateX(-45%);
    }

    to {
        transform: translateX(0);
    }
}

@media (min-width: 768px) {
    .get-in-touch-section {
        padding: 52px 22px 58px;
    }

    .get-in-touch-title {
        font-size: 7.3rem;
    }

    .get-in-touch-top-row {
        margin-top: 34px;
        display: grid;
        grid-template-columns: 260px 1fr;
        align-items: center;
        gap: 20px;
    }

    .touch-line-art svg {
        height: 110px;
    }

    .touch-quote {
        margin-top: 16px;
        font-size: 1.22rem;
    }

    .touch-role-strip {
        margin-top: 24px;
        padding-top: 16px;
    }

    .touch-role-item {
        font-size: 4.2rem;
    }

    .touch-footer {
        margin-top: 24px;
    }

    .touch-footer-grid {
        grid-template-columns: minmax(320px, 1fr) minmax(380px, 560px);
        gap: 26px;
        align-items: start;
    }

    .touch-footer-links-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 28px;
    }

    .touch-footer-quote-main {
        font-size: 1.18rem;
    }

    .touch-footer-col h4 {
        font-size: 1.2rem;
    }

    .touch-footer-col a {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (min-width: 1200px) {
    .get-in-touch-section {
        padding: 62px 50px 70px;
    }

    .get-in-touch-title {
        font-size: 10.6rem;
        letter-spacing: 1.2px;
    }

    .get-in-touch-top-row {
        margin-top: 38px;
        grid-template-columns: 290px 1fr;
        gap: 34px;
    }

    .touch-line-art svg {
        height: 136px;
    }

    .touch-quote {
        margin-top: 20px;
        font-size: 1.34rem;
        max-width: 860px;
    }

    .touch-role-strip {
        margin-top: 28px;
        padding-top: 20px;
    }

    .touch-role-item {
        font-size: 5rem;
        letter-spacing: 0.8px;
    }

    .touch-footer {
        margin-top: 26px;
    }

    .touch-footer-grid {
        grid-template-columns: minmax(520px, 1fr) minmax(560px, 760px);
        gap: 46px;
    }

    .touch-footer-quote-main {
        font-size: 1.28rem;
        line-height: 1.5;
        max-width: 560px;
    }

    .touch-footer-quote-sub {
        font-size: 1rem;
    }

    .touch-footer-col h4 {
        font-size: 1.28rem;
    }

    .touch-footer-col a {
        font-size: 1.04rem;
        line-height: 1.52;
    }

    .touch-footer-bottom {
        margin-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .touch-role-track {
        animation: none;
    }
}

/* ============================================
    IMAGE HERO SECTION
   ============================================ */

/* Image Hero Section */
.image-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('2_hero_section.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
    z-index: 1;
}

.image-hero-content {
    width: 100%;
    height: 100%;
}

/* Mobile Image Hero */
@media (max-width: 768px) {
    .image-hero-section {
        min-height: 60vh;
        padding: 20px;
        background-position: center center;
    }
}

/* Tablet Image Hero */
@media (min-width: 769px) and (max-width: 1199px) {
    .image-hero-section {
        min-height: 75vh;
        background-position: center top;
    }
}

/* Desktop Image Hero */
@media (min-width: 1200px) {
    .image-hero-section {
        min-height: 100vh;
        background-position: center top;
    }
}

/* Books Authored and Edited Section */
.books-section {
    background: #ffffff;
    color: #1f252c;
    padding: 28px 16px 48px;
    min-height: 55vh;
}

.books-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.books-heading {
    margin: 0;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 800;
    color: #202a4b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.books-section .conferences-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.books-section .conference-item {
    border-left-width: 0;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.books-section .conference-title {
    color: #0d9488;
}

.books-section .conference-meta {
    color: #0d9488;
    margin-bottom: 10px;
}

.books-section .conference-description {
    color: #384151;
}

.books-section .conference-year {
    background: #0d9488;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 9px;
}

.books-section .conferences-list.conferences-home-animated .conference-item {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(2px);
}

.books-section .conferences-list.conferences-home-animated .conference-item.card-visible {
    animation: homeConferenceCardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes homeConferenceCardReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (min-width: 768px) {
    .books-section {
        padding: 40px 28px 64px;
        min-height: 50vh;
    }

    .books-heading {
        font-size: 2.4rem;
    }

    .books-section .conferences-list {
        gap: 18px;
        margin-top: 22px;
    }

    .books-section .conference-item {
        padding: 22px;
    }
}

@media (min-width: 1200px) {
    .books-section {
        padding: 56px 50px 84px;
        min-height: 45vh;
    }

    .books-heading {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .books-section .conferences-list {
        margin-top: 28px;
        gap: 20px;
    }

    .books-section .conference-item {
        padding: 34px 40px;
    }
}

/* At a Glance Experience Section */
.home-experience-section {
    background: #f7f8fa;
    color: #1f252c;
    padding: 28px 16px 44px;
}

.home-experience-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-experience-heading {
    margin: 0;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2f1d28;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-experience-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.home-experience-card {
    background: #ffffff;
    border-left: 4px solid #3b1f2b;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.home-experience-card.has-image {
    display: grid;
    grid-template-columns: minmax(92px, 120px) 1fr;
    column-gap: 14px;
    align-items: start;
}

.home-experience-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-experience-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #eceff2;
}

.home-experience-card.has-image .home-experience-image-wrap {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
}

.home-experience-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-experience-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-experience-title {
    margin: 0;
    font-size: 1.05rem;
    color: #3b1f2b;
}

.home-experience-card.has-image .home-experience-details {
    grid-column: 2;
    grid-row: 1;
}

.home-experience-description {
    margin: 2px 0 0;
    color: #45515e;
    line-height: 1.6;
    font-size: 0.92rem;
}

.home-experience-meta {
    margin: 0;
    color: #6f7782;
    line-height: 1.5;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: min(100%, 38ch);
}

.home-experience-section.home-experience-animated .home-experience-heading {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(2px);
}

.home-experience-section.home-experience-animated.heading-visible .home-experience-heading {
    animation: homeExperienceHeadingReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-experience-section.home-experience-animated .home-experience-card {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(2px);
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible {
    animation: homeExperienceCardReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-experience-section.home-experience-animated .home-experience-card .home-experience-image-wrap,
.home-experience-section.home-experience-animated .home-experience-card .home-experience-title,
.home-experience-section.home-experience-animated .home-experience-card .home-experience-meta,
.home-experience-section.home-experience-animated .home-experience-card .home-experience-description {
    opacity: 0;
    transform: translateY(16px);
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-image-wrap,
.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-title,
.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-meta,
.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-description {
    animation: homeExperienceInnerReveal 0.7s ease-out forwards;
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-image-wrap {
    animation-delay: 0.08s;
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-title {
    animation-delay: 0.16s;
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-meta {
    animation-delay: 0.24s;
}

.home-experience-section.home-experience-animated .home-experience-card.card-visible .home-experience-description {
    animation-delay: 0.32s;
}

@keyframes homeExperienceHeadingReveal {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes homeExperienceCardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes homeExperienceInnerReveal {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .home-experience-section {
        padding: 40px 28px 58px;
    }

    .home-experience-heading {
        font-size: 2.4rem;
    }

    .home-experience-grid {
        margin-top: 22px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-experience-card {
        padding: 18px;
    }

    .home-experience-card.has-image {
        grid-template-columns: minmax(120px, 160px) 1fr;
        column-gap: 18px;
    }

    .home-experience-image-wrap {
        margin-bottom: 14px;
    }

    .home-experience-title {
        font-size: 1.15rem;
    }

    .home-experience-meta {
        max-width: min(100%, 44ch);
    }

    .home-experience-description {
        font-size: 0.97rem;
    }
}

@media (min-width: 1200px) {
    .home-experience-section {
        padding: 56px 50px 78px;
    }

    .home-experience-heading {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .home-experience-grid {
        margin-top: 28px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-experience-card {
        padding: 22px;
        border-left-width: 5px;
    }

    .home-experience-card.has-image {
        grid-template-columns: minmax(160px, 210px) 1fr;
        column-gap: 22px;
    }

    .home-experience-image-wrap {
        margin-bottom: 16px;
    }

    .home-experience-title {
        font-size: 1.3rem;
    }

    .home-experience-meta {
        max-width: min(100%, 50ch);
    }

    .home-experience-description {
        font-size: 1rem;
    }
}

/* At a Glance Awards Section */
.home-awards-section {
    background: #ececf0;
    color: #1f252c;
    padding: 28px 16px 52px;
}

.home-awards-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-awards-heading {
    margin: 0;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 800;
    color: #202a4b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-awards-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.home-awards-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

.home-awards-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    color: #1c356e;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.home-awards-read-more:hover,
.home-awards-read-more:focus-visible {
    background: #1c356e;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(28, 53, 110, 0.24);
    transform: translateY(-2px);
}

.home-awards-read-more:active {
    transform: translateY(0);
}

.home-awards-grid .home-award-card:nth-child(n + 6) {
    display: none;
}

.home-award-card {
    background: #ffffff;
    border-left: 4px solid #202a4b;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: minmax(96px, 112px) 1fr;
    gap: 12px;
    align-items: center;
}

.home-award-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
    background: #dfe4ea;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-award-content {
    min-width: 0;
}

.home-award-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.home-award-title {
    margin: 0;
    font-size: 1.06rem;
    color: #202a4b;
    line-height: 1.35;
}

.home-award-link {
    margin-top: 8px;
    display: inline-flex;
    width: fit-content;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f3f8a;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.home-award-meta {
    margin: 0 0 6px;
    color: #626c79;
    line-height: 1.45;
    font-size: 0.9rem;
    display: none;
}

.home-award-section-name {
    font-weight: 700;
    color: #38446a;
}

.home-award-description {
    margin: 2px 0 0;
    color: #45515e;
    line-height: 1.6;
    font-size: 0.92rem;
    display: none;
}

.home-awards-section.home-awards-animated .home-awards-heading {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(2px);
}

.home-awards-section.home-awards-animated.heading-visible .home-awards-heading {
    animation: homeAwardsHeadingReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-awards-section.home-awards-animated .home-award-card {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(2px);
}

.home-awards-section.home-awards-animated .home-award-card.card-visible {
    animation: homeAwardsCardReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--award-card-index, 0) * 90ms);
}

.home-awards-section.home-awards-animated .home-award-card .home-award-image-wrap,
.home-awards-section.home-awards-animated .home-award-card .home-award-title,
.home-awards-section.home-awards-animated .home-award-card .home-award-meta,
.home-awards-section.home-awards-animated .home-award-card .home-award-description {
    opacity: 0;
    transform: translateY(16px);
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-image-wrap,
.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-title,
.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-meta,
.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-description {
    animation: homeAwardsInnerReveal 0.7s ease-out forwards;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-image-wrap {
    animation-delay: 0.08s;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-title {
    animation-delay: 0.16s;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-meta {
    animation-delay: 0.24s;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-meta:nth-of-type(2) {
    animation-delay: 0.3s;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-meta:nth-of-type(3) {
    animation-delay: 0.36s;
}

.home-awards-section.home-awards-animated .home-award-card.card-visible .home-award-description {
    animation-delay: 0.32s;
}

@keyframes homeAwardsHeadingReveal {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes homeAwardsCardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes homeAwardsInnerReveal {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .home-awards-section {
        padding: 40px 28px 66px;
    }

    .home-awards-heading {
        font-size: 2.4rem;
    }

    .home-awards-grid {
        margin-top: 22px;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .home-awards-actions {
        margin-top: 18px;
    }

    .home-awards-read-more {
        font-size: 0.95rem;
        padding: 10px 22px;
    }

    .home-awards-grid .home-award-card:nth-child(n + 6) {
        display: block;
    }

    .home-awards-grid .home-award-card:nth-child(n + 7) {
        display: none;
    }

    .home-award-card {
        display: block;
        padding: 18px;
    }

    .home-award-image-wrap {
        aspect-ratio: 16 / 9;
        margin-bottom: 14px;
    }

    .home-award-link {
        display: none;
    }

    .home-award-meta {
        display: block;
    }

    .home-award-description {
        display: none;
    }

    .home-award-title {
        margin: 0 0 8px;
        font-size: 1.15rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    body::before,
    body::after,
    body.page-transitioning-to-awards .container,
    body.page-transitioning-to-awards .biography-section,
    .home-awards-read-more {
        transition: none;
        animation: none;
        transform: none;
        filter: none;
    }
}

@media (min-width: 1200px) {
    .home-awards-section {
        padding: 56px 50px 92px;
    }

    .home-awards-heading {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .home-awards-grid {
        margin-top: 28px;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 22px;
    }

    .home-award-card {
        padding: 22px;
        border-left-width: 5px;
    }

    .home-award-image-wrap {
        margin-bottom: 16px;
    }

    .home-award-title {
        font-size: 1.24rem;
    }

    .home-award-description {
        font-size: 1rem;
    }
}

/* Ultra-wide Desktop (1920px+) */
@media (min-width: 1920px) {
    .conferences-subtitle {
        display: block;
        font-size: 24px;
        margin-bottom: 40px;
        max-width: 99%;
        line-height: 2;
    }

    .conferences-content {
        padding: 80px;
        max-width: 1800px;
        margin: 0 auto;
    }

    .conferences-title-box {
        font-size: 100px;
        margin-bottom: 60px;
    }

    .conferences-list {
        gap: 36px;
        margin-top: 70px;
    }

    .conference-item {
        padding: 36px;
    }

    .conference-title {
        font-size: 26px;
    }

    .conference-description {
        font-size: 20px;
        line-height: 1.9;
    }
}

.card-image {
    height: 220px;
}

.card-content {
    padding: 70px;
}

.card-title {
    font-size: 1.5rem;
    color: #1976d2;
    font-weight: 700;
}


/* Fade and Slide Up Animation */
/* Slide In Animation */
@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(100vh);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.publication-item {
    padding: 20px;
}

.publication-title {
    font-size: 17px;
}

.publication-description {
    font-size: 14px;
    line-height: 1.6;
}


/* Tablet Portrait (600px+) */
@media (min-width: 600px) {
    .publications-content {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .publications-list {
        gap: 20px;
        margin-top: 35px;
    }

    .publication-item {
        padding: 22px;
        border-left-width: 5px;
    }

    .publication-title {
        font-size: 18px;
    }

    .publication-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .publication-link {
        font-size: 14px;
    }
}

/* Tablet Landscape (768px+) */
@media (min-width: 768px) {
    .publications-content {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .publications-list {
        gap: 22px;
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .publication-item {
        padding: 24px;
    }

    .publication-title {
        font-size: 19px;
    }

    .publication-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Small Desktop (1024px+) */
@media (min-width: 1024px) {
    .publications-content {
        padding: 45px 40px;
    }

    .section-title {
        font-size: 60px;
        margin-bottom: 35px;
        letter-spacing: -2px;
    }

    .publications-list {
        gap: 24px;
        margin-top: 45px;
        grid-template-columns: 1fr 1fr;
    }

    .publication-item {
        padding: 26px;
        border-left-width: 5px;
    }

    .publication-title {
        font-size: 20px;
    }

    .publication-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .publication-link {
        font-size: 15px;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .publications-main-section {
        background-color: #e8e8e8;
        color: #333;
    }

    .publications-content {
        padding: 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 80px;
        font-weight: 900;
        color: #4169E1;
        text-transform: uppercase;
        margin-bottom: 40px;
        letter-spacing: -2px;
        overflow: hidden;
        position: relative;
    }

    .section-title .animated-section-title {
        display: inline-block;
        opacity: 0;
        transform: translateX(-100px) rotateY(-20deg);
        transform-origin: left center;
    }

    .section-title .animated-section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 5px;
        background: linear-gradient(90deg, #4169E1, #6495ED, #87CEEB);
        box-shadow: 0 2px 10px rgba(65, 105, 225, 0.3);
    }

    .section-title.animate-in .animated-section-title {
        animation: desktopSlideRotate 1.8s ease-out forwards;
    }

    .section-title.animate-in .animated-section-title::after {
        animation: desktopExpandLine 2s ease-out 1s forwards;
    }

    .publications-list {
        gap: 28px;
        margin-top: 50px;
        grid-template-columns: 1fr 1fr;
    }

    .publication-item {
        padding: 28px;
        border-left-width: 6px;
        background: white;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .publication-item:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

    .publication-title {
        font-size: 22px;
        font-weight: 700;
    }

    .publication-description {
        font-size: 16px;
        line-height: 1.7;
        margin: 12px 0;
    }

    .publication-link {
        font-size: 16px;
        font-weight: 600;
    }

    .publication-link:hover {
        transform: translateX(5px);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .publications-content {
        padding: 60px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 90px;
        margin-bottom: 50px;
    }

    .publications-list {
        gap: 32px;
        margin-top: 60px;
        grid-template-columns: 1fr 1fr;
    }

    .publication-item {
        padding: 32px;
    }

    .publication-title {
        font-size: 24px;
    }

    .publication-description {
        font-size: 17px;
        line-height: 1.8;
    }
}

/* Ultra-wide Desktop (1920px+) */
@media (min-width: 1920px) {
    .publications-content {
        padding: 80px;
        max-width: 1800px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 100px;
        margin-bottom: 60px;
    }

    .publications-list {
        gap: 36px;
        margin-top: 70px;
    }

    .publication-item {
        padding: 36px;
    }

    .publication-title {
        font-size: 26px;
    }

    .publication-description {
        font-size: 18px;
        line-height: 1.9;
    }

    .publication-link {
        font-size: 18px;
    }
}
