/* ============================================
   MYINFO — Beatrix E. Groves-McDaniel
   Black & Gold Slide Presentation
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold: #D4A017;
  --gold-light: #F0C94D;
  --gold-pale: #F5E6A3;
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #F5F5F0;
  --grey: #888888;
  --grey-light: #BBBBBB;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- SLIDE SYSTEM ---- */
.slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.slide-inner {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ---- GOLD DIVIDER LINE ---- */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

/* ---- NAV DOTS ---- */
.nav-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black-border);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover,
.nav-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* ---- SLIDE NUMBER ---- */
.slide-number {
  position: absolute;
  bottom: 30px;
  right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ============================================
   SLIDE 1 — HERO
   ============================================ */
#slide-1 {
  text-align: center;
  background: radial-gradient(ellipse at 50% 60%, #1a1200 0%, var(--black) 70%);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,0.25), 0 0 80px rgba(212,160,23,0.1);
  margin-bottom: 36px;
  display: inline-block;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-name span {
  color: var(--gold);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '———';
  color: var(--gold);
  margin: 0 12px;
  font-style: normal;
}

.hero-quick-facts {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-scroll-hint {
  margin-top: 60px;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   SLIDE 2 — WHO I AM
   ============================================ */
#slide-2 {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.slide-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.who-i-am-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.who-i-am-text h2 .accent { color: var(--gold); }

.who-i-am-text p {
  font-size: 1rem;
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--gold-pale);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold); }

.key-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.key-fact {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  transition: border-color 0.3s;
}

.key-fact:hover {
  border-color: var(--gold);
}

.key-fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.key-fact-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}

/* ============================================
   SLIDE 3 — CAREER PHILOSOPHY
   ============================================ */
#slide-3 {
  background: var(--black-soft);
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 32px 0;
  background: rgba(212,160,23,0.04);
  border-radius: 0 8px 8px 0;
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-block cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.phil-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.phil-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.phil-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.phil-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.phil-card p {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 4 — KEY ACHIEVEMENTS
   ============================================ */
#slide-4 {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}

.achievements-intro {
  max-width: 680px;
}

.achievements-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.achievements-intro h2 .accent { color: var(--gold); }

.achievements-intro p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.achievement-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.achievement-card:hover {
  border-color: var(--gold);
}

.achievement-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.ach-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.ach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
}

.ach-org {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.ach-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 5 — CURRENT ROLES
   ============================================ */
#slide-5 {
  background: var(--black);
}

.roles-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.roles-intro h2 .accent { color: var(--gold); }

.roles-intro p {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 48px;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.role-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
}

.role-item:last-child { border-bottom: none; }

.role-period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.role-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.role-org {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.role-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ============================================
   SLIDE 6 — EDUCATION & QUALIFICATIONS
   ============================================ */
#slide-6 {
  background: var(--black-soft);
}

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.edu-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

.edu-left h2 .accent { color: var(--gold); }

.degree-card {
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.degree-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.degree-card .section-label {
  margin-bottom: 8px;
}

.degree-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.degree-meta {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.degree-desc {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.7;
}

.memberships-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 28px;
  margin-top: 24px;
}

.memberships-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.membership-list {
  list-style: none;
}

.membership-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--grey-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--black-border);
}

.membership-list li:last-child { border-bottom: none; }

.membership-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qual-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px;
  transition: border-color 0.3s;
}

.qual-item:hover { border-color: var(--gold); }

.qual-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.qual-meta {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ============================================
   SLIDE 7 — SKILLS & INTERESTS
   ============================================ */
#slide-7 {
  background: var(--black);
}

.skills-interests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.side-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.side-heading .accent { color: var(--gold); }

.side-sub {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.3s;
}

.skill-item:hover { border-color: var(--gold); }

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.03em;
}

.skill-level {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.skill-bar-track {
  height: 3px;
  background: var(--black-border);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1s ease;
}

.interests-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.interest-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.3s;
}

.interest-item:hover { border-color: var(--gold); }

.interest-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.interest-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.interest-content p {
  font-size: 0.83rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ============================================
   SLIDE 8 — CLOSING / CONTACT
   ============================================ */
#slide-8 {
  background: radial-gradient(ellipse at 50% 40%, #1a1200 0%, var(--black) 70%);
  text-align: center;
}

.closing-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,160,23,0.2);
  margin-bottom: 32px;
  display: inline-block;
}

#slide-8 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

#slide-8 h2 .accent { color: var(--gold); }

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 40px;
}

.closing-cta {
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.closing-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.closing-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.closing-link:hover {
  background: var(--gold);
  color: var(--black);
}

.closing-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.closing-divider::before,
.closing-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 48px;
  line-height: 1.6;
}

.footer-note a {
  color: var(--gold);
  text-decoration: none;
}

/* ============================================
   FOOTER BAR
   ============================================ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.08em;
}

.site-footer .gold { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .slide { padding: 50px 24px; }
  .slide-2-grid,
  .edu-grid,
  .skills-interests-grid { grid-template-columns: 1fr; gap: 32px; }
  .achievements-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .role-item { grid-template-columns: 1fr; gap: 8px; }
  .nav-dots { display: none; }
  .hero-portrait { width: 160px; height: 160px; }
  .key-facts-grid { grid-template-columns: 1fr 1fr; }
  .quals-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-quick-facts { gap: 20px; }
  .key-facts-grid { grid-template-columns: 1fr; }
  .closing-links { flex-direction: column; align-items: center; }
}
