:root {
  --ucf-black: #000000;
  --ucf-gold: #FFC904;
  --ucf-white: #FFFFFF;
}

body {
  background: var(--ucf-white);
  color: var(--ucf-black);
  font-family: Arial, sans-serif;
  margin: 0;
}

header {
  background: var(--ucf-black);
  color: var(--ucf-gold);
  padding: 15px;
  text-align: center;
}

nav {
  background: var(--ucf-gold);
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

nav a {
  color: var(--ucf-black);
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  background: var(--ucf-black);
  color: var(--ucf-gold);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none; 
}

main {
  padding: 40px;
  max-width: 900px;
  margin: auto;
}

h2 {
  text-align: center;
  border-bottom: 2px solid var(--ucf-gold);
  padding-bottom: 5px;
}

p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.members-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.member-card {
  background: var(--ucf-white);
  border: 2px solid var(--ucf-gold);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.member-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--ucf-gold);
  margin-bottom: 15px;
}

.member-card h3 {
  margin: 10px 0 5px 0;
  color: var(--ucf-black);
}

.member-card p {
  margin: 6px 0;
  font-size: 0.95em;
}

.doc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.doc-card {
  background: var(--ucf-white);
  border: 2px solid var(--ucf-gold);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.doc-card h3 {
  color: var(--ucf-black);
  margin-bottom: 10px;
}

.doc-card p {
  font-size: 0.9em;
  margin-bottom: 15px;
}

.doc-card a {
  color: var(--ucf-black);
  font-weight: bold;
  text-decoration: none;
  border: 2px solid var(--ucf-gold);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-block;
  background: var(--ucf-gold);
}

.doc-card a:hover {
  background: var(--ucf-black);
  color: var(--ucf-gold);
  border-color: var(--ucf-black);
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.video-card {
  background: var(--ucf-white);
  border: 2px solid var(--ucf-gold);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 480px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.video-card h3 {
  color: var(--ucf-black);
  margin-bottom: 10px;
}

.video-card p {
  font-size: 0.9em;
  margin-top: 10px;
}

/* Responsive video frame */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
