@font-face {
  font-family: 'DINNextLight';
  src: url('fonts/din-next-w01-light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DINNextUltraLight';
  src: url('fonts/dinnextltw23-ultralight.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirHeavy';
  src: url('fonts/avenir-lt-w01_85-heavy1475544.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirLight';
  src: url('fonts/avenir-lt-w01_35-light1475496.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ─── BASE ─── */

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

body {
  font-family: 'AvenirLight', sans-serif;
  background-color: rgb(35, 35, 35);
  color: rgb(232, 230, 230);
  font-size: 24px;
  line-height: 1.5em;
  min-width: 1020px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: rgb(232, 230, 230);
}

a:hover {
  color: rgb(178, 201, 154);
}

/* ─── NAV ─── */

nav {
  width: 100%;
  padding: 74px 0 14px;
}

nav .nav-inner {
  width: 980px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

nav ul li a {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 40px;
  line-height: 1.4em;
  text-decoration: none;
  color: rgb(250, 250, 250);
  padding: 5px 15px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  display: inline-block;
}

nav ul li a:hover {
  color: rgb(178, 201, 154);
}

/* ─── HOMEPAGE ─── */

.home-content {
  width: 980px;
  margin: 0 auto;
  padding: 58px 0;
}

.home-name {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 120px;
  line-height: 1.1em;
  color: rgb(232, 230, 230);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.home-tagline {
  font-family: 'AvenirLight', sans-serif;
  font-size: 24px;
  color: rgb(232, 230, 230);
  line-height: 1.5em;
  margin-bottom: 40px;
}

.home-nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.home-nav-buttons a {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 90px;
  line-height: 1.4em;
  color: rgb(232, 230, 230);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.4s ease;
  display: block;
  height: 125px;
  display: flex;
  align-items: center;
}

.home-nav-buttons a:hover {
  color: rgb(178, 201, 154);
}

/* ─── HEADSHOT ─── */

.headshot-wrap {
  width: 980px;
  margin: 0 auto;
}

.headshot-circle {
  display: block;
  width: 497px;
  height: 500px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 80%;
  border-radius: 50%;
  border: 6px solid rgb(245, 241, 232);
}

/* ─── CONTENT SECTIONS ─── */

.content-wrap {
  width: 980px;
  margin: 0 auto;
  padding: 30px 0 12px;
}

.content-wrap p {
  font-size: 24px;
  line-height: 1.5em;
  color: rgb(232, 230, 230);
  margin-bottom: 1em;
}

/* ─── SECTION ROWS (text + image side by side) ─── */

.section-row {
  width: 980px;
  margin: 51px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.section-row .text-col {
  width: 558px;
  font-size: 24px;
  line-height: 1.5em;
  color: rgb(232, 230, 230);
}

.section-row .text-col p {
  margin-bottom: 1em;
}

.section-row .image-col {
  margin-left: 30px;
  width: 358px;
  flex-shrink: 0;
}

.section-row .image-col img {
  width: 100%;
  display: block;
}

/* ─── HEADINGS ─── */

h2.section-title {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 24px;
  color: rgb(250, 250, 250);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4em;
}

/* ─── ME PAGE: SOCIAL ROW ─── */

.social-row {
  width: 980px;
  margin: 25px auto 0;
  display: flex;
  align-items: flex-start;
}

.social-icons-block {
  width: 186px;
  flex-shrink: 0;
  margin-right: 34px;
  margin-top: 7px;
}

.social-icons-grid {
  display: grid;
  grid-template-columns: 80px 80px;
  gap: 13px 17px;
}

.social-icons-grid a img {
  width: 80px;
  height: 80px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.2s ease;
}

.social-icons-grid a:hover img {
  opacity: 0.7;
}

.social-caption {
  font-family: 'AvenirLight', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: rgb(176, 176, 176);
  margin-top: 13px;
  text-align: center;
}

.social-text-block {
  flex: 1;
  font-size: 24px;
  line-height: 1.5em;
  padding-top: 7px;
}

.social-text-block p {
  margin-bottom: 1em;
}

/* ─── ME PAGE: EDUCATION IMAGES ─── */

.edu-images {
  width: 980px;
  margin: 0 auto 26px;
  display: flex;
  align-items: stretch;
  padding-left: 179px;
  gap: 149px;
}

.edu-image-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.edu-image-group img {
  display: block;
  margin-bottom: 10px;
}

.edu-caption {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  line-height: 1.4em;
}

/* ─── ME PAGE: CENTERED IMAGE ─── */

.centered-image-block {
  width: 980px;
  margin: 0 auto 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.centered-image-block a img {
  display: block;
  transition: opacity 0.2s ease;
}

.centered-image-block a:hover img {
  opacity: 0.7;
}

.centered-image-caption {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  line-height: 1.4em;
  text-align: center;
  width: 216px;
}

/* ─── RESUME ─── */

.resume-header {
  width: 980px;
  margin: 0 auto;
  padding: 58px 0 22px;
}

.resume-header h1 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 90px;
  line-height: 1em;
  text-align: center;
  color: rgb(250, 250, 250);
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.resume-header .contact {
  font-family: 'AvenirLight', sans-serif;
  font-size: 18px;
  color: rgb(232, 230, 230);
  line-height: 1.5em;
}

.resume-section {
  width: 980px;
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid rgb(65, 65, 65);
}

.resume-section h2 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: normal;
  text-transform: uppercase;
  color: rgb(250, 250, 250);
  margin-bottom: 18px;
}

.resume-section-profile h2 {
  font-size: 48px;
}

.resume-entry {
  margin-bottom: 28px;
}

.resume-entry h3 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 40px;
  color: rgb(250, 250, 250);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2em;
}

.entry-company {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.entry-company-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.entry-company-emoji {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.meta-date {
  font-family: 'AvenirLight', sans-serif;
  font-size: 14px;
  color: rgb(130, 130, 130);
  margin: 2px 0 10px;
  line-height: 1.4em;
}

.resume-entry-profile {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.profile-text {
  flex: 1;
}

.profile-icons {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.profile-icons a img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.profile-icons a:hover img {
  opacity: 0.7;
}

.resume-entry .meta {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  margin: 4px 0 2px;
  line-height: 1.4em;
}

.resume-entry p,
.resume-entry ul {
  font-family: 'AvenirLight', sans-serif;
  font-size: 18px;
  color: rgb(232, 230, 230);
  line-height: 1.5em;
}

.resume-entry ul {
  padding-left: 20px;
  list-style: disc;
}

.resume-entry ul li {
  margin-bottom: 6px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.skills-list .skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.skills-list .skill img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.skills-list .skill span {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(232, 230, 230);
}

/* ─── RESUME: LANGUAGE PROFICIENCY ─── */

.lang-skills {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lang-skill {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-label {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-label span {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(250, 250, 250);
}

.lang-label img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.lang-bar {
  flex: 1;
  height: 10px;
  background: rgb(55, 55, 55);
  border-radius: 5px;
}

.lang-bar-fill {
  height: 100%;
  background: rgb(100, 100, 100);
  border-radius: 5px;
}

/* ─── ART ─── */

.art-grid {
  width: 980px;
  margin: 0 auto;
  padding: 20px 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.art-grid img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

/* ─── CODE / PROJECTS ─── */

.project-wrap {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-parody {
  font-family: 'AvenirLight', sans-serif;
  font-size: 15px;
  color: rgb(140, 140, 140);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
  width: 685px;
}

.project-banner {
  width: 685px;
  height: 219px;
  background: rgb(48, 48, 48);
  border: 1px solid rgb(72, 72, 72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.project-banner:hover {
  opacity: 0.75;
}

.project-banner-name {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 34px;
  color: rgb(178, 201, 154);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-banner-sub {
  font-family: 'AvenirLight', sans-serif;
  font-size: 15px;
  color: rgb(155, 155, 155);
  letter-spacing: 0.05em;
}



.code-section {
  width: 980px;
  margin: 0 auto;
  padding: 58px 0;
}

.code-section h2 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(250, 250, 250);
  margin-bottom: 24px;
  line-height: 1.4em;
}

.code-section .github-link {
  font-family: 'AvenirLight', sans-serif;
  font-size: 24px;
  color: rgb(232, 230, 230);
  margin-bottom: 50px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  border: 1px solid rgb(65, 65, 65);
  padding: 20px;
}

.project-card img {
  width: 100%;
  margin-bottom: 12px;
}

.project-card h3 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgb(250, 250, 250);
}

.project-card p {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  line-height: 1.5em;
}

/* ─── MALAKA ─── */

.malaka-page {
  min-height: calc(100vh - 138px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}

.malaka-page h1 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 90px;
  color: rgb(232, 230, 230);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.4em;
}

.malaka-page img {
  max-width: 500px;
  width: 100%;
  margin-bottom: 30px;
}

.malaka-page p {
  font-family: 'AvenirLight', sans-serif;
  font-size: 24px;
  color: rgb(232, 230, 230);
  max-width: 600px;
  line-height: 1.5em;
}

/* ─── ITINERARY ─── */

.itinerary-wrap {
  width: 700px;
  margin: 0 auto;
  padding: 60px 0;
}

.kind-words {
  text-align: center;
  font-family: 'AvenirLight', sans-serif;
  font-size: 18px;
  color: rgb(232, 230, 230);
  line-height: 1.6em;
  margin-bottom: 40px;
}

.itinerary-wrap h1 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 34px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(250, 250, 250);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.4em;
}

.itinerary-wrap .subtitle {
  text-align: center;
  font-family: 'AvenirLight', sans-serif;
  font-size: 18px;
  color: rgb(176, 176, 176);
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.itinerary-day {
  margin-bottom: 50px;
}

.itinerary-day h2 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(250, 250, 250);
  border-bottom: 2px solid rgb(65, 65, 65);
  padding-bottom: 10px;
  margin-bottom: 28px;
  line-height: 1.4em;
}

.itinerary-event {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.itinerary-event .time {
  width: 170px;
  flex-shrink: 0;
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  padding-top: 2px;
  letter-spacing: 0.03em;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.event-label {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(110, 110, 110);
}

.event-label::after {
  content: ': ';
}

.event-address,
.event-attire {
  font-family: 'AvenirLight', sans-serif;
  font-size: 14px;
  color: rgb(155, 155, 155);
  line-height: 1.5em;
  display: block;
}


.event-notes {
  font-family: 'AvenirLight', sans-serif;
  font-size: 14px;
  color: rgb(155, 155, 155);
  line-height: 1.5em;
  display: block;
  font-style: italic;
}

.itinerary-event .details h3 {
  font-family: 'AvenirHeavy', sans-serif;
  font-size: 18px;
  color: rgb(250, 250, 250);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
  line-height: 1.4em;
}

.itinerary-event .details p {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
  line-height: 1.5em;
}

.kind-words p {
  text-align: center;
}

/* ─── FOOTER ─── */

footer {
  width: 100%;
  padding: 10px 0 26px;
}

footer .footer-inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

footer p {
  font-family: 'AvenirLight', sans-serif;
  font-size: 16px;
  color: rgb(176, 176, 176);
}

