/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ----------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --purple: #79357E;
    --white: #F1F0F0;
    --grey: #C0C0C0;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
	margin-top: 75px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h1, h2 {
    text-align: center;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
}

.indented-text {
    text-indent: 1.5em;
}

.position-statement p {
	font-size: 1.25rem;
	font-style: italic;
}

nav a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

body {
    background-color: var(--grey);
    font-family: "Inter", sans-serif;
}

.order {
    width: 100%;
    padding-top: 100px;
}

section, .bio, .position-statement, .contact {
    width: 80%;
    margin: 0 auto 1.5rem auto;
}

#logo {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
}

nav {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#logo img {
    width: 48px;
    height: auto;
}

header nav {
    margin-left: 70px;
}

header nav ul {
    display: flex;
    gap: 1rem;
}

header nav ul li {
    background-color: var(--purple);
    padding: 15px 10px;
}

header nav a {
    text-decoration: none;
    color: var(--white);
}

.first, .second {
	position: fixed;
	top: 0px;
	right: 0px;
	border-radius: 0 0 0 10px;
	box-shadow: -5px 0px 5px -5px black;
}

.first {
	padding-right: 100px;
}

.headshot img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nameplate img {
    width: 100%;
    max-width: 330px;
    display: block;
    margin: auto auto 1.5rem auto;
}

.bio, .position-statement, .contact {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
}

.contact {
	text-align: center;
}

.cases {
    background: var(--white);
    width: 80%;
    margin: 1.5rem auto;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cases img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

.caselink {
    color: var(--purple);
	font-size: 1rem;
    text-decoration: none;
	font-weight: bold;
    text-align: center;
    display: block;
    margin: 0 auto;
}

img:not(.buh), .bio, .position-statement, .contact, .cases {
	border: 5px solid var(--purple);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 10px;
    background-color: var(--white);
    color: #000;
    text-decoration: none;
    z-index: 1001; 
}

.skip-link:focus {
    top: 0;
    outline: none;
}

@media (min-width: 900px) {

    .order {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
        padding-top: 0px;
    }

	h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.5rem;
    }

    nav a {
        font-size: 1.5rem;
    }

    .position-statement p {
        font-size: 1.75rem;
    }

	.first, .second {
		border-radius: 0 0 0 50px;
		box-shadow: -5px 0px 10px -5px black;
	}

	.first {
		padding-right: 250px;
	}

	header nav ul {
		gap: 0;
	}

	#logo img {
		width: 120px;
	}

	.headshot img {
		max-width: 400px;
	}

	.nameplate img {
		max-width: 410px;
	}

	header nav ul li {
		padding: 48px 50px;
	}

    .cases {
        flex-direction: column;
        align-items: center;
		max-width: 550px;
    }

    .cases img {
        width: 75%;
        margin: 0;
    }

    .cases div {
        width: 90%;
    }

    h1, h2 {
        text-align: center;
    }

    .cases p {
        text-indent: 1.5em;
    }

}