@import url('https://rsms.me/inter/inter.css');

:root {
    --primary-color: #2563eb;
    --primary-hover-color: #1e40af;
    --secondary-color: #d1d5db;
    --secondary-hover-color: #e5e7eb;
    --text-color: #4b5563;
    --heading-color: #1f2937;
    --bg-color: #f3f4f6;
    --white-color: #fff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    padding-top: 6rem; /* Space for the fixed header */
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.logo:hover {
    background-color: var(--secondary-hover-color);
}

.desktop-menu {
    display: none;
}

.desktop-menu .nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    transition: color 0.3s ease;
}

.desktop-menu .nav-link:hover {
    color: var(--primary-color);
}

.hamburger-button {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}
.hamburger-icon.active .top-bar {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger-icon.active .middle-bar {
    opacity: 0;
}
.hamburger-icon.active .bottom-bar {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    text-align: center;
    padding-bottom: 1rem;
    box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.05);
}

.mobile-menu.is-visible {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu .nav-link:hover {
    background-color: var(--secondary-hover-color);
}

.main-content {
    padding: 2rem 1rem;
}

.section-block {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
}

.section-block h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.intro-section {
    margin-bottom: 1.5rem;
}

.intro-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--heading-color);
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.125rem;
    color: var(--text-color);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.footer {
    background-color: var(--heading-color);
    color: var(--white-color);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.headshot-container {
    position: relative;
    align: left;
    text-align: center;
    width: 32%;
    max-width: 400px;
}


.headshot-text {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 3px;
}


.person-container {
    display: flex;
    flex-direction: column;
    gap: 0 px;
}


.person-image img {
    display: none;
}


.person-text {
    flex-grow: 1;
}

.person-text p {
    margin: 0px;
    padding: 0px 0px 12px 0px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .hamburger-button, .mobile-menu {
        display: none;
    }
    .desktop-menu {
        display: flex;
        gap: 1.5rem;
    }
    .nav {
        padding: 1rem 1rem;
    }
    .main-content {
        padding: 2rem 2rem;
    }
    .intro-section h1 {
        font-size: 3rem;
    }
    .section-block {
        padding: 2.5rem;
    }
    .person-container {
	flex-direction: row;
	gap: 64 px;
    }
    .person-image img {
	display: block;
    }
    .person-text {
	flex-grow: 1;
	margin: 0px 0px 0px 32px;
    }
    .person-text p {
	margin: 0px;
	padding: 0px 0px 12px 0px;
    }
}
/* Styles the link for the current page */
a[aria-current="page"] {
  pointer-events: none; /* Link no clickable */
  cursor: default; /* Cursor is default pointer */
  text-decoration: none; /* No underline */
  color: var(--inactive-link-color);
}
