/* =========================================================
   IEEE GSB @ OSU THEME
   Scarlet + gray + subtle IEEE blue
   Fully light / dark mode compatible
   ========================================================= */


/* =========================================================
   THEME VARIABLES
   ========================================================= */

/* DARK MODE (default) */
:root {
  /* Brand */
  --osu-scarlet: #BB0000;
  --osu-scarlet-dark: #8A0000;
  --ieee-blue: #00629B;

  /* Backgrounds */
  --bg: #1B1B1B;
  --surface: #202020;
  --surface-2: #262626;

  /* Text */
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.72);

  /* Borders */
  --border: rgba(255, 255, 255, 0.12);

  /* Links */
  --link: var(--ieee-blue);
  --link-hover: var(--osu-scarlet);
}
/* =========================================================
   TYPOGRAPHY SCALE
   ========================================================= */

html {
  font-size: 18px; /* default browser is 16px */
}


/* LIGHT MODE */
[data-theme="light"] {
  --bg: #ffffff;
  --surface: #f4f4f4;
  --surface-2: #ffffff;

  --text: #1B1B1B;
  --text-muted: #444444;

  --border: rgba(0, 0, 0, 0.12);
}


/* =========================================================
   BASE
   ========================================================= */

html,
body {
  background-color: var(--bg) !important;
  color: var(--text) !important;
}

p,
li {
  color: var(--text-muted) !important;
  line-height: 1.65;
}

p,
li {
  font-size: 1.05rem;
}



/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5 {
  color: var(--text) !important;
}

h1 {
  font-weight: 800;
}

h2 {
  margin-top: 1.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(187, 0, 0, 0.35);
}
/* =========================================================
   HEADING SIZES
   ========================================================= */

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.15rem;
}
/* =========================================================
   HEADING SIZES
   ========================================================= */

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.15rem;
}



/* =========================================================
   LINKS
   ========================================================= */

a,
a:visited {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--link-hover);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  background-color: var(--bg) !important;
  border-bottom: 1px solid var(--border);
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--text) !important;
  font-weight: 700;
}

.navbar .nav-link {
  color: var(--text-muted) !important;
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: var(--text) !important;
}
.navbar .nav-link {
  font-size: 1.05rem;
}

.navbar .navbar-brand {
  font-size: 1.15rem;
}
/* Active navbar link */
.navbar .nav-link.active {
  color: var(--text) !important;
  border-bottom: 2px solid var(--osu-scarlet);
}




/* =========================================================
   LAYOUT
   ========================================================= */

.container,
.container-fluid {
  max-width: 1100px;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.gsb-accent-bar {
  height: 6px;
  width: 80px;
  background: var(--osu-scarlet);
  margin: 24px 0 32px 0;
  border-radius: 4px;
}

.gsb-hero {
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    var(--surface-2) 100%
  );
  padding: 48px 32px;
  border-radius: 16px;
  margin-bottom: 56px;
  text-align: center;
  transition: background-color 0.25s ease;
}

.gsb-hero-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gsb-logo {
  max-height: 120px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.gsb-hero-title {
  font-weight: 800;
  margin-bottom: 16px;
}

.gsb-hero-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
}


/* =========================================================
   CARDS
   ========================================================= */

.card,
.panel,
.well {
  background-color: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
}

.gsb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.gsb-card {
  padding: 24px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  border-radius: 10px;
  font-weight: 700;
}

.btn-primary {
  background-color: var(--osu-scarlet) !important;
  border-color: var(--osu-scarlet) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--osu-scarlet-dark) !important;
  border-color: var(--osu-scarlet-dark) !important;
}

.btn-secondary,
.btn-default {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer,
.footer {
  background-color: var(--bg) !important;
  border-top: 1px solid var(--border);
  color: var(--text-muted) !important;
}

footer a,
.footer a {
  color: var(--ieee-blue);
}

footer a:hover,
.footer a:hover {
  color: var(--osu-scarlet);
}


/* =========================================================
   UTILITIES
   ========================================================= */

.gsb-accent {
  color: var(--osu-scarlet) !important;
}

.gsb-accent-ieee {
  color: var(--ieee-blue) !important;
}


/* =========================================================
   TEAM GRID
   ========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.team-avatar {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--border);
}

/* =========================================================
   FOOTER POLISH (GRID-BASED)
   ========================================================= */

.footer {
  padding: 48px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);

  font-size: 22px;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  background: var(--osu-scarlet);
  color: #fff;
  border-color: var(--osu-scarlet);
}

/* =========================================================
   FOOTER LAYOUT
   ========================================================= */

.footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

/* =========================================================
   STAY CONNECTED LINKS
   ========================================================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-link i {
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.footer-link:hover {
  color: var(--osu-scarlet);
}

/* =========================================================
   ADDRESS SECTION
   ========================================================= */

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-address-line i {
  font-size: 18px;
  width: 22px;
  text-align: center;
  margin-top: 2px;
  color: var(--text);
}

/* =========================================================
   MOBILE STACKING
   ========================================================= */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* =========================================================
   BRUTUS BUCKEYE FLOATING MASCOT (GLOBAL)
   ========================================================= */





/* =========================================================
   HERO BUBBLE SYSTEM
   ========================================================= */

.hero-bubbles {
  position: relative;
  overflow: hidden;
}

/* Keep text/logos above bubbles */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Bubble layer */
.bubble-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Base bubble */
.bubble {
  position: absolute;
  bottom: -160px;
  border-radius: 50%;
  opacity: 0.35;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.25)
  );

  animation: bubble-float linear infinite;
}


/* Bubble sizes */
.bubble.small {
  width: 60px;
  height: 60px;
  animation-duration: 16s;
}

.bubble.medium {
  width: 110px;
  height: 110px;
  animation-duration: 22s;
}

.bubble.large {
  width: 180px;
  height: 180px;
  animation-duration: 28s;
}

/* Bubble float */
@keyframes bubble-float {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-180vh) translateX(-40px);
  }
}



/* =========================================================
   BRUTUS INSIDE HERO BUBBLE
   ========================================================= */

.brutus-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 0 22px rgba(187,0,0,0.35);
}

.brutus-bubble img {
  width: 90px;
  animation: brutus-bounce 1.8s ease-in-out infinite;
}

@keyframes brutus-bounce {
  0%   { transform: translateY(0) rotate(-2deg); }
  50%  { transform: translateY(-14px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}

[data-theme="light"] .bubble {
  opacity: 0.45;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,0.98),
    rgba(200,200,200,0.35)
  );
}

/* Dark mode boost */
[data-theme="dark"] .brutus-bubble {
  background: rgba(255,255,255,0.96);
  box-shadow:
    0 18px 42px rgba(0,0,0,0.65),
    0 0 20px rgba(187,0,0,0.25);
}

[data-theme="dark"] .brutus-bubble img {
  filter: brightness(1.2) contrast(1.15) saturate(1.1);
}


/* Dark mode bubbles (scarlet tint) */
[data-theme="dark"] .bubble {
  opacity: 0.38;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,255,255,0.25),
    rgba(187,0,0,0.18),
    rgba(187,0,0,0.08)
  );
}

/* Mobile tuning */
@media (max-width: 768px) {
  .bubble.large {
    width: 140px;
    height: 140px;
  }

  .brutus-bubble img {
    width: 100px;
  }
}








