@font-face {
  font-family: "Playfair Display";
  src: url("/assets/css/fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/css/fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/css/fonts/Playfair_Display/static/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/css/fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/css/fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/css/fonts/Montserrat/static/Montserrat-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #3C2E39;
  line-height: 1.6;
}

main {
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Georgia, serif;
  color: #3C2E39;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
}

a {
  color: #A993B9;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(144.3595505618, 116.0561797753, 164.9438202247);
  text-decoration: underline;
}

code {
  font-family: "Monaco", "Courier New", monospace;
  background-color: #f4f2f3;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  color: #3C2E39;
}

pre {
  background-color: #f4f2f3;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

input, textarea {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  margin-top: 0.3rem;
  width: 100%;
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
input:focus, textarea:focus {
  border-color: #A993B9;
  outline: none;
  box-shadow: 0 0 5px rgba(169, 147, 185, 0.5);
}

.btn-primary {
  background-color: #A993B9;
  color: #fdfcfd;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.4s ease, transform 0.4s ease;
  border: none;
  font-size: 1rem;
}
.btn-primary:hover {
  background-color: rgb(144.3595505618, 116.0561797753, 164.9438202247);
  transform: scale(1.01);
  color: #fdfcfd;
  cursor: pointer;
  text-decoration: none;
}

.btn-light {
  background-color: #ECE1EB;
  color: #3C2E39;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.4s ease, transform 0.4s ease;
}
.btn-light:hover {
  background-color: rgb(216.2244897959, 193.7755102041, 214.1836734694);
  transform: scale(1.01);
  color: #3C2E39;
  cursor: pointer;
  text-decoration: none;
}

.form-feedback {
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.form-feedback.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-feedback.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.header {
  background-color: #F9F3F7;
  padding: 1rem 3rem;
}
@media (max-width: 767px) {
  .header {
    padding: 1rem;
  }
}
.header .container .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3C2E39;
}
.header .container .nav .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .container .nav a {
  color: #3C2E39;
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.header .container .nav button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header .container .nav button:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header .container .nav .title {
  display: flex;
  align-items: center;
  color: #3C2E39;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .header .container .nav .title {
    font-size: 1.5rem;
  }
}
.header .container .nav .title .logo {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .header .container .nav .title .logo {
    width: 50px;
    height: 50px;
  }
}

.footer {
  background-color: #F9F3F7;
  padding: 3rem;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .container .copy {
  color: #3C2E39;
  font-size: 16px;
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.footer .container .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .container .social-links a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.footer .container .social-links a:hover {
  transform: scale(1.2);
}
.footer .container .social-links svg {
  fill: #A993B9;
  transition: fill 0.2s ease;
}
.footer .container .social-links a:hover svg {
  fill: rgb(144.3595505618, 116.0561797753, 164.9438202247);
}

.static-page {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 4rem;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .static-page {
    padding: 2rem;
  }
}

.static-page-header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}

.static-page-title {
  font-family: "Montserrat", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #3C2E39;
  text-align: center;
}
@media (max-width: 767px) {
  .static-page-title {
    font-size: 2rem;
  }
}

.static-page-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3C2E39;
}
.static-page-content p {
  margin-bottom: 2rem;
}
.static-page-content a {
  color: #A993B9;
  text-decoration: underline;
}
.static-page-content a:hover {
  color: rgb(144.3595505618, 116.0561797753, 164.9438202247);
}

.blog {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 0;
}

.blog-intro {
  margin: 2rem auto;
}
.blog-intro h1 {
  font-size: 3rem;
  color: #3C2E39;
  text-align: center;
}

.search-bar {
  position: relative;
  margin-bottom: 3rem;
}
.search-bar input {
  width: 100%;
  padding: 1rem 2rem;
  padding-right: 45px;
  border: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: border-color 0.2s ease;
}
.search-bar input:focus {
  outline: none;
  border-color: #A993B9;
}
.search-bar input::placeholder {
  color: #b2b1b2;
}
.search-bar .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  fill: #b2b1b2;
  pointer-events: none;
}

.categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}
.categories .category {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #3C2E39;
  background-color: #f4f2f3;
  transition: all 0.2s ease;
}
.categories .category:hover {
  background-color: #A993B9;
  color: #FFF;
  text-decoration: none;
}
.categories .category.active {
  background-color: #A993B9;
  color: white;
}
@media (max-width: 767px) {
  .categories {
    justify-content: center;
  }
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.post-item {
  background-color: #F9F3F7;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid transparent;
}

.post-title {
  margin-bottom: 1.5rem;
  font-family: "Inter", "Open Sans", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.post-title a {
  color: #3C2E39;
  font-size: 1.75rem;
  font-weight: 600;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.post-title a:hover {
  color: #A993B9;
  text-decoration: none;
}

.post-excerpt {
  margin-bottom: 1rem;
  color: #3C2E39;
  line-height: 1.6;
  font-size: 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #b2b1b2;
  flex-wrap: wrap;
}
.post-meta time {
  font-weight: 500;
}
.post-meta .separator {
  color: rgb(203.335483871, 202.664516129, 203.335483871);
}
.post-meta .post-categories {
  display: flex;
  gap: 6px;
  align-items: center;
}
.post-meta .category-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: white;
  color: rgb(144.3595505618, 116.0561797753, 164.9438202247);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

.no-posts {
  text-align: center;
  color: #b2b1b2;
  padding: 4rem 0;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}
.pagination .pagination-link {
  padding: 0.5rem 2rem;
  border-radius: 6px;
  background-color: #f4f2f3;
  color: #3C2E39;
  transition: all 0.2s ease;
}
.pagination .pagination-link:hover:not(.disabled) {
  background-color: #A993B9;
  color: white;
  text-decoration: none;
}
.pagination .pagination-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .pagination-info {
  color: #b2b1b2;
  font-size: 0.9rem;
}

.post {
  max-width: 1024px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .post {
    padding: 2rem;
  }
}

.post-header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}

.post-title {
  font-family: "Montserrat", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #3C2E39;
}
@media (max-width: 767px) {
  .post-title {
    font-size: 2rem;
  }
}

.post-description {
  font-size: 1.2rem;
  color: #3C2E39;
  line-height: 1.6;
  margin-top: 2rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #b2b1b2;
}
.post-meta time {
  font-weight: 500;
}
.post-meta .separator {
  color: rgb(203.335483871, 202.664516129, 203.335483871);
}
.post-meta .post-categories {
  display: flex;
  gap: 6px;
}
.post-meta .category-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #A993B9;
  color: #FFF;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.post-meta .category-badge:hover {
  background-color: rgb(242.9213483146, 239.8314606742, 245.1685393258);
  transform: scale(1.05);
  text-decoration: none;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3C2E39;
}
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-family: "Montserrat", Georgia, serif;
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: #3C2E39;
}
.post-content h2 {
  font-size: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgb(242.9213483146, 239.8314606742, 245.1685393258);
}
.post-content h3 {
  font-size: 1.5rem;
}
.post-content h4 {
  font-size: 1.3rem;
}
.post-content p {
  margin-bottom: 1rem;
}
.post-content ul, .post-content ol {
  margin-bottom: 2rem;
  margin-left: 3rem;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 0.5rem;
}
.post-content a {
  color: #A993B9;
  text-decoration: underline;
}
.post-content a:hover {
  color: rgb(144.3595505618, 116.0561797753, 164.9438202247);
}
.post-content blockquote {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-left: 4px solid #A993B9;
  background-color: white;
  font-style: italic;
}
.post-content blockquote p {
  margin: 0;
}
.post-content code {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9em;
  background-color: #f4f2f3;
  padding: 2px 6px;
  border-radius: 3px;
  color: #3C2E39;
}
.post-content pre {
  background-color: #f6f8fa;
  padding: 2rem;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}
.post-content pre code {
  background: none;
  padding: 0;
  font-size: 0.95em;
  line-height: 1.5;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}
.post-content hr {
  border: none;
  border-top: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
  margin: 3rem 0;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgb(228.6709677419, 228.3290322581, 228.6709677419);
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .post-navigation {
    grid-template-columns: 1fr;
  }
}
.post-navigation .nav-link {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #f4f2f3;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.post-navigation .nav-link:hover {
  background-color: white;
  text-decoration: none;
  transform: translateY(-2px);
}
.post-navigation .nav-link .nav-label {
  font-size: 0.85rem;
  color: #b2b1b2;
  margin-bottom: 0.5rem;
}
.post-navigation .nav-link .nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: #3C2E39;
}
.post-navigation .nav-prev {
  text-align: left;
}
.post-navigation .nav-next {
  text-align: right;
  grid-column: 2;
}
@media (max-width: 767px) {
  .post-navigation .nav-next {
    grid-column: 1;
  }
}

.section-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-container .title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-container h3 {
  font-family: "Montserrat", Georgia, serif;
  font-size: 1.5rem;
  color: #3C2E39;
  margin-bottom: 1rem;
}

.hero {
  background: #F9F3F7;
}
.hero .section-container {
  padding-top: 1rem;
}
.hero img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #EDE7EB;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .hero img {
    width: 200px;
    height: 200px;
  }
}
.hero h1 {
  font-family: "Montserrat", Georgia, serif;
  font-size: 2.5rem;
  color: #3C2E39;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3C2E39;
}
@media (max-width: 767px) {
  .hero h2 {
    font-size: 1.25rem;
  }
}
.hero .hero-description {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.125rem;
  color: #3C2E39;
}
@media (max-width: 767px) {
  .hero .hero-description {
    font-size: 1rem;
  }
}
.hero .hero-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.section-title {
  font-family: "Montserrat", Georgia, serif;
  font-size: 2rem;
  color: #3C2E39;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: #3C2E39;
  text-align: center;
}
@media (max-width: 767px) {
  .section-description {
    font-size: 1rem;
  }
}

.about .section-container {
  padding-bottom: 1.5rem;
}
.about .section-description {
  display: none;
}
.about .content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .about .content {
    grid-template-columns: 1fr;
  }
}
.about .content p {
  font-size: 1rem;
  color: #3C2E39;
  line-height: 1.6;
}
.about .content .skills-grid .skill-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #b2b1b2;
}

#highlights-container, #timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#highlights-container .highlight-item, #highlights-container .timeline-item, #timeline-container .highlight-item, #timeline-container .timeline-item {
  border: 1px solid #E5E7Eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#highlights-container .highlight-item:hover, #highlights-container .timeline-item:hover, #timeline-container .highlight-item:hover, #timeline-container .timeline-item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.skill-items {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 1rem;
}
.skill-items li {
  background-color: #ECE1EB;
  color: #A993B9;
  padding: 0.3rem 0.5rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.875rem;
}

.badge-current {
  background-color: #A993B9;
  color: #FFF;
  padding: 0.125rem 0.625rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-left: 0.5rem;
}

.history #timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.history .timeline-item .main-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .history .timeline-item .main-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.history .timeline-item .main-info .company {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.history .timeline-item .main-info .company h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.history .timeline-item .main-info .timeline-date {
  font-size: 0.875rem;
  color: #7f7d7d;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
@media (max-width: 767px) {
  .history .timeline-item .main-info .timeline-date {
    align-items: flex-start;
  }
}
.history .timeline-item .technologies {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .history .timeline-item .technologies .skill-items {
    flex-wrap: wrap;
  }
}

.contact .section-container {
  padding-top: 1rem;
}
.contact .contact-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 40% 60%;
  width: 100%;
}
@media (max-width: 1023px) {
  .contact .contact-content {
    grid-template-columns: 1fr;
  }
}
.contact .contact-content .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact .contact-content .info-item .info-label {
  font-weight: 600;
}
.contact .contact-content .info-item a {
  color: #3C2E39;
  text-decoration: none;
}
.contact .contact-content .info-item a:hover {
  text-decoration: underline;
}
.contact .contact-content .socials {
  margin-top: 2rem;
}
.contact .contact-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.contact .contact-content .social-links {
  display: flex;
  gap: 10px;
}
.contact .contact-content .social-links a {
  font-size: 1.5rem;
  color: #3C2E39;
  transition: color 0.3s ease;
}
.contact .contact-content .social-links a:hover {
  color: #A993B9;
}
.contact .contact-content .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact .contact-content .form-group {
  margin-bottom: 1rem;
}
.contact .contact-content .form-group label {
  display: block;
  font-size: 0.875rem;
}
.contact .contact-content .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/*# sourceMappingURL=main.css.map */