@charset "UTF-8";

/* =========================
   Theme tokens (resume + GM)
   ========================= */
:root{
  --brand: #46add2;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 12px 36px rgba(0,0,0,.08);
  --card: rgba(255,255,255,.86);
}

/* =========================
   Base
   ========================= */
html, body{
  height: 100%;
}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 10% 12%, rgba(214, 133, 214, .22), transparent 62%),
    radial-gradient(880px 520px at 92% 18%, rgba(70, 173, 210, .18), transparent 60%),
    radial-gradient(820px 520px at 70% 92%, rgba(130, 190, 255, .14), transparent 60%),
    radial-gradient(760px 420px at 26% 92%, rgba(223, 148, 53, .12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

/* =========================
   Layout shell
   ========================= */
.site-shell{
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 100vh;
}

@media (max-width: 991.98px){
  .site-shell{
    grid-template-columns: 1fr;
  }
  .main{
    padding-top: 64px; /* room for mobile top bar */
  }
}

/* =========================
   Desktop sidebar (resume style)
   ========================= */
.sidebar{
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px;
  border-right: 1px solid rgba(11,16,32,.10);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sidebar-inner{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-top{
  text-align: center;
  padding: 10px 10px 6px;
}

.sidebar-title{
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.image.maggie img{
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 11px; 
  /*border-radius: 999px; round */
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.sidebar-nav{
  display: grid;
  gap: 6px;
  padding: 6px;
}

.sidebar-nav .nav-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(11,16,32,.86);
  font-weight: 650;
}

.sidebar-nav .nav-link i{
  width: 18px;
  text-align: center;
  color: rgba(11,16,32,.72);
}

.sidebar-nav .nav-link:hover{
  background: rgba(15, 23, 42, 0.06);
  color: rgba(11,16,32,.95);
}

.sidebar-nav .nav-link.active{
  background: rgba(70, 173, 210, .14);
  border: 1px solid rgba(70, 173, 210, .26);
}

.sidebar-bottom{
  margin-top: auto;
  padding-top: 8px;
}

.icons a{
  text-decoration: none;
  color: rgba(11,16,32,.70);
}
.icons a:hover{
  color: rgba(11,16,32,.95);
}

/* =========================
   Mobile top bar (GM vibe)
   ========================= */
.mobile-top{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,16,32,.10);
}

.mobile-brand{
  font-weight: 800;
  letter-spacing: .2px;
}

/* =========================
   Hero banner (resume style)
   ========================= */
.hero{
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid rgba(11,16,32,.10);
}

.hero-inner{
  max-width: 1050px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .32rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(223,148,53,.28);
  background: rgba(223,148,53,.14);
  color: rgba(11,16,32,.82);
  font-size: .85rem;
  font-weight: 800;
  width: fit-content;
}

.hero-title{
  margin: 14px 0 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.hero-subtitle{
  margin-top: 10px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 650;
  color: rgba(17,24,39,.86);
}

.hero-card{
  margin-top: 16px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.15rem;
}

/* =========================
   Main section + cards
   ========================= */
.section{
  padding: 2.25rem 0 1.25rem;
}

.content-card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.15rem;
  margin-bottom: 18px;
}

.card-title{
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* =========================
   Footer
   ========================= */
.site-footer{
  margin-top: 1.75rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(11,16,32,.10);
  background: rgba(250,250,250,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-footer .menu{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.site-footer a{
  color: rgba(11,16,32,.86);
  text-decoration: none;
  font-weight: 650;
}
.site-footer a:hover{
  text-decoration: underline;
}

/* =========================
   GM slide-out menu (mobile)
   ========================= */
.menu-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.90);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.menu-panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 92vw);
  z-index: 1200;

  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.55);

  transform: translateX(110%);
  transition: transform .25s ease;
  box-shadow: -24px 0 60px rgba(0,0,0,0.14);
  padding: 18px;
}

.menu-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11,16,32,.10);
  margin-bottom: 12px;
}

.menu-title{
  font-weight: 850;
  font-size: 1.05rem;
  color: #0b1020;
  margin: 0;
}

.menu-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.menu-panel a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(11,16,32,.86);
  text-decoration: none !important;
  font-weight: 700;
}

.menu-panel a:hover{
  background: rgba(15, 23, 42, 0.06);
  color: rgba(11,16,32,.95);
}

.menu-hr{
  border: 0;
  border-top: 1px solid rgba(11,16,32,.10);
  margin: 12px 0;
}

.menu-social{
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.icon-link{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border: 1px solid rgba(11,16,32,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  color: rgba(11,16,32,.86);
  text-decoration: none;
  font-weight: 700;
}

.icon-link:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border-color: rgba(11,16,32,.16);
}

/* Open state */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .menu-panel{
  transform: translateX(0);
}
body.menu-open{
  overflow: hidden;
}


/* Visual Algorithms: prevent link-blue titles inside clickable cards */
.content-card a { 
  color: inherit;
}

.content-card a:hover,
.content-card a:focus {
  color: inherit;
}


/* buton learn more */

.btn-pink{
  color:#fff;
  border:0;
  background-image: linear-gradient(135deg, #e993bd 0%, #a74c75 100%);
  box-shadow: 0 10px 22px rgba(139, 71, 102, 0.22);
}
.btn-pink:hover{
  color:#fff;
  background-image: linear-gradient(135deg, #b18d9d 0%, #944367 100%);
  transform: translateY(-1px);
}
.btn-pink:active{ transform: translateY(0); }
.btn-pink:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(225, 87, 150, .28), 0 8px 18px rgba(139, 71, 102, 0.12);
}

/*
.btn-pink{
  color:#fff;
  border:0;
  background-image: linear-gradient(135deg, #46add2 0%, #eb7dae 100%);
  box-shadow: 0 10px 22px rgba(47, 123, 220, .22);
}
.btn-pink:hover{
  color:#fff;
  background-image: linear-gradient(135deg, #3aa3c7 0%, #e6a1bd 100%);
  transform: translateY(-1px);
}
.btn-pink:active{ transform: translateY(0); }
.btn-pink:focus-visible{
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(70, 173, 210, .30), 0 10px 22px rgba(47, 123, 220, .22);
}



 Pink CTA button (Bootstrap-compatible) 
.btn-pink{
  --bs-btn-color: #fff;
  --bs-btn-bg: #d84b8a;            
  --bs-btn-border-color: #d84b8a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c4417a;
  --bs-btn-hover-border-color: #c4417a;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b83a6f;
  --bs-btn-active-border-color: #b83a6f;
  --bs-btn-focus-shadow-rgb: 216, 75, 138;
}
  */
