/* style.css */

:root {
  --gold: #b9994d;
  --charcoal: #0d0e0a;
  --light: #f4f4f4;
}

html {
  color-scheme: light;
  background-color: var(--light, #f4f4f4);
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: var(--light, #f4f4f4);
  color: var(--charcoal);
}

header {
  background: var(--charcoal);
  color: var(--gold);
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  color: #ddd;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  color: #fff;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.notice {
  background: #1b1b1b;
  border: 1px solid #b9994d;
  color: #FF0000;
  text-align: center;
  padding: 0.5em;
  border-radius: 6px;
  margin-bottom: 1.5em;
  font-weight: 500;
}


h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 0.25rem;
}

}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--gold);
}

.card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--charcoal);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: 0.3s;
}

.card a:hover {
  background: var(--gold);
  color: #fff;
}

/* === Scrollable Example Gallery === */

#examples {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  
}

#examples h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

#examples .examples-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smoother on iOS */
}

#examples .example-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.5rem;
  min-height: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: grid;
  justify-content: space-between;
}

#examples .example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#examples .examples-grid::-webkit-scrollbar { height: 8px; }


<!--Certification Section Styling -->

  /* Scope to #certs to avoid conflicts */
  #certs { --gold: var(--gold, #b9994d); --fg: var(--charcoal, #0d0e0a); --bg: var(--light, #f4f4f4); }
  .certs-section { margin: 2rem 0; }
  .certs-title { margin: 0 0 .25rem 0; font-size: clamp(1.1rem, 1vw + 1rem, 1.6rem); }
  .certs-sub { margin: 0 0 .75rem 0; color: #777; font-size: .95rem; }

  /* Horizontal scrollable row with snap */
  .certs-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 240px;
    gap: 12px;
    overflow-x: auto;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .certs-card {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 10px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .certs-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform .12s ease;
  }
  .certs-thumb:hover { transform: translateY(-2px) scale(1.02); }
  .certs-meta { display: grid; gap: 2px; }
  .certs-name { font-size: .93rem; }
  .certs-issuer { font-size: .8rem; color: #6b6b6b; }

  @media (max-width: 520px) { .certs-row { grid-auto-columns: 180px; } }
  /* Testimonials scroller */
.t-section { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
.t-title { margin: 0 0 .25rem 0; font-size: clamp(1.1rem, 1vw + 1rem, 1.6rem); }
.t-sub { margin: 0 0 .75rem 0; color: #777; font-size: .95rem; }

/* Horizontal scroll like certs */
.t-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px; /* width of each tile */
  gap: 12px;
  overflow-x: auto;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.04);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.t-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.t-quote {
  margin: 0;
  font-size: .98rem;
  line-height: 1.5;
}
.t-meta {
  display: grid;
  gap: 2px;
  font-size: .85rem;
  color: #6b6b6b;
}
.t-name { font-weight: 600; color: var(--charcoal); }
.t-src { }
.t-date { color: #888; }

@media (max-width: 560px) {
  .t-row { grid-auto-columns: 260px; }
}
/* Fix alignment for certs and testimonials */
.certs-section,
.t-section {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2rem 1rem;
}
/*Resume Download Bar Formatting*/
.resume-bar {
  background-color: #e0e0e0; /* subtle light gray bar */
  color: var(--charcoal);
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

.resume-container h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.resume-container p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.resume-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.outline-btn {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
  background-color: transparent;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.outline-btn:hover {
  background-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

footer {
  background: var(--charcoal);
  color: var(--gold);
  padding: 2rem 1rem;
  text-align: center;
}

/*Sales States Site CSS-Commented Out, Currently Unneeded*/

/*#other-accomplishments { padding: 1.25rem; border-radius: .5rem; background:#fff; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
#other-accomplishments h2 { font-size: 1.25rem; margin-bottom:.5rem; }
#other-accomplishments .summary { margin-bottom:.75rem; color:#333; }
#other-accomplishments .details ul { margin-left:1rem; }
#other-accomplishments .cta a { margin-right: .75rem; text-decoration: none; font-weight:600; }
*/



=======

>>>>>>> Stashed changes


