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

::selection {
  background-color: #8AA6D8;
  color: #191a19;
}

::-moz-selection {
  background-color: #8AA6D8;
  color: #191a19;
}

body {
  background-color: #191a19;
  color: #ebe8e8;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}
.wrapper .side-content {
  width: 280px;
  min-height: 100vh;
  background: #191a19;
  padding: 60px 40px;
  border-right: 1px solid #353434;
  position: fixed;
}
.wrapper .side-content .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.wrapper .side-content .logo-container .logo-icon {
  width: 40px;
  height: 40px;
}
.wrapper .side-content .logo-container .logo-text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #ebe8e8;
  margin: 0;
}
.wrapper .side-content .location {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #ebe8e8;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.wrapper .side-content .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wrapper .side-content .nav-menu .nav-link {
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  color: #a0a0a0;
}
.wrapper .side-content .nav-menu .nav-link:hover {
  text-decoration: underline;
  text-decoration-color: #8AA6D8;
}
.wrapper .main-content {
  flex: 1;
  margin-left: 280px;
  padding: 60px 40px;
}
.wrapper .main-content .text-link {
  text-decoration: none;
  color: #ebe8e8;
}
.wrapper .main-content .text-link:hover {
  text-decoration: underline;
  text-decoration-color: #8AA6D8;
}
.wrapper .main-content .hero-section {
  margin-bottom: 70px;
}
.wrapper .main-content .hero-section .hero-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ebe8e8;
}
.wrapper .main-content .hero-section .hero-description {
  font-size: 18px;
  font-weight: 300;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 500px;
}
.wrapper .main-content .content-section {
  margin-bottom: 60px;
}
.wrapper .main-content .content-section .section-title {
  font-size: 14px;
  font-weight: 400;
  color: #8AA6D8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.wrapper .main-content .content-section .section-title-dc {
  font-size: 18px;
  font-weight: 400;
  color: #8AA6D8;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.wrapper .main-content .content-section .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.wrapper .main-content .content-section .content-grid .content-item .item-title {
  font-size: 16px;
  font-weight: 400;
  color: #ebe8e8;
  margin-bottom: 8px;
}
.wrapper .main-content .content-section .content-grid .content-item .item-description {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.5;
}
.wrapper .main-content .content-section .interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wrapper .main-content .content-section .interest-list .interest-tag {
  font-size: 13px;
  color: #a0a0a0;
  padding: 6px 12px;
  border: 1px solid #353434;
}
.wrapper .main-content .content-section .interest-list .interest-tag:hover {
  border-color: #8AA6D8;
}
.wrapper .main-content .about-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wrapper .main-content .about-header .author-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.wrapper .main-content .about-header .about-intro {
  flex: 1;
}
.wrapper .main-content .content-text {
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.7;
}
.wrapper .main-content .content-text p {
  margin-bottom: 15px;
}
.wrapper .main-content .content-text p:last-child {
  margin-bottom: 0;
}
.wrapper .main-content .email-link {
  position: relative;
}
.wrapper .main-content .email-link:hover::before {
  content: "contact@ramenaru.me";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #8AA6D8;
  padding: 5px 10px;
  font-size: 11px;
  white-space: nowrap;
  border: 1px solid #353434;
  margin-bottom: 5px;
}
.wrapper .main-content .footer {
  border-top: 1px solid #353434;
  padding-top: 40px;
  margin-top: 40px;
}
.wrapper .main-content .footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper .main-content .footer .footer-content .footer-text {
  font-size: 13px;
  color: #a0a0a0;
}
.wrapper .main-content .footer .footer-content .footer-links {
  display: flex;
  gap: 25px;
}
.wrapper .main-content .footer .footer-content .footer-links .footer-link {
  font-size: 13px;
  color: #a0a0a0;
  text-decoration: none;
}
.wrapper .main-content .footer .footer-content .footer-links .footer-link:hover {
  text-decoration: underline;
  text-decoration-color: #8AA6D8;
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }
  .wrapper .side-content {
    width: 100% !important;
    min-height: auto;
    position: relative;
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid #353434;
  }
  .wrapper .side-content .logo-container {
    margin-bottom: 30px;
  }
  .wrapper .side-content .location {
    margin-bottom: 30px;
  }
  .wrapper .main-content {
    margin-left: 0;
    padding: 40px 20px;
  }
  .wrapper .main-content .hero-section {
    margin-bottom: 60px;
  }
  .wrapper .main-content .hero-section .hero-title {
    font-size: 36px;
  }
  .wrapper .main-content .content-section {
    margin-bottom: 50px;
  }
  .wrapper .main-content .footer .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

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