* {
  box-sizing: border-box;
  cursor: default;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

a {
  cursor: pointer;
}

section {
  scroll-margin-top: 110px;
}

body {
  margin: 0;

  padding-top: 90px;

  font-family: "Roboto", sans-serif;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#logo_button {
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
  color: black;
}

#nav_buttons {
  display: flex;
  align-items: center;
  gap: 70px;
}

#nav_buttons a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
}

#nav_buttons a:hover {
  color: red;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: grey;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

#logo,
#nav_buttons {
  margin: 0;
}
#home_container {
  m#home_container {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 0 8%;
    box-sizing: border-box;
    background: white;
    margin: 0;
  }
}

#home_container_image {
  flex-shrink: 0;
}

#home_container_image img {
  display: block;
  width: 320px;
  height: 400px;

  object-fit: cover;
  object-position: center;

  border: 3px solid black;
  border-radius: 24px;
}
#introduction_text {
  max-width: 650px;
  margin-left: 150px;
}

.greeting {
  margin: 0 0 8px;
  font-size: 22px;
}

#introduction_text h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
}

#introduction_text h2 {
  margin: 15px 0;
  font-size: 28px;
  font-weight: 500;
}

.description {
  max-width: 580px;
  font-size: 18px;
  line-height: 1.7;
}

#home_container_text h1 {
  transform: translateY(-190px);
}
.hero-resume {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}
.resume-button,
.blog-button,
.read-more,
.post-comment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 145px;
  padding: 12px 24px;

  background-color: black;
  border: 2px solid white;
  border-radius: 6px;

  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.resume-button:hover,
.blog-button:hover,
.read-more:hover {
  color: black;
  background-color: white;
  border: 2px solid black;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  margin-bottom: 35px;

  background-color: transparent;
  color: #0f172a;

  border: 1px solid #d1d5db;
  border-radius: 8px;

  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.article-back:hover {
  background-color: #f8fafc;
  border-color: #0f172a;

  transform: translateX(-3px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-resume {
  margin-top: 24px;
  text-align: left;
}

.skills_section {
  padding: 100px 8%;
  background-color: #f5f7fa;
}

.section_heading {
  text-align: center;
  margin-bottom: 45px;
}

.section_heading h2 {
  margin-bottom: 8px;
  color: black;
  font-weight: bold;
}

.about_section {
  padding: 100px 8%;
  background-color: #f5f7fa;
}

.about_heading {
  text-align: center;
  margin-bottom: 50px;
}

.about_heading > p {
  margin-bottom: 8px;
  color: charcoal;
  font-weight: bold;
}

.about_heading h2 {
  margin: 0;
  font-size: 38px;
  color: #111111;
}

.about_container {
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.about_image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about_content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #172033;
  font-size: 27px;
}

.about_content > p {
  margin-bottom: 16px;
  color: #444444;
  line-height: 1.7;
}

.about_details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  margin-top: 30px;
  margin-bottom: 30px;
}

.about_details div {
  padding: 15px;
  background-color: white;
  border-left: 4px solid navy;
  border-radius: 6px;
}

.about_details span {
  color: navy;
  font-weight: bold;
}

.about_details p {
  margin: 5px 0 0;
  color: #444444;
}

.experience-section {
  padding: 110px 8%;
  background-color: #f6f7f9;
  scroll-margin-top: 110px;
}

.experience-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: left;
}

.experience-header h2 {
  margin: 0 0 20px;

  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  font-weight: 500;
}

.experience-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.experience-timeline::before {
  content: "";
  position: absolute;

  top: 8px;
  bottom: 15px;
  left: 166px;

  width: 1px;
  background-color: #cfd3da;
}

.experience-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 70px;
  margin-bottom: 60px;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-item::before {
  content: "";
  position: absolute;

  top: 7px;
  left: 160px;

  width: 13px;
  height: 13px;

  background-color: #172033;
  border: 3px solid #f6f7f9;
  border-radius: 50%;
}

.experience-date {
  padding-top: 2px;
  text-align: right;
}

.experience-date span {
  color: #626262;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.experience-details {
  position: relative;
  padding: 0 0 50px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

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

.experience-type {
  margin: 0 0 10px;
  color: #172033;
  font-size: 14px;
  font-weight: 600;
}

.experience-details h3 {
  margin: 0 0 6px;
  color: #181818;
  font-size: 26px;
  font-weight: 650;
}

.experience-details h4 {
  margin: 0 0 22px;

  color: #666666;
  font-size: 16px;
  font-weight: 400;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;

  margin-top: 24px;
}

.experience-skills span {
  color: #4f5967;
  font-size: 14px;
  font-weight: 500;
}

.experience-skills span:not(:last-child)::after {
  content: "•";
  margin: 0 11px;
  color: #9da3ad;
}

.skills_container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.skill_card {
  background-color: white;
  padding: 30px;
  border: 1px solid #dddddd;
  border-radius: 12px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.skill_card:hover {
  transform: translateY(-6px);
  border-color: navy;
}

.skill_card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #172033;
  font-size: 23px;
}

.skill_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill_tags span {
  padding: 8px 13px;
  background-color: #eef1f6;
  border-radius: 20px;
  font-size: 14px;
}

.goals_section {
  padding: 100px 8%;
  background-color: white;
}

.goals_heading {
  text-align: center;
  margin-bottom: 20px;
}

.goals_heading h2 {
  margin: 0;
  font-size: 38px;
  font-weight: bold;
}

.goals_intro {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.goals_intro p {
  color: #444444;
  line-height: 1.7;
}

.goals_container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goal_card {
  position: relative;
  padding: 30px;

  background-color: #f5f7fa;
  border: 3px solid #172033;
  border-radius: 12px;
}

.goal_number {
  display: inline-block;
  margin-bottom: 18px;

  color: #172033;
  font-size: 18px;
  font-weight: bold;
}

.goal_card h3 {
  margin: 0 0 15px;
  color: #172033;
  font-size: 22px;
}

.goal_card p {
  margin: 0;
  color: #444444;
  line-height: 1.7;
}

.projects-section {
  padding: 110px 8%;
  background-color: white;
  scroll-margin-top: 110px;
}

.projects-header {
  max-width: 760px;
  margin: 0 auto 70px;
}

.projects-header h2 {
  margin: 0 0 20px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  font-weight: 500;
}

.projects-container {
  max-width: 1000px;
  margin: 0 auto;
}

.project-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 55px;

  padding: 50px 0;

  border-top: 1px solid #d8dce2;
}

.project-side {
  padding-top: 4px;
}

.project-number {
  display: block;
  margin-bottom: 15px;

  color: red;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.project-side p {
  margin: 0;

  color: #646464;
  font-size: 14px;
  line-height: 1.5;
}

.project-content h3 {
  margin: 0 0 18px;

  color: #181818;
  font-size: 28px;
  font-weight: 650;
}

.project-content > p {
  max-width: 680px;
  margin: 0;

  color: #484848;
  font-size: 16px;
  line-height: 1.8;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;

  margin-top: 24px;
}

.project-technologies span {
  color: #4f5967;
  font-size: 14px;
  font-weight: 500;
}

.project-technologies span:not(:last-child)::after {
  content: "•";
  margin: 0 11px;
  color: #9da3ad;
}

.contact-section {
  padding: 110px 0;
  background-color: #f5f7fa;
}

.contact-container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.contact-heading {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-label {
  margin-bottom: 10px;
  color: #243b64;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin-bottom: 18px;
  color: #172033;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.contact-heading p {
  color: #667085;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.contact-information {
  display: flex;
  flex-direction: column;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid #d9dee7;
}

.contact-item:first-child {
  border-top: 1px solid #d9dee7;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: #667085;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item a {
  color: #243b64;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #172945;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #d9dee7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  margin-bottom: 8px;
  color: #172033;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  color: #172033;
  background-color: #f8f9fb;
  border: 1px solid #d9dee7;
  border-radius: 3px;
  font: inherit;
  outline: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background-color: #ffffff;
  border-color: #243b64;
}

.form-group textarea {
  resize: vertical;
}

.contact-button {
  padding: 14px 24px;
  color: #ffffff;
  background-color: black;
  border: 2px solid gray;
  border-radius: 3px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-button:hover {
  background-color: white;
  color: black;
  transform: translateY(-2px);
  border: 2px solid black;
}

html {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 0;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.site-footer {
  width: 100%;
  padding: 75px 8% 25px;

  color: #ffffff;
  background-color: black;

  border-top: 4px solid grey;
}

.footer-main {
  max-width: 1150px;
  margin: 0 auto 55px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 55px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: bold;
}

.footer-brand > p {
  max-width: 430px;
  margin: 0;

  color: #b7c0ce;
  font-size: 15px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  text-decoration: none;
  font-size: 17px;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  background-color: navy;
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column h3 {
  margin: 0 0 8px;

  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;

  color: #b7c0ce;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;

  overflow-wrap: anywhere;
}

.footer-column a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
  color: #929dad;
  font-size: 13px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}

.back-to-top i {
  transition: transform 0.25s ease;
}

.back-to-top:hover i {
  transform: translateY(-4px);
}

.blog-header {
  width: 100%;

  padding: 25px 8%;

  border-bottom: 1px solid #e5e7eb;

  background-color: white;
}

.blog-nav {
  max-width: 1200px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.blog-logo {
  font-size: 1.2rem;

  font-weight: 700;

  color: #0f172a;

  text-decoration: none;
}

.back-home {
  color: #1e3a8a;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

.back-home:hover {
  opacity: 0.65;
}

.blog-page {
  max-width: 1100px;

  margin: 0 auto;

  padding: 20px 40px 90px;
}

.blog-hero {
  margin-top: 100px;
  margin-bottom: 70px;
}

.blog-label {
  margin-bottom: 18px;
}

.blog-intro {
  margin-bottom: 0;

  line-height: 1.8;
}

.blog-empty {
  padding: 80px 50px;

  min-height: 320px;

  margin-bottom: 80px;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);

  line-height: 1.1;

  color: #0f172a;

  margin-bottom: 25px;
}

.blog-intro {
  font-size: 1.1rem;

  line-height: 1.8;

  color: #64748b;

  max-width: 700px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  background: white;

  border: 1px solid #e5e7eb;

  border-radius: 18px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image-container {
  width: 100%;

  height: 220px;

  overflow: hidden;
}

.blog-image {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 28px;
}

.blog-date {
  color: #1e3a8a;

  font-size: 0.85rem;

  font-weight: 600;

  margin-bottom: 12px;
}

.blog-card h2 {
  font-size: 1.5rem;

  color: #0f172a;

  margin-bottom: 15px;
}

.blog-description {
  color: #64748b;

  line-height: 1.7;
}

.blog-empty {
  grid-column: 1 / -1;

  text-align: center;

  padding: 100px 30px;

  border: 1px solid #e5e7eb;

  border-radius: 20px;

  background: #f8fafc;
}

.blog-empty-icon {
  font-size: 2.5rem;

  color: #1e3a8a;

  margin-bottom: 20px;
}

.blog-empty h2 {
  font-size: 2rem;

  color: #0f172a;

  margin-bottom: 15px;
}

.blog-empty p {
  color: #64748b;

  margin-bottom: 30px;

  font-size: 1.05rem;
}

.blog-home-button {
  display: inline-block;

  padding: 13px 24px;

  background: #1e3a8a;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  font-weight: 600;

  transition: 0.3s ease;
}

.blog-home-button:hover {
  transform: translateY(-2px);

  opacity: 0.9;
}

.blog-detail-body .site-footer {
  width: 100%;
  margin-top: 80px;
  background: black;
  color: white;
}

.blog-detail-body .footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px 45px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.blog-detail-body .article-photo {
  width: 100%;
  margin: 30px 0;
}

.blog-detail-body .article-image {
  display: block;

  width: 100%;
  max-width: none;

  height: auto;

  margin: 0 auto;

  border-radius: 14px;
}

.blog-detail-body .footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 40px 35px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid #2b2b2b;
}

.article-page {
  width: 100%;

  max-width: 1150px;

  margin: 0 auto;

  padding: 70px 32px 120px;

  box-sizing: border-box;
}

.article-back {
  display: inline-block;

  margin-bottom: 35px;
}

.article-content {
  width: 100%;

  max-width: 1080px;

  margin: 0 auto;

  padding: 45px 60px;

  border: 4px solid #e5e7eb;

  border-radius: 12px;

  box-sizing: border-box;
}

.article-date {
  margin-bottom: 16px;

  color: #1e3a8a;

  font-size: 0.9rem;

  font-weight: 700;
}

.article-title {
  margin: 0;

  color: #0f172a;

  font-size: clamp(3rem, 6vw, 4.8rem);

  line-height: 1.05;

  letter-spacing: -2px;
}

.article-divider {
  width: 100%;

  height: 1px;

  margin: 45px 0;

  background-color: #e5e7eb;
}

.article-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;

    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
}

.article-text p {
  margin: 0 0 28px;
}

.article-image {
  width: 100%;

  max-height: 600px;

  margin-top: 45px;

  object-fit: cover;

  border-radius: 16px;
}

.article-text p,
.article-text div,
.article-text span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.post-actions {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.post-like-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  padding: 40px;
  background: transparent;
  color: #1f4f8f;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.post-like-button:hover {
  color: #163b6b;
}

.heart {
  font-size: 20px;
}

.comments-section {
  max-width: 820px;
  margin: 55px auto 80px;
  padding: 0 10px;
}

.comments-section h2 {
  font-size: 27px;
  margin-bottom: 24px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 38px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font: inherit;
  background: #fff;
}

.comment-form textarea {
  min-height: 105px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #1f4f8f;
}

.post-comment-button {
  align-self: flex-start;
  padding: 9px 16px;
  border: none;
  border-radius: 5px;

  font-weight: 600;
  cursor: pointer;
}

.comments-list {
  margin-top: 10px;
}

.comment {
  padding: 22px 0;
  border-bottom: 1px solid #e3e3e3;
}

.comment:last-child {
  border-bottom: none;
}

.comment-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.comment-header strong {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.comment-header small {
  font-size: 12px;
  color: #888;
}

.comment p {
  margin: 7px 0 9px;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reply-button,
.comment-like-button {
  border: none;
  padding: 0;
  background: transparent;
  color: #1f4f8f;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.reply-button:hover,
.comment-like-button:hover {
  text-decoration: underline;
}

.replies {
  margin-top: 15px;
  margin-left: 20px;
  padding-left: 16px;
  border-left: 2px solid #d8d8d8;
}

.reply {
  padding: 10px 0;
}

.reply + .reply {
  margin-top: 8px;
}

.reply .comment-header strong {
  font-size: 14px;
}

.reply p {
  margin: 6px 0;
  font-size: 14px;
}

.reply-form {
  margin-top: 14px;
  margin-left: 20px;
  padding-left: 16px;
  border-left: 2px solid #d8d8d8;
}

.reply-form input,
.reply-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 9px;
  padding: 10px 12px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  font: inherit;
}

.reply-form textarea {
  min-height: 80px;
  resize: vertical;
}

.reply-form button {
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  background: #1f4f8f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.error-body {
  margin: 0;

  min-height: 100vh;

  display: flex;

  flex-direction: column;

  background-color: #ffffff;

  color: #1a1a1a;
}

.error-page {
  flex: 1;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 60px 24px;
}

.error-content {
  width: 100%;

  max-width: 700px;

  text-align: center;
}

.error-code {
  margin: 0 0 18px;

  font-size: 0.8rem;

  font-weight: 600;

  letter-spacing: 3px;

  color: #1e3a5f;
}

.error-content h1 {
  margin: 0;

  font-size: clamp(3rem, 7vw, 5.5rem);

  line-height: 1;

  color: black;
}

.error-message {
  max-width: 520px;

  margin: 24px auto 0;

  font-size: 1.05rem;

  line-height: 1.7;

  color: #68717d;
}

.error-actions {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

  margin-top: 32px;
}

.error-btn {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  min-width: 145px;

  padding: 12px 20px;

  border-radius: 6px;

  font-size: 0.95rem;

  font-weight: 600;

  text-decoration: none;

  transition: 0.2s ease;
}

.error-btn-primary {
  background-color: black;

  border: 1px solid #1e3a5f;

  color: #ffffff;
}

.error-btn-primary:hover {
  background-color: white;
  color: black;

  border-color: #162d49;

  transform: translateY(-2px);
}

.error-btn-secondary {
  background-color: black;

  border: 1px solid #cfd6df;

  color: white;
}

.error-btn-secondary:hover {
  background-color: white;
  color: black;
  border-color: #aeb8c4;

  transform: translateY(-2px);
}

.error-footer {
  width: 100%;

  border-top: 1px solid #e5e9ee;

  padding: 20px 30px;
}

.error-footer-content {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #7a828c;

  font-size: 0.85rem;
}

.error-footer-content p {
  margin: 0;
}

.error-footer-label {
  color: #9aa1a9;
}

@media (max-width: 760px) {
  .comments-section {
    margin: 40px 18px 60px;
    padding: 0;
  }

  .replies,
  .reply-form {
    margin-left: 10px;
    padding-left: 12px;
  }
}

@media (min-width: 761px) {
  #menu-toggle {
    display: none !important;
  }

  #navbar {
    width: 100%;
    min-height: 80px;
    padding: 18px 2%;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #nav_buttons {
    width: auto;
    max-height: none;
    overflow: visible;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;

    margin: 0;
    opacity: 1;
    visibility: visible;
  }

  #home_container {
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: 80px 8%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;

    text-align: left;
  }

  #home_container_image {
    width: auto;
    flex-shrink: 0;
  }

  #home_container_image img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    object-position: center;

    border-radius: 45%;
  }

  #introduction_text {
    width: auto;
    max-width: 650px;
    margin: 0 !important;
    padding: 0;

    text-align: left;
  }

  #introduction_text h1 {
    margin: 0 0 12px;
    font-size: 52px;
    line-height: 1.1;
  }

  #introduction_text h2 {
    margin: 0 0 18px;
    min-height: auto;

    font-size: 28px;
    line-height: 1.3;
  }

  #introduction_text .description {
    max-width: 600px;
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
  }

  body {
    padding-top: 72px;

    overflow-x: hidden;
  }

  #navbar {
    height: 72px;

    padding: 0 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;
  }

  #logo_button {
    font-size: 18px;

    white-space: nowrap;
  }

  #menu-toggle {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    border: none;

    background: transparent;

    font-size: 22px;

    cursor: pointer;
  }

  #nav_buttons {
    display: flex;

    flex-direction: row;

    align-items: center;

    opacity: 1;

    visibility: visible;

    max-height: none;

    overflow: visible;

    gap: 70px;

    position: static;

    width: auto;

    padding: 0;

    background: transparent;

    box-shadow: none;
  }

  #menu-toggle {
    display: none;
  }

  #nav_buttons.active {
    display: flex;
  }

  #nav_buttons a {
    font-size: 16px;
  }

  .blog-page {
    width: 100%;

    padding: 70px 14px 60px;
  }

  .blog-hero {
    width: 100%;

    max-width: 100%;

    margin: 0 auto 50px;
  }

  .blog-label {
    font-size: 13px;

    letter-spacing: 1.5px;
  }

  .blog-intro {
    font-size: 16px;

    line-height: 1.8;

    margin-top: 15px;
  }

  .blog-posts {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 28px;
  }

  .blog-card {
    width: 100%;

    padding: 22px;

    border-radius: 14px;

    box-sizing: border-box;
  }

  .blog-image-container {
    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    margin-bottom: 20px;
  }

@media (max-width: 768px) {
    .article-page {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 100px 24px 60px;
        box-sizing: border-box;
    }

    .article-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;

        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;

        overflow: visible;
    }

    .article-date {
        margin: 0 0 18px;
    }

    .article-title {
        width: 100%;
        margin: 0;

        font-size: 2.5rem;
        line-height: 1.1;
        letter-spacing: -1px;

        overflow-wrap: anywhere;
    }

    .article-divider {
        width: 100%;
        margin: 30px 0;
    }

    .article-text {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;

        font-size: 16px;
        line-height: 1.7;

        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .article-text p {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
    }

    .article-photo,
    .article-image {
        width: 100%;
        max-width: 100%;
    }

    .article-image {
        height: auto;
        display: block;
    }

    .post-actions {
        width: 100%;
        margin: 40px 0;
    }
}

  .article-divider {
    width: 100%;
    height: 1px;
    margin: 50px 0;
    background-color: #e2e8f0;
  }

  .photo-caption {
    margin-top: 12px;

    text-align: center;

    color: #64748b;

    font-size: 0.9rem;

    font-style: italic;
  }

  .article-text {
    max-width: 98%;
    color: #334155;
    font-size: 1.1rem;
    justify-content: center;
    line-height: 1.9;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin: 0 auto;
    text-align: left;
  }

  .blog-image {
    display: block;

    width: 100%;

    height: auto;

    max-height: 300px;

    object-fit: cover;
  }

  .blog-card-content {
    width: 100%;
  }

  .blog-date {
    font-size: 13px;

    margin-bottom: 10px;
  }

  .blog-card h2 {
    font-size: 1.4rem;

    line-height: 1.25;

    margin-bottom: 12px;
  }

  .blog-description {
    width: 100%;
    max-width: 100%;

    overflow-wrap: anywhere;
    word-break: break-word;

    white-space: normal;
  }

  .read-more {
    margin-top: 18px;

    min-width: auto;

    padding: 10px 16px;

    font-size: 14px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: clip;
  }

  * {
    box-sizing: border-box;
    min-width: 0;
  }

  #menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;
    padding: 0;

    background-color: transparent;
    border: 1px solid #888;
    border-radius: 4px;

    color: #111 !important;
    font-family: Arial, sans-serif !important;
    font-size: 25px !important;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;
  }

  #home_container {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #home_container_image img {
    width: 220px !important;
    height: 280px !important;
  }

  #introduction_text {
    width: 100% !important;
    margin: 0 !important;
    text-align: center;
  }

  #navbar {
    min-height: 70px;
    padding: 14px 20px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  #logo_button {
    font-size: 17px;
  }

  #nav_buttons {
    grid-column: 1 / -1;

    width: 100%;
    max-height: 0;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  #nav_buttons.open {
    max-height: 400px;
    margin-top: 14px;

    opacity: 1;
    visibility: visible;
  }

  #nav_buttons a {
    width: 100%;
    padding: 14px 2px;

    border-top: 1px solid #eeeeee;
    font-size: 16px;
  }
  #home_container {
    width: 100% !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 60px 20px 80px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 30px !important;

    text-align: center;
  }

  #home_container_image {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
  }

  #home_container_image img {
    width: 220px !important;
    height: 280px !important;
    max-width: 100% !important;

    margin: 0 auto !important;
    object-fit: cover;
    object-position: center;
  }

  #introduction_text {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center;
  }

  .greeting {
    margin: 0 0 8px !important;
    font-size: 18px;
  }

  #introduction_text h1 {
    width: 100%;
    margin: 0 0 14px !important;

    font-size: 36px !important;
    line-height: 1.1;

    overflow-wrap: anywhere;
  }

  #introduction_text h2 {
    width: 100%;
    min-height: 52px;
    margin: 0 0 18px !important;

    font-size: 20px !important;
    line-height: 1.3;

    overflow-wrap: anywhere;
  }

  #introduction_text .description {
    width: 100% !important;
    max-width: 500px !important;

    margin: 0 auto !important;

    font-size: 16px;
    line-height: 1.7;
  }

  .hero-resume {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

  section {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 70px 20px !important;
  }

  .about_container,
  .skills_container,
  .goals_container,
  .experience-timeline,
  .projects-container {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about_container,
  .skills_container,
  .goals_container {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .skill_card,
  .goal_card,
  .project-item,
  .experience-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .experience-header {
    width: 100%;
    max-width: 100%;
    margin: 0 0 45px;
    text-align: left;
  }

  .experience-header h2 {
    font-size: 34px;
  }

  .experience-timeline {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .experience-timeline::before {
    left: 7px;
  }

  .experience-item {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 0 0 50px !important;
    padding: 0 0 0 35px !important;
  }

  .experience-item::before {
    left: 0;
    top: 5px;
  }

  .experience-date {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .experience-date span {
    font-size: 13px;
  }

  .experience-details {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-bottom: 35px;
  }

  .experience-details h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .experience-details h4 {
    font-size: 15px;
    line-height: 1.5;
  }

  .experience-details > p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .experience-skills {
    width: 100%;
    flex-wrap: wrap;
  }

  .experience-item:hover .experience-details {
    transform: none;
  }

  .projects-section {
    width: 100%;
    padding: 80px 20px !important;
    scroll-margin-top: 70px;
    overflow: visible;
  }

  .projects-header {
    width: 100%;
    max-width: 100%;
    margin: 0 0 40px;
  }

  .projects-header h2 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.2;
  }

  .projects-intro {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }

  .projects-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .project-item {
    width: 100% !important;
    max-width: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 35px 0 !important;

    border-top: 1px solid #d8dce2;
  }

  .project-item:last-child {
    border-bottom: 1px solid #d8dce2;
  }

  .project-side {
    width: 100%;
    margin: 0 0 22px;

    display: flex;
    align-items: center;
    gap: 15px;
  }

  .project-number {
    margin: 0;
    flex-shrink: 0;

    font-size: 25px;
    line-height: 1;
  }

  .project-side p {
    margin: 0;
    font-size: 14px;
  }

  .project-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .project-content h3 {
    width: 100%;
    margin: 0 0 15px;

    font-size: 25px;
    line-height: 1.25;
  }

  .project-content > p {
    width: 100%;
    max-width: 100%;

    margin: 0;
    font-size: 16px;
    line-height: 1.7;

    overflow-wrap: break-word;
  }

  .project-technologies {
    width: 100%;
    margin-top: 20px;

    display: flex;
    flex-wrap: wrap;
  }

  .project-links {
    margin-top: 24px;
  }

  .project-item:hover {
    padding-left: 0 !important;
    transform: none;
  }

  .contact-heading,
  .contact-header {
    width: 100% !important;

    margin: 0 0 35px 0 !important;
  }

  .contact-heading h2,
  .contact-header h2 {
    font-size: 32px !important;

    line-height: 1.2;

    margin: 0;
  }

  .contact-container {
    width: 100%;

    max-width: 100%;

    padding: 0 24px;

    box-sizing: border-box;
  }

  .contact-heading {
    max-width: 100%;

    margin-bottom: 35px;
  }

  .contact-heading h2 {
    font-size: 2rem;
  }

  .contact-content {
    display: grid;

    grid-template-columns: 1fr;

    gap: 30px;
  }

  .contact-information {
    width: 100%;
  }

  .contact-item {
    padding: 18px 0;
  }

  .contact-form {
    width: 100%;

    max-width: 100%;

    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;

    box-sizing: border-box;
  }

  .form-group textarea {
    min-height: 150px;

    resize: vertical;
  }

  .contact-form button {
    display: block;

    width: 100% !important;

    padding: 15px;

    font-size: 15px;

    font-weight: 600;
  }

  .back-to-top {
    width: auto;
  }

  body .site-footer .footer-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    width: 100% !important;
    max-width: 100% !important;

    gap: 32px !important;
  }

  body .site-footer .footer-brand,
  body .site-footer .footer-column {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body .site-footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    gap: 10px !important;
  }

  body .site-footer .footer-column a,
  body .site-footer .footer-column p {
    width: auto !important;
    max-width: 100% !important;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  body .site-footer .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    width: 100% !important;
    gap: 15px !important;
  }
  .error-body {
    min-height: 100dvh;

    overflow-x: hidden;
  }

  .error-page {
    flex: 1;

    width: 100%;

    padding: 40px 22px;

    display: flex;

    align-items: center;

    justify-content: center;
  }

  .error-content {
    width: 100%;

    max-width: 360px;

    margin: 0 auto;

    text-align: center;
  }

  .error-code {
    font-size: 0.75rem;

    letter-spacing: 3px;

    margin-bottom: 14px;

    color: black;
  }

  .error-content h1 {
    font-size: 3.2rem;

    line-height: 1.05;

    margin: 0;

    color: black;
  }

  .error-message {
    width: 100%;

    max-width: 320px;

    margin: 22px auto 0;

    font-size: 0.95rem;

    line-height: 1.6;

    color: #68717d;
  }

  .error-actions {
    width: 100%;

    margin-top: 28px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;
  }

  .error-actions .error-btn {
    width: 100%;

    max-width: 300px;

    min-width: 0;

    padding: 13px 20px;

    border-radius: 7px;

    font-size: 0.95rem;

    font-weight: 600;

    text-decoration: none;
  }

  .error-actions .error-btn-primary {
    background-color: black;

    border: 1px solid white;

    color: #ffffff;
  }

  .error-actions .error-btn-secondary {
    background-color: black;

    border: 1px solid #cfd6df;

    color: white;
  }
  .error-footer {
    width: 100%;

    padding: 16px 22px;

    border-top: 1px solid #e5e9ee;
  }

  .error-footer-content {
    width: 100%;

    max-width: 360px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    text-align: center;

    font-size: 0.78rem;
  }
}
