/* General Reset */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7f9;
}

.container {
    width: 85%;
	place-items: center;
    max-width: 1100px;
    margin: auto;
}

.container-two {
    width: 85%;
	place-items: center;
    max-width: 1100px;
    margin-top: 80px;
	margin:auto;
}

.container-three {
    width: 85%;
	place-items: start;
    max-width: 1100px;
    margin: auto;
}

/* Header */
header {
    background-color: #006747; /* USF green-inspired */
    color: white;
    padding: 50px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Navigation */
nav {
    background: #004c36;
    text-align: center;
    padding: 15px 0;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('../images/research.png');
	background-position:  center;
	background-repeat: no-repeat;
	/*background-size: cover;*/ 
    color: white;
    padding: 10px 10px 10px 10px;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 25px 15px 25px 15px;
	color: white;
}

/* Content Section */
section {
    padding: 60px 0;
    background: white;
    margin-bottom: 20px;
}

section h2 {
    margin-top: 0;
	text-align: center;
    color: #006747;
}

/* Footer */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}

/* Research Page */

.research-intro {
    margin-bottom: 60px;
}

.research-intro h2 {
    color: #006747;

}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.research-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.research-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
    color: #004c36;
}

nav a.active {
    border-bottom: 3px solid #ffffff;
    padding-bottom: 5px;
}

/* Home Page Image */

.home-image {
    margin-bottom: 40px;
}

.home-image img {
	display: block;
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	margin: 0 auto;
}

/* People Page */

.people-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
	grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.person-card {
    text-align: justify;
}

.person-card img {
	display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
	margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.person-card h3 {
    margin-bottom: 5px;
	text-align: center;
}

.role {
    font-weight: 600;
    color: #006747;
    margin-bottom: 10px;
	text-align: center;
}


.people-list{
	display: list-item;
    width: 100%; /* Optional: make the table span the full width */
    /*border-collapse: collapse; /* Optional: collapse borders into a single line */
    /*list-style-type: none; /* Removes default list bullets */
    padding: 0;
    margin: 0;
}

/*.table-row{
	display: table-row;
} */

/*.table-cell {
    display: table-cell;
    padding: 10px; /* Optional: add spacing within cells */
    /*border: 1px solid #ccc; */ /* Optional: add borders */
    /*vertical-align: top; */
/*}*/

/* Optional: style the first row differently for a header effect */
/*.table-row:first-child .table-cell {
    font-weight: bold;
    background-color: #f2f2f2;
} */

.name{
	font-weight: 500;	
}

.degree{
	font-size: 0.95em;
	font-style: italic;
	color: dimgray
}

.year{
	font-size: 0.95em;
}

/* Publication section */

.publications {
    max-width: 900px;
    margin-top: 20px;
}

/* Ordered list for numbering */

.publications ol {
    padding-left: 35px;
}

/* Individual publication */

.publication {
    margin-bottom: 20px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

/* Hover highlight */

.publication:hover {
    background-color: #f5f5f5;
}

/* Title */

.publication h3 {
    margin: 0;
    font-size: 1.05em;
    font-weight: 600;
}

.publication h3 a {
    text-decoration: none;
}

.publication h3 a:hover {
    text-decoration: underline;
}

/* Year + authors */

.publication .meta {
    margin: 4px 0;
    font-size: 0.95em;
}

/* Book */
.publication .book {
	font-size: 0.95em;
    margin: 2px 0;
}
.publication .publisher {
	font-style: italic;
	font-size: 0.95em;
    margin: 2px 0;
}

/* Journal */

.publication .journal {
    font-style: italic;
    margin: 2px 0;
}

/* Links */

.publication .links {
    font-size: 0.9em;
}

.publication .links a {
    text-decoration: none;
}

.publication .links a:hover {
    text-decoration: underline;
}

/* Highlight your name */

.highlight-name {
    font-weight: bold;
}

/* Section headers */

.publications h2 {
    margin-top: 35px;
}

/* Contact */

.contact-target{
	font-weight: 800;
	font-size: 1.2em
}