/* Additional styles outside of Tailwind */
/* Included async in the document head */

.profile-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.profile-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.award-card {
    background: #1A2B42;
    border-left: 4px solid #C9A84C;
    border-radius: 0 8px 8px 0;
    padding: 2rem;
}

.section-padding {
    padding-top: clamp(80px, 10vw, 130px);
    padding-bottom: clamp(80px, 10vw, 130px);
}

/* Nav & Mobile Menu Transitions */
#navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(15, 27, 45, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#mobile-nav {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

#mobile-nav.open {
    transform: translateX(0);
}

/* Hero Overlay Animation (Optional polish) */
.hero-content {
    animation: fadeInUp 1s ease-out forwards;
}

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

/* Back to top button */
#back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* Emphasize Pull Quote */
.pull-quote {
    font-family: '"Playfair Display"', serif;
    font-style: italic;
    color: #A89BC2;
}
