:root{
  --text:#3a4351;          /* charcoal */
  --muted:#6b778c;         /* optional secondary text */
  --highlight:#ffcd90;
  --brand-700: #df6c00;
  --brand-600:#FF7B00;
  --brand-500:#FF8D21;
  --brand-400:#FFA652;
  --brand-300:#FFB76B;
  --brand-200:#FFCD90;
  --brand-50: #FFF4DF;     
}

main{ padding-inline: clamp(1rem, 4vw, 3rem); }

/* make sure icons in the navbar are visible */
.navbar .nav-link i,
.navbar .nav-link .fa,
.navbar .nav-link .fa-solid {
  display: inline-block !important;
  margin-right: .4rem;   /* spacing before text */
  line-height: 1;
  font-size: 1em;
}

.navbar .nav-link .fas {
  font-weight: 900 !important;
  font-family: "Font Awesome 5 Free" !important;
}

a{
    color: var(--brand-700);
}
/* Intro layout */
.intro{
  display: flex;
  align-items: center;
  justify-content: center;               /* <-- centers the pair as a unit */
  gap: clamp(1rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 4rem auto 3rem;
  padding-inline: clamp(1rem, 4vw, 3rem); /* symmetric padding */
}

.profile-pic{
  width: clamp(140px, 28vw, 280px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 30px rgba(0,0,0,.08);
  display:block;
}

/* Text styles */
.intro-text h1{
  margin: 0 0 .5rem 0;
  font-weight: 800;
  color: var(--text);
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  letter-spacing: -0.02em;
}

.intro-text p{
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  max-width: 40ch;         /* similar line length to the mock */
}

.intro-text h6{
    color: var(--text);
    margin:0;
    font-size: clamp(1.05rem, 2.2vw, 1.5rem);
    line-height: 1.6;
    font-weight: 400;
}


/* “marker” style highlight*/
.intro .highlight{
  background: linear-gradient(transparent 62%, var(--highlight) 62%);
  border-radius: .15em;
  padding: 0 .1em;
  box-decoration-break: clone;   /* keep highlight across line wraps */
}

/* Responsive: stack on small screens */
@media (max-width: 720px){
  .intro{
    flex-direction: column;
    text-align: center;
  }
  .intro-text p{
    margin-inline: auto;
  }
}

/* Row layout */
.cta-row{
  display:flex;
  gap: clamp(.5rem, 2vw, 1rem);
  flex-wrap: wrap;                 /* wraps on small screens */
  align-items:center;
  margin-top: 1.1rem;
  margin: 4rem auto 3rem;
  justify-content: center;
}

/* “Text button” base: looks like text with a soft marker underline */
.cta{
  position:relative;
  display:inline-block;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  letter-spacing: .01em;
  color: var(--ink);
  text-decoration:none;
  padding: .25rem .2rem;          /* breathing room around the marker */
  border-radius: .35rem;           /* for nicer selection/focus shape */

  /* marker underline (sits behind text) */
  background-image: linear-gradient(transparent 62%, var(--brand-200) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-color .2s ease, transform .06s ease, background-image .2s ease;
  box-decoration-break: clone;     /* keep highlight across wraps */
}

/* Variants use adjacent tones to feel cohesive */
.cta-primary   { background-image: linear-gradient(transparent 62%, var(--brand-400) 62%); }
.cta-secondary { background-image: linear-gradient(transparent 62%, var(--brand-300) 62%); }
.cta-tertiary  { background-image: linear-gradient(transparent 62%, var(--brand-200) 62%); }

/* Hover / active states */
.cta:hover{
  transform: translateY(-1px);
  background-image: linear-gradient(transparent 62%, var(--brand-500) 62%);
  color: var(--brand-700)
}
.cta:active{ transform: translateY(0); }

/* Accessible focus ring */
.cta:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px var(--brand-50), 0 0 0 6px var(--brand-400);
  border-radius: .4rem;
}

/* Mobile stacking under intro text */
@media (max-width: 720px){
  .cta-row{
    justify-content: center;      /* center the row when stacked under the image */
  }
}


/* Cards */
.notraco {
  display: flex;
  justify-content: space-between;  /* space out text and arrow */
  align-items: center;             /* vertical centering */
}

.notraco h2,
.notraco p {
  margin: 0;                       /* remove default spacing */
}

.nostraco, .notraco { position: relative; }  /* typo-proofing */
.notraco { padding-right: 2.25rem; }         /* room for the arrow */

.notraco .more {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);               /* vertical centering */
  margin: 0;                                  /* override any mb-* */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.notraco .more i {
  font-size: 1.5rem;   /* increase arrow size (default ~1rem) */
}

.showcat-descrip {
    color: white;
    background-color: var(--brand-600);
    font-size: 1.2rem;
}