/* Zachary Portfolio — main styles */

:root{
  --font: 'Segoe UI', Roboto, Arial, sans-serif;
  --bg: #f5f7fa;
  --ink: #333;
  --primary: #1b263b;
  --muted: #cfd8e2;
  --gap: 1.5rem;
  --maxw: 1200px;
  --radius: 12px;
  --shadow: 0 6px 12px rgba(0,0,0,.1);
}



/* Base                          */

html, body {
  margin:0;
  padding:0;
}

body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.75;
}



/* Header / Nav                  */

.site-header{
  background:var(--primary);
  color:#fff;
  padding:1.25rem 1rem;
}

.site-header .wrap{
  width:min(var(--maxw), 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.site-title{
  margin:0;
  font-size:1.35rem;
}

.site-title a{
  color:#fff;
  text-decoration:none;
}

.site-nav a{
  color:#fff;
  text-decoration:none;
  margin-left:1rem;
  font-weight:600;
}

.site-nav a:hover{
  text-decoration:underline;
}

.site-nav .menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s ease-in-out;
}

.site-nav .menu li a:hover {
  opacity: .7;
}


/* Hero Section                  */

.hero{
  text-align:center;
  background:var(--primary);
  color:#fff;
  padding:2rem 1rem;
}

.hero p{
  color:var(--muted);
  margin:.5rem 0 0;
}


/* Layout wrapper                */

.container{
  width:min(var(--maxw), 92%);
  margin:2rem auto 3rem;
}


/* Section Title                 */

.section-title{
  color:var(--primary);
  border-bottom:3px solid var(--primary);
  padding-bottom:.5rem;
  margin:2rem 0 1rem;
}


/*  CARD GRID  */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; /* space between cards */
  margin: 2rem 0;
  padding: 0;
}

/*  SINGLE CARD */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}


.card h3,
.card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 1rem;
  line-height: 1.55;
}







/* Project Grids                 */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:var(--gap);
}

.project{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:1rem;
}

.project img{
  width:100%;
  height:auto;
  border-radius:10px;
}

.project h3{
  margin:.8rem 0 .25rem;
  color:var(--primary);
}


/* Footer                        */

.site-footer{
  background:var(--primary);
  color:var(--muted);
  text-align:center;
  padding:1rem;
  margin-top:3rem;
}

.site-footer a{
  color:#fff;
  text-decoration:underline;
}



/* Interview Page Content Block */

.wp-block-group.content-padding {
  /* keep this just as the outer wrapper controller */
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}

/* style the inner container that wraps the text */
.wp-block-group.content-padding > .wp-block-group__inner-container {
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  line-height: 1.6;
  background: radial-gradient(
      rgb(238, 238, 238) 0%,
      rgb(169, 184, 195) 100%
  );
  max-width: 900px;
  margin: 0 auto;
  display: block;
}


/* Greg Page Content Block */

.wp-block-group.content-greg {
  /* outer wrapper */
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}

/* inner container */
.wp-block-group.content-greg > .wp-block-group__inner-container {
  padding: 40px;
  border-radius: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  display: block;

  /* Greg-specific styling */
  background: #2A7B9B;
  background: linear-gradient(166deg,
     rgba(98, 192, 227, 1) 15%, 
     rgba(186, 234, 255, 1) 100%);

  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Andrew Page Content Block */

.wp-block-group.content-andrew {
  /* outer wrapper */
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
}

/* inner container */
.wp-block-group.content-andrew > .wp-block-group__inner-container {
  padding: 40px;
  border-radius: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  display: block;

  /* Andrew-specific styling */
  background: #e37362;
background: linear-gradient(166deg, 
rgba(227, 115, 98, 1) 15%, 
rgba(186, 193, 255, 1) 100%);

  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}





/* ===========================================================
   INTERVIEW TITLE — GLOBAL BASE STYLE
   Applies to all interviewee names
   =========================================================== */

   .interview-name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }
  
  
  /* ===========================================================
     HOVER UNDERLINE EFFECT (APPLIES TO ALL)
     =========================================================== */
  
  .interview-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    transition: width 0.25s ease-out;
  }
  
  .interview-name:hover::after {
    width: 100%;
  }
  
  
  /* ===========================================================
     INTERVIEWEE-SPECIFIC GRADIENT TEXT
     =========================================================== */
  
  /* Jennifer — soft blue gradient */
  .interview-jennifer {
    background: linear-gradient(90deg, #4a6fff, #9ac4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Greg — teal/green gradient */
  .interview-greg {
    background: linear-gradient(90deg, #0f766e, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
/* Andrew — blue/rust gradient */
  .interview-andrew {
    background: linear-gradient(90deg, #0014AD, #782719);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /*
  .interview-namehere {
    background: linear-gradient(90deg, COLOR1, COLOR2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  */
  