/* Header */

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.header-hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s ease;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 900px) {
  header {
    position: sticky;
    width: 100%;
    z-index: 999;
    margin: 0;
  }

  .header-divider {
    width: 85%;
    margin: 0 5%;
    align-items: center;
    padding: 10px;
  }

  .header-name-text {
    font-size: 18px;
  }

  .header-name-img-src {
    height: 40px;
  }

  .header-hamburger {
    display: flex;
    z-index: 1001;
  }

  .header-hamburger span {
    transition: 0.3s ease;
  }

  .header-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .header-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .header-menus {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #0b0b0b;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-top: 120px;
    transition: right 0.4s ease;
    display: flex;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  }

  .header-menus.open {
    right: 0;
  }

  .header-menu {
    font-size: 18px;
  }

  .header-language-menu {
    margin-top: 20px;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 998;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* Header */

/* Main Top */

@media (max-width: 900px) {
  .main-name-text {
    margin-top: 60px;
    font-size: 24px;
    white-space: normal;
    padding: 0 20px;
  }

  .main-name-sections {
    display: none;
  }

  .main-top-about-me {
    flex-direction: column;
    margin-top: 60px;
    text-align: center;
  }

  .main-top-about-me-img img {
    width: 180px;
  }

  .main-top-about-me-stroke-vertical {
    display: none;
  }

  .main-top-about-me-text-with-button {
    margin-left: 0;
    margin-top: 30px;
    align-items: center;
  }

  .main-top-about-me-text {
    width: 90%;
    font-size: 16px;
  }

  .main-top-about-me-button {
    font-size: 18px;
    margin-top: 30px;
  }

  .main-top-download-resume {
    font-size: 18px;
    margin-top: 20px;
  }

  .main-top-download-resume:hover {
    font-size: 18px;
  }
}

/* Main Top */

/* Reviews */

@media (max-width: 900px) {
  .reviews {
    margin-top: 70px;
    padding: 40px 0;
  }

  .reviews-track {
    animation: scrollReviewsMobile 22s linear infinite;
  }

  @keyframes scrollReviewsMobile {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .review {
    width: 250px;
    height: 210px;
    margin-right: 20px;
    padding: 18px;
    border-radius: 16px;
  }

  .review-text {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }

  .review-writer {
    font-size: 13px;
  }

  .review-writer .fi {
    width: 16px;
    height: 12px;
  }

  .review-stars {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

/* Reviews */

/* About Me*/

@media (max-width: 900px) {
  .main-about-me-experience-and-education {
    flex-direction: column;
    align-items: center;
    gap: 70px;
    padding-top: 60px;
  }

  .main-about-me-experience-title {
    font-size: 26px;
  }

  .main-about-me-experience {
    width: 100%;
    align-items: center;
  }

  .main-about-me-experience-box {
    width: 80%;
    height: auto;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-about-me-experience-box:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .main-about-me-experience-box-title {
    font-size: 20px;
  }

  .main-about-me-experience-box-description {
    font-size: 15px;
  }

  .main-about-me-experience-box-date-and-place {
    gap: 6px;
    margin-top: 15px;
  }

  .main-about-me-experience-box-place:hover {
    font-size: 14px;
  }

  .main-about-me-detail-parent {
    width: 100%;
    align-items: center;
  }

  .main-about-me-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 90%;
    height: auto;
  }

  .main-about-me-detail {
    padding: 8px 10px;
  }

  .main-about-me-detail:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(19, 117, 255, 0.25);
  }

  .main-about-me-detail span {
    font-size: 14px;
  }
}

/* About Me */

/* Contact */

@media (max-width: 900px) {
  .main-widget-gecis {
    margin-top: 80px;
  }

  .main-widget-gecis-div {
    width: 70%;
    padding: 15px 20px;
    border-radius: 25px;
  }

  .main-widget-gecis-div-text {
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .main-widget-gecis-div-text::before,
  .main-widget-gecis-div-text::after {
    display: none;
  }

  .main-contact-parent {
    width: 80%;
    padding: 25px 20px;
    border-radius: 30px;
  }

  .main-contact-flex-parent {
    flex-direction: column;
    gap: 35px;
  }

  .main-contact-elements {
    width: 100%;
  }

  .main-contact-elements-element {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 5px;
  }

  .main-contact-elements-element-title {
    font-size: 16px;
  }

  .main-contact-elements-element-description {
    font-size: 16px;
  }

  .main-contact-elements-element-description a {
    font-size: 16px;
  }

  .main-contact-elements-element-description a:hover {
    font-size: 16px;
    color: #1375ff;
  }

  .main-contact-send-email {
    width: 80%;
    padding: 25px;
    margin: auto;
  }

  .main-contact-send-email-title {
    font-size: 20px;
  }

  #emailText {
    height: 150px;
    font-size: 15px;
    padding: 15px;
  }

  .main-contact-send-email-button {
    padding: 12px;
    font-size: 15px;
  }
}

/* Contact */

/* Footer */

@media (max-width: 900px) {
  .main-footer {
    margin-top: 0px;
  }

  .footer-content {
    width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-sitemap {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  #backToTop {
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
  }
}

/* Footer */
