@charset "UTF-8";
/* ===========================
   Base / Reset
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'proximamodules-nova', sans-serif;
  scroll-padding-top: 90px;
}

.red { color: red; }
.smallText { font-size: .8em; }
.placeholderText { color: #b3b0b0; }

/* Global link colors (site-wide defaults) */
a:link    { color: #32515d; }
a:visited { color: #32515d; }
a:hover   { color: #4d7b8c; }
a:active  { color: #ff0000; }


/* ===========================
   Coming Soon Page Styles
   =========================== */

.comingSoon {
  display: inline-block;
  padding: 7vw 0;
  text-align: center;
  color: #fff;
  background-color: #39505c;
  background-image: linear-gradient(#39505c, #0a0a0a);
  width: 100%;
  height: 100%;
  align-items: center;
  font-size: 6vw;
  font-weight: 800;
  line-height: 6vw;
  vertical-align: middle;
}

.comingSoon img { width: 22vw; }

.comingSoonYellow {
  font-size: .55em;
  color: #fff;
}

.comingSoonFiller {
  height: 1000px;
  background-color: #0a0a0a;
}


/* ===========================
   Layout: Nav / Header
   =========================== */

.nav-top-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 30px;
  background-color: #1a2b32;
  z-index: 999;
}

nav {
  position: fixed;
  top: 30px; left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

.nav-gradient {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #32515D, #233941);
  z-index: -1;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0 40px;
}

.logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 100px;
  z-index: 200000;
  left: 40px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 120px;
  font-size: 1rem;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 0.44rem;
  transition: background 0.3s, color 0.3s;
}

.menu a:hover,
.menu a.active {
  background-color: #111b20;
  color: white;
  border-radius: 4px;
}

.menu-toggle {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: none;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown > a {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background-color: #22363e;
  min-width: 220px;
  z-index: 1;
  flex-direction: column;
  line-height: 1.1em;
}

.dropdown-content a {
  padding: 0.5rem 1rem;
  color: white;
}

/* Only allow hover dropdowns on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .dropdown:hover .dropdown-content { display: flex; }
}


/* ===========================
   Hero
   =========================== */

.heroHomeMobile { display: none; }

.hero {
  display: block;
  position: relative;
  width: 100%;
  border-bottom: #d8b26b 4px solid;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 90px;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.heroHome {
  display: block;
  position: relative;
  width: 100%;
  border-bottom: #d8b26b 4px solid;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 90px;
}

.heroHome img {
  width: 100%;
  height: auto;
  display: block;
}




/* ===========================
   Typography & Sections
   =========================== */

section { padding: 4vw 6vw; }

.greenBG { background-color: #e5f4f9; }

h1, h2, h3 {
  font-family: "calluna", serif;
  font-weight: 700;
  font-style: normal;
  color: #32515d;
  text-transform: uppercase;
  margin-bottom: 6px;
}

h1 { font-size: 36px; line-height: 1em; }
h2 { font-size: 25px; }

p { margin-bottom: 15px; }


/* ===========================
   Footer
   =========================== */

footer {
  color: #fff; /* default footer text is white */
  font-size: .8em;
  padding: 3vw 5vw;
  background: linear-gradient(to bottom, #32515D, #233941);
}

.footerBoxes {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.coeBoxes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coeBox { margin: 0 3vw; width: 50%; }
.coeBox img { width: 144px; margin-left: -10px; }
.lacoe img { width: 200px; }

.copyright {
  width: 100%;
  text-align: center;
  margin: 3vw 0 0 0;
}


/* ===========================
   Buttons / Links
   =========================== */

/* Grow-only utility (works for <a> or <button>) */
.btn-grow {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transform: scale(1);
  transition: transform 160ms ease;
}
.btn-grow:hover,
.btn-grow:focus-visible { transform: scale(1.06); }
.btn-grow:active { transform: scale(0.98); }

@media (prefers-reduced-motion: reduce) {
  .btn-grow { transition: none; }
}

/* Mailing List “button” (black text in all states) */
.mailingList {
  width: 140px;
  background-color: #DCB874;
  padding: 11px 5px 15px 5px;
  border-radius: 12px;
  border: 4px solid #fff;
  font-size: 1.15em;
  text-align: center;
  box-shadow: 0 6px 1px rgba(0, 0, 0, 0.3);
  color: #000;
  text-decoration: none; }

.mailingList:link,
.mailingList:visited,
.mailingList:hover,
.mailingList:active,
.mailingList:focus-visible {
  color: #000;
  text-decoration: none;
}


/* ===========================
   Modules / Tables / Cards
   =========================== */

.moduleSection {
  width: 100%;
  background-color: #fbf7f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.module {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: center;
  padding: 2vw 0 4vw 0;
  border-radius: 22px;
}

.moduleCenterer { width: 80%; }

.moduleHeader {
  width: 100%;
  background-color: #32515d;
  padding: .75vw 1.5vw .35vw;
  border-radius: 7px 7px 0 0;
  border-bottom: 4px solid #d8b26a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.moduleHeader h3 { color: #fff; }

.module table {
  width: 100%;
  text-align: left;
  padding: 10px;
  margin-bottom: 25px;
  border: 1px solid #CCC;
  border-collapse: collapse;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.module table:last-of-type { margin-bottom: 0; }

.module table tbody tr:nth-child(even) { background-color: #e5f4f9; }
.module table tbody tr:nth-child(odd)  { background-color: #ffffff; }

.module th { padding: 1vw 1.5vw; width: 50%; }
.module td { padding: 1vw 1.5vw; }

.module ul li { margin-left: 15px; }


/* ===========================
   Intro / Spotlight
   =========================== */

.collegeLogo img { width: 250px; margin-bottom: 2.5vw; }

.introElements {
  width: 80%;
  display: flex;
  text-align: left;
  justify-content: space-around;
  align-items: center;
}

.intro { width: 100%; }

.programLogo { width: 25%; }
.programLogo img {
  width: 100%;
  min-width: 200px;
  padding-left: 20px;
}

.spotlight {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  background-color: #e5f4f9;
  padding: 32px 37px;
  border-radius: 22px;
  margin: 0 0 27px 0;
}
.spotlightPhoto img {
  width: 175px;
  margin-bottom: 15px;
}

.goldBackground { background-color: #f5eee1; }


/* ===========================
   Teams / Members
   =========================== */

.teams {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.teamLogo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  margin-top: .5vw;
  padding: 0;
}
.teamLogo img { width: 70%; max-width: 200px; }

.teamSCOElogo img { width: 40%; }

.teamLACOE {
  width: 50%;
  background-color: #f5eee1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1vw;
  padding: 2vw;
  border-radius: 1.25vw;
  justify-content: space-evenly;
  align-items: flex-start;
}

.teamSCOE {
  width: 50%;
  background-color: #e5f4f9;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1vw;
  padding: 2vw;
  border-radius: 1.25vw;
  justify-content: space-evenly;
}

.teamMember {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47%;
  max-width: 150px;
}

.teamPhoto img {
  width: 100%;
  margin-bottom: 10px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}

.teamText {
  width: 95%;
  font-size: clamp(10px, 1.25vw, 10px);
  margin-bottom: 20px;
}
.teamText h2 {
  font-size: clamp(14px, 1.5vw, 14px);
  margin-bottom: 0;
}

.members {
  padding: 4vw;
  padding-top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.member {
  width: 40%;
  background-color: #fbf7f0;
  border: 1px #cfcfcf solid;
  display: flex;
  flex-direction: column;
  margin: 1vw;
  padding: 0;
  border-radius: 1.25vw;
  justify-content: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.member h2, .member h3 {
  margin-bottom: 0;
  line-height: 1.1em;
}

.memberLogo {
  width: 100%;
  text-align: center;
  border-bottom: 1px #ccc solid;
  padding: 22px;
  align-items: center;
  background-color: #e5f4f9;
  border-radius: 1.25vw 1.25vw 0 0;
}
.memberLogo img {
  width: 200px;
  mix-blend-mode: multiply;
}

.memberInfo { padding: 22px; }
.members b { margin-top: 25px; }


/* ===========================
   Maps / Images
   =========================== */

.collegeMap {
  width: 100%;
  text-align: center;
  padding: 0 2vw 4vw 2vw;
}
.collegeMap img {
  width: 50%;
  max-height: 85vh;
}


/* ===========================
   Social
   =========================== */

.socialBoxes {
  display: none;
  width: 100%;
  justify-content: center;
}
.socialBoxes img {
  width: 66px;
  margin: 3vw 1vw 0 1vw;
}

.dropdown.open .dropdown-content { display: flex; }

.dropdown:focus-within .dropdown-content,
.dropdown > a:focus + .dropdown-content { display: flex; }


/* ===========================
   Responsive
   =========================== */

/* ≤ 768px */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body { font-size: 16px; }

  nav { background-color: #33515c !important; } /* keep existing behavior */

  .menu {
    position: fixed;
    top: 90px; left: 0;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    background-color: #33515c;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1001;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu.show { display: flex; }

  .menu a,
  .dropdown-content a {
    font-size: 1rem !important;
    line-height: 1.5;
    padding: 0.75rem 1.25rem;
    width: 100%;
    text-align: left;
  }

  .dropdown {
    position: relative;
    width: 100%;
    z-index: 2;
  }
  .dropdown > a { width: 100%; }

  .dropdown-content {
    display: none;
    position: static !important;
    width: 100% !important;
    background-color: #26363d !important;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0; margin: 0;
    z-index: 2;
  }
  .dropdown.open .dropdown-content { display: flex; }

  .dropdown-content a {
    display: block;
    padding: 0.3rem 1rem 0.3rem 10%;
    background-color: #26363d !important;
    color: white;
  }
  .dropdown-content a:hover { background-color: #131b20 !important; }

  .menu a.active { background-color: transparent !important; }
  .menu a.active:hover { background-color: #131b20 !important; }

  .menu-toggle { display: block; }

  .logo {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .teamMember { width: 60%; max-width: 350px; }
  .teamSCOElogo img { width: 50%; }
}

/* ≤ 650px */
@media (max-width: 650px) {
  .memberLogo img {
    width: 150px;
    mix-blend-mode: multiply;
  }
}

/* ≤ 600px */
@media (max-width: 600px) {
  
   section { padding: 6vw 6vw; }
	
   .introElements { flex-direction: column; }

  .programLogo { width: 100%; text-align: center; }
  .programLogo img { padding-left: 0; width: 200px; }

  .intro { order: 2; width: 100%; }

  .spotlight { flex-direction: column; }
  .spotlightPhoto { margin-right: 0; }
  .teamPhoto img { margin: 0 0 4px 0; }

  .welcome { flex-direction: column; }
  .welcomeLogo { width: 50%; padding-left: 0; }

  .members {
    padding: 4vw;
    flex-direction: column;
  }
  .member {
    width: 100%;
    margin-bottom: 25px;
  }
  .memberLogo img {
    width: 80%;
    mix-blend-mode: multiply;
  }

  .collegeMap {
    width: 100%;
    text-align: center;
    padding: 0 0 8vw 0;
  }
  .collegeMap img { width: 80%; }
}

/* ≤ 450px */
@media (max-width: 450px) {
  
.heroHomeMobile {
  display: block;
  width: 100%;
  border-bottom: #d8b26b 4px solid;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 90px;
}
	
.heroHomeMobile img {
  width: 100%;
  height: auto;
  display: block;
}

.heroHome { display: none; }
	
.introElements { width: 95%; }

.moduleSection { padding-top: 24px; }

.moduleCenterer {
    font-size: 3vw;
    width: 95%;
  }
	
.module { width: 110%; }

.teamSection { padding: 20px 5px; }
.teamH1 { margin-left: 20px; }

.teamLACOE { width: 50%; padding: 2vw 0; }
.teamSCOE { width: 50%; padding: 2vw 0; }

.teamMember { width: 80%; }

.footerBoxes { flex-direction: column; }

.mailingList { margin-top: 22px; margin-bottom: 12px; }
	
.moduleHeader { padding: 2vw 1.5vw .35vw 2vw;
}
	
	
}

/* ≥ 1100px */
@media (min-width: 1100px) {
  .menu { font-size: 1.1rem; }
}
