:root {
  --ag: #2d6a4f; --adg: #1b4332; --alg: #52b788;
  --ab: #1d3557; --adb: #0a192f; --alb: #457b9d;
  --ay: #ffb703; --ar: #e63946;
  --txt: #2b2d42; --muted: #8d99ae; --border: #edf2f4;
  --bg: #f8f9fa; --white: #ffffff;
  --sh-sm: 0 4px 12px rgba(0,0,0,0.04);
  --sh-md: 0 10px 30px rgba(0,0,0,0.08);
  --sh-lg: 0 20px 50px rgba(0,0,0,0.15);
  --fh: 'Playfair Display', serif;
  --fb: 'Inter', sans-serif;
  --r: 16px;
}

body { font-family: var(--fb); color: var(--txt); background: var(--bg); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--fh); font-weight: 700; color: var(--adb); }

/* ── Buttons ── */
.aal-btn { 
  display: inline-flex; align-items: center; justify-content: center; 
  padding: 12px 28px; border-radius: 50px; font-weight: 600; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none; text-decoration: none;
}
.aal-btn.primary { background: linear-gradient(135deg, var(--ab), var(--alb)); color: #fff; box-shadow: 0 4px 15px rgba(29,53,87,0.3); }
.aal-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(29,53,87,0.4); }

/* ── Header ── */
.aal-header { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border); sticky: top; z-index: 100; box-shadow: var(--sh-sm); }
.aal-header-inner { display: flex; align-items: center; justify-content: space-between; }
.aal-logo { display: flex; align-items: center; gap: 10px; font-family: var(--fh); font-weight: 900; font-size: 22px; color: var(--adb); }
.aal-nav a { margin-left: 25px; font-weight: 500; color: var(--txt); transition: color 0.3s; }
.aal-nav a:hover { color: var(--ab); }

/* ── Front Page / Dashboard ── */
.aal-hero { position: relative; height: 500px; border-radius: var(--r); overflow: hidden; margin-bottom: 40px; background: var(--adb); }
.aal-slide { height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; background-size: cover; background-position: center; }
.aal-slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.aal-slide-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.aal-slide-content h1 { font-size: 48px; color: #fff; margin-bottom: 15px; }

.aal-home-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.aal-section-card { background: var(--white); padding: 30px; border-radius: var(--r); box-shadow: var(--sh-md); margin-bottom: 30px; }

/* ── Sidebar Login ── */
.aal-sidebar-card { background: var(--white); padding: 25px; border-radius: var(--r); box-shadow: var(--sh-md); border: 1px solid var(--border); margin-bottom: 30px; }
.aal-sidebar-card h3 { font-size: 20px; margin-bottom: 20px; border-bottom: 2px solid var(--bg); padding-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.aal-sidebar-card h3 .dashicons { color: var(--ab); }

.aal-auth-form .aal-field { margin-bottom: 15px; }
.aal-auth-form label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
.aal-auth-form input { width: 100%; padding: 12px 15px; border: 2px solid var(--bg); border-radius: 10px; transition: all 0.3s; }
.aal-auth-form input:focus { border-color: var(--ab); outline: none; background: #fff; }

/* ── Alumni Directory List ── */
.aal-dir-container { background: var(--white); border-radius: var(--r); box-shadow: var(--sh-md); overflow: hidden; }
.aal-dir-toolbar { padding: 20px; background: var(--bg); border-bottom: 1px solid var(--border); }
.aal-dir-form { display: flex; gap: 15px; }
.aal-dir-form input { flex: 1; padding: 10px 15px; border-radius: 10px; border: 1px solid var(--border); }

.aal-alumni-row { display: flex; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); transition: all 0.3s; }
.aal-alumni-row:hover { background: #f1f5f9; transform: scale(1.01); }
.aal-nav-avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--sh-sm); margin-right: 20px; }
.aal-alumni-info { flex: 1; }
.aal-alumni-info strong { display: block; font-size: 17px; color: var(--adb); }
.aal-alumni-info span { font-size: 13px; color: var(--muted); }
.aal-contact-chip { background: var(--bg); padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--ab); text-decoration: none; transition: 0.3s; }
.aal-contact-chip:hover { background: var(--ab); color: #fff; }

/* ── Events ── */
.aal-event-item { padding: 15px; border-radius: 12px; background: var(--bg); margin-bottom: 10px; transition: 0.3s; border: 1px solid transparent; }
.aal-event-item:hover { border-color: var(--ab); background: #fff; box-shadow: var(--sh-sm); }
.aal-event-item strong { display: block; font-size: 15px; color: var(--adb); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .aal-home-grid { grid-template-columns: 1fr; }
  .aal-slide-content h1 { font-size: 32px; }
}
