/* ---------- General Page Layout ---------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('https://uofafurs.neocities.org/Images/Site/JPG/BGMain.jpg') no-repeat center center fixed;
  background-size: cover;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
  padding: 0px;
}

/* ---------- Banner ---------- */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 1;
  overflow: hidden;
}

/* Background art */
.banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('/Images/Site/PNG/BgBanner.png') center / cover no-repeat;
  z-index: 1;
}

/* Logo + text. I can't say I know what I'm doing! */
.banner-logo {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 70%;
  max-width: 30%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}


.banner-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('/Images/Site/PNG/BorderBanner.png') center / contain no-repeat;;
  z-index: 3;
  background-size: 100% 100%;
  pointer-events: none;
}

/* ---------- Nav -----------*/
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  position: relative;
  top: -1px;
  z-index: 10;
  background-color: #025D34;
  padding: 10px 20px;
  gap: 10px;
}

.nav-left a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  background-color: rgba(2, 93, 52, 0.85);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: all 0.2s ease-in-out;
}

.nav-left a:hover {
  background-color: rgba(255, 64, 64, 0.9);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 8px rgba(0,0,0,0.35);
}

.nav-left a:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 3px 4px rgba(0,0,0,0.3);
}

/* ---------- Profile Container ---------- */
.oc-profile {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  max-width: 85vw;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

/* ---------- Header Section ---------- */
.oc-header {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

/* ---------- Image and all the shit that comes with THAT territory ---------- */
.oc-image { 
  width: 200px; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 12px; 
  box-shadow: 0 0 10px rgba(0,0,0,0.3); 
  transition: transform 0.4s ease, 
  box-shadow 0.3s ease; 
  cursor: zoom-in; 
  }

.oc-image:focus {
  outline: none;
  transform: scale(2);
  cursor: zoom-out;
  z-index: 10;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.oc-image:focus::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 99;
}

.oc-image:focus {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: 90vh;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  object-fit: contain;
  cursor: zoom-out;
  z-index: 100;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* ---------- Main info config ---------- */
.oc-info {
  flex: 1;
}

.oc-name {
  font-size: 2.2em;
  margin: 0;
  color: #222;
}

.oc-alias {
  color: #555;
  margin-top: 6px;
}

/* ---------- Content Sections ---------- */
.oc-section {
  margin-bottom: 25px;
}

.oc-section h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #222;
  border-left: 4px solid #ff4040;
  padding-left: 10px;
}

.oc-section p,
.oc-section ul {
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.oc-section ul {
  list-style: none;
  padding: 0;
}

.oc-section ul li {
  background: rgba(255, 64, 64, 0.1);
  border-left: 3px solid #ff4040;
  padding: 8px 12px;
  margin-bottom: 6px;
  border-radius: 6px;
}

.oc-section.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.oc-section.images img.oc-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.oc-section.images img.oc-image:active {
  transform: scale(2);
  cursor: zoom-out;
  z-index: 100;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 768px) {
  .oc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .oc-image {
    width: 100%;
    height: auto;
  }

  .oc-info {
    text-align: center;
  }
}

/* ---------- Gallery Section ---------- */
.gallery.images .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.gallery.images .oc-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.gallery.images .oc-image:active {
  transform: scale(2);
  cursor: zoom-out;
  z-index: 100;
  position: relative;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}



