body {
  margin: 0;
  background-color: #a6192e; 
}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  background-color: #a6192e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.navbar .logo {
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}


.navbar nav a:hover {
  text-decoration: underline;
}

main {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: white;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background-color: #eee;
  color: #555;
  margin-top: 40px;
}




.hero {
  position: relative;
  width: 100vw;      
  height: 90vh;         
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 98%, 0 92%);
  margin: 0;
  padding: 0;
  z-index: 0;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;        
  height: 100%;
  margin-top: 60px; 
  object-fit: cover;
  display: block;
}






.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  z-index: 2;
}
.sdsu-header {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
}

.sdsu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  font-family: Arial, sans-serif;
}

.sdsu-left {
  display: flex;
  align-items: center;
}

.sdsu-left .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #a6192e;
  margin-right: 10px;
}

.sdsu-left .tagline {
  font-size: 1em;
  color: #333;
}

.sdsu-nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sdsu-nav a:hover {
  text-decoration: underline;
}


.sdsu-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
}

.sdsu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-family: Arial, sans-serif;
}

.sdsu-left {
  display: flex;
  align-items: center;
}

.sdsu-left .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #a6192e;
  margin-right: 10px;
}

.sdsu-left .tagline {
  font-size: 1em;
  color: #333;
}

.sdsu-nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.sdsu-nav a:hover {
  text-decoration: underline;
}


body {
  margin: 0;
  padding-top: 80px;
}





.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5em;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  z-index: 2;
}

.hero-wrapper {
  margin-top: 60px; 
}






.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  font-size: 3vw;
  font-weight: bold;
  background: rgba(0,0,0,0.2); /* soft transparent overlay */
}










.spotlight {
  max-width: 100vw;
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.spotlight .text, .spotlight .image {
  flex: 1 1 50%;
  padding: 40px;
}

.spotlight .text {
  background-color: #a6192e;
  color: white;
}

.spotlight .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.spotlight-wrapper {
  width: 100vw;
  margin: 0;
  padding: 60px 0;
  background-color: #a6192e;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.spotlight-card {
  width: 90%;
  max-width: 1200px;
  background-color: #a6192e;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.spotlight-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.spotlight-content.reverse {
  flex-direction: row-reverse;
}

.spotlight-text, .spotlight-image {
  flex: 1 1 50%;
  padding: 40px;
}

.spotlight-text h2 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.spotlight-text p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 4px solid white;
  border-radius: 0 0 0 20px;
}




.spotlight-full {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #a6192e;
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

.spotlight-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.spotlight-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.2em;
}

.spotlight-text h2 {
  font-weight: bold;
  letter-spacing: 1px;
}

.spotlight-image {
  flex: 1;
  min-width: 300px;
}

.spotlight-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.spotlight {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.spotlight-edge {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #a6192e;
  color: white;
}

.spotlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.spotlight-text, .spotlight-image {
  flex: 1 1 50%;
  padding: 60px;
  box-sizing: border-box;
}

.spotlight-text h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.spotlight-text p {
  font-size: 1.6em;
  line-height: 1.5;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-edge {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #a6192e;
  color: white;
}

.spotlight-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  height: 350px; /* control vertical size */
}

.spotlight-text, .spotlight-image {
  flex: 1 1 50%;
  padding: 40px;
  box-sizing: border-box;
}

.spotlight-text h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.spotlight-text p {
  font-size: 1.4em;
  line-height: 1.4;
  margin: 0;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-row {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #a6192e;
  color: white;
}

.spotlight-text {
  flex: 1 1 50%;
  padding: 60px;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-text h2 {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.spotlight-img {
  flex: 1 1 50%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.skyline-break {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  height: 400px; 
  background-image: url('san-diego-skyline-photo-l.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-intro {
  background-color: #a6192e;
  color: white;
  padding: 30px 20px 80px;
  text-align: center;
  position: relative;
  margin-top: 0; 
  z-index: 2;
  clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 0 100%);
}


.intro-content { max-width: 900px; margin: 0 auto; }
.hero-intro h1 { font-size: 2.8rem; margin-bottom: 20px; font-weight: bold; }
.hero-intro p  { font-size: 1.4rem; line-height: 1.6; }



.white-break {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: white;
  padding: 80px 20px;
  text-align: center;
}

.white-break-content {
  max-width: 1000px;
  margin: 0 auto;
}

.white-break h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
}

.white-break p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}


.red-gap-filler,
.red-v-section {
  background-color: #a6192e;
  color: white;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  margin-top: 40px; /* 👈 push it down – adjust this value */
}


.spotlight.reverse {
  flex-direction: row-reverse;
}




body {
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-bottom: 2px solid #990000;
}


.nav-left {
  display: flex;
  align-items: center;
}

.sdsu-logo {
  height: 40px;
  margin-right: 10px;
}


.nav-links a {
  color: black;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}


.people-header {
  background-color: #991b1b;
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.people-header h1 {
  font-size: 36px;
  margin: 0;
}

.people-header p {
  margin-top: 10px;
  font-size: 16px;
}

.people-grid {
  background-color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
}

.person {
  text-align: center;
  margin: 20px;
  text-decoration: none;
  color: black;
  transition: transform 0.3s, box-shadow 0.3s;
}

.person:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.person img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: 60% 30%; 
  border-radius: 50%;
  border: 4px solid #991b1b;
  transition: opacity 0.3s;
}

.person p {
  margin-top: 10px;
  font-weight: bold;
}

.person.top {
  margin-bottom: 30px;
}

.students {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  background-color: #f0f0f0;
  color: #333;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

body, html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  color: black;
  font-family: sans-serif;
}

.people-header {
  background-color: #990000;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px; 
}



.youtube-image {
  width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.youtube-button:hover .youtube-image,
.youtube-button:focus .youtube-image {
  border-color: #ccc; 
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}



