   /* Typografická škála - Minor Third */
  h1 {
    font-size: 2.8rem; 
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal; 
    color: #3D0042;  /* 48px */
  }

  h2 {
    font-size: 2.5rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #3D0042;  /* 40px */
  }

  h3 {
    font-size: 2rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #3D0042;  /* 33.33px */
  }

  h4 {
    font-size: 1.75rem; 
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #3D0042; /* 27.77px */
  }

  h5 {
    font-size: 1.4rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #3D0042;  /* 23.15px */
  }

  h6 {
    font-size: 1.2rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;  /* 19.29px */
  }

  p, span {
    font-size: 1.35rem; 
    color: #3D0042;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.6;   /* 16px */
  }

   /* Hlavní flex-kontext */
   .container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-right: 48px;
    margin-left: 48px;
  }

  /* LEVÁ část – fixní */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background: #F3E4F4;
    overflow: hidden;
  }

  /* Kontejner obrázku (absolutně) */
  .image-container {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    max-width: 45rem;      /* nikdy širší než 720px */
    max-height: 50rem;     /* nikdy vyšší než 800px */
  }
  .image-container img{
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    background-color: #F3E4F4;
    border-radius: 36%;
  }
  .spark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14.875rem;
    height: 14.875rem;
    z-index: 100;
  }

  /* PRAVÁ část – scrollovatelná */
  .content {
    margin-left: 50%;
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    padding-left: 118px;
    padding-top: 96px;
    z-index: 1;
    max-width: 680px;
    scrollbar-width: none;  /* Pro Firefox */
    -ms-overflow-style: none;  /* Pro IE a Edge */
  }

  .content::-webkit-scrollbar {
    display: none;  /* Pro Chrome, Safari a Opera */
  }

  .hero-message{
    padding-top: 32px;
    padding-bottom: 24px;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1.65rem;
    opacity: 0.8;
  }
  .separator{
    width: 48px;
    height: 2px;
    background-color: #F3E4F4;
  }
  .job-container{
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
  }
  .job-title{
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #3D0042;
  }
  .job-position{
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    opacity: 0.8;
    color: #3D0042;
  }
  .linkedin-link{
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #0A66C2;
  }
  .button-container {
    padding-top: 7rem;
    display: flex;
    flex-direction: row;
    align-items: left;
  }
  .primary-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #3D0042;
    border-radius: 999px;
    border: 2px solid #3D0042;
    background-color: white;
    gap: 24px;
    padding: 24px 48px;
    text-decoration: none;
    font-size: 1.4rem;
    font-optical-sizing: auto;
    font-weight: 300;
    transition: background-color 0.2s ease-in-out;
  }
  .primary-button:hover {
    background-color: #F3E4F4;
    color: #3D0042;
  }
  .primary-button .arrow {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .achievements-container {
    padding-top: 118px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .achievement-item {
    color: #3D0042;
    display: flex;
    border-radius: 48px;
    height:fit-content;
    width: 100%;
    flex-direction: column;
  }
  .achievement-title{
    font-size: 2.5rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    padding-bottom: 8px;
  }
  .achievement-description{
    font-size: 1.2rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 1.8rem;
  }
  .achievement-first {
    grid-column: 1;
    grid-row: 1;
    background-color: #F3E4F4;
    display: flex;
    padding: 32px 48px;
    border-radius: 48px;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    min-height: 260px;
  }
  .achievement-second {
    grid-column: 2;
    grid-row: 1;
    background-color: #F1D8F2;
    display: flex;
    padding: 36px 48px;
    border-radius: 48px;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    min-height: 260px;
  }
  .achievement-third {
    grid-column: 1;
    grid-row: 2;
    background-color: #C9E5C9;
    display: flex;
    padding: 36px 48px;
    border-radius: 48px;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    min-height: 260px;
  }
 
  .achievement-fourth {
    grid-column: 2;
    grid-row: 2;
    background-color: #EFF4E4;
    display: flex;
    padding: 36px 48px;
    border-radius: 48px;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    min-height: 260px;
  }
  .achievement-third .achievement-title,
  .achievement-third .achievement-description,
  .achievement-fourth .achievement-title,
  .achievement-fourth .achievement-description {
    color: #2D3004;
  }

  .achievement-first .achievement-title,
  .achievement-first .achievement-description,
  .achievement-second .achievement-title,
  .achievement-second .achievement-description {
    color: #3D0042;
  }
  .recommendations-container {
    padding-top: 118px;
    display: flex;
    flex-direction: column;
  }
  .recommendations-container h3 {
    padding-bottom: 48px;
  }
  .recommendation-item {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .recommendation-item img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
  }
  .recommendation-item .job-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
  }
  .recommendations-container .separator {
    margin-bottom: 48px;
  }
  .recommendations-container .recommendation-item .job-container .linkedin-link {
    display: none;
    position: absolute;
    bottom: -28px;
    left: 24px;
    color: #0A66C2;
    background-color: white;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-decoration: none;
  }
  .recommendations-container .recommendation-item .job-container:hover .linkedin-link {
    display: block;
  }
  .recommendations-container .recommendation-item .job-container:hover .linkedin-link:hover {
    background-color: #0A66C2;
    color: white;
  }
  .education-container {
    padding-top: 118px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .education-container h3 {
    padding-bottom: 24px;
  }
  .education-item h4 {
    font-weight: 500;
  }
  .education-item {
    display: flex;
    flex-direction: column;
    align-items: left ;
    gap: 16px;
    padding: 32px;
    background-color: #F3E4F4;
    border-radius: 48px;
  }
  .education-item .separator {
   background-color: white;
   margin-top: 8px;
   margin-bottom: 8px;
  }
  .additional-info {
    padding-top: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .additional-info-title {
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  .additional-info-time {
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    opacity: 0.8;
  }
  .tools-container {
    padding-top: 118px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .tools-container h3 {
    padding-bottom: 24px;
  }
  .tools-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    width: 100%;
  }
  .tool-item-gemini,
  .tool-item-excel,
  .tool-item-powerpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 48px;
    padding: 24px;
    text-align: center;
    height: 100%;
  }
  .tool-item-gemini {
    background: #E5F4FD;
  }
  .tool-item-excel {
    background: #EFF4E4;
  }
  .tool-item-powerpoint {
    background: #FFEEE8;
  }
  .tool-item-gemini img {
    width: 86px;
    height: 86px;
    object-fit: cover;
  }
  .tool-item-excel img {
    width: 86px;
    height: 86px;
    object-fit: cover;
  }
  .tool-item-powerpoint img {
    width: 86px;
    height: 86px;
    object-fit: cover;  
  }
  .tool-title {
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  .why-me-container {
    padding-top: 118px;
    padding-bottom: 118px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  } 
  .why-me-container h3 {
    padding-bottom: 24px;
  }
  .skills-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .skill-item {
    padding: 16px 24px;
    background-color: #F3E4F4;
    border-radius: 48px;
    font-size: 1.1rem;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #3D0042;
    opacity: 0.8;
  }
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: calc(100% + 118px);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: top;
    gap: 24px;
    background-color: #F3E4F4;
    margin-left: -118px;
    padding-top: 72px;
    padding-left: 118px;
    height: 50vh;
    z-index: 100;
    border-radius: 0px 118px 0px 0px;
  }
  .footer-object {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transform: translate(0%, -100%);
  }
  .footer-object svg {
    width: 100%;
    height: 100%;
  }
  .mailto-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 16px;
  }
  .mailto-container .mailto-link {
    text-decoration: none;
    color: #3D0042;
    font-size: 2.2rem;
    font-optical-sizing: auto;
    font-weight: 500;
  }
  .mailto-container .separator{
    background-color: white;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .calendly-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 16px;
  }
  .calendly-link, .link-tereza{
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal; 
    color: #3D0042; 
    font-size: 1.35rem; 
    opacity: 0.8;
    line-height: 1.6; 
    padding-left: 4px;
  }
  .tereza{
    padding-top: 24px;
  }

  .mailto-container a {
    color: #3D0042;
    font-size: 1.2rem;
    font-weight: 300;
    text-decoration: underline;
  }

  .calendly-container a {
    font-size: 1.2rem;
    font-weight: 300;
    color: #3D0042;
    text-decoration: underline;
  }
  .mailto-container a:hover,
  .calendly-container a:hover {
    text-decoration: none;
  }

  /* Responsivně pod sebe na mobilech */
  @media (max-width: 68rem){
    .arrow{
      display: none;
    }
    .achievements-container {
      grid-template-columns: 1fr;
      gap: 24px;
      padding-top: 96px;
    }

    .achievement-first,
    .achievement-second,
    .achievement-third,
    .achievement-fourth {
      grid-column: 1;
    }

    .achievement-first { grid-row: 1; }
    .achievement-second { grid-row: 2; }
    .achievement-third { grid-row: 3; }
    .achievement-fourth { grid-row: 4; }
  }
  .job-container{
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center-top;
    margin-top: 24px;
  }
  .mailto-container a,
    .calendly-container a {
      font-size: 1.2rem;
      color: #3D0042;
      font-weight: 500;
    }
    
  @media (max-width: 48rem) {
    .container {
      flex-direction: column;
      overflow: hidden;
      height: auto;
      margin: 0;
      padding: 0;
    }
    
    .sidebar {
      position: relative;
      width: 100%;
      height: auto;
      padding: 0;
      overflow: visible;
    }
    
    .image-container {
      position: relative;
      transform: none;
      top: auto;
      right: auto;
      width: 100vw;
      max-width: none;
      margin: 0;
      padding-bottom: 0;
    }

    .image-container img {
      width: 100%;
      height: auto;
      border-radius: 0;
    }

    .spark {
      display: none;
    }
    
    .content {
      margin: 0;
      padding: 48px 24px 0 24px;
      height: auto;
      overflow: visible;
      max-width: 100%;
    }
    .achievements-container {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-top:48px;
    }
    .achievement-first,
    .achievement-second,
    .achievement-third,
    .achievement-fourth {
      min-height: 200px;
      width: 100%;
    }
    .tools-box {
      grid-template-columns: 1fr;
    }
    .footer {
      position: relative;
      width: 100vw;
      margin: 48px 0 0 -24px;
      padding: 48px 24px;
      min-height: 180px;
      border-radius: 0;
      background-color: #F3E4F4;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .footer-object {
      display: none;
    }
    .mailto-container,
    .calendly-container {
      text-align: left;
      width: 100%;
    }


    .calendly-container a {
      font-size: 1.2rem;
      font-weight: 500;
      color: #3D0042;
      text-decoration: none;
    }
    .mailto-link{
      text-decoration: none;
      font-size: 2rem;
      font-weight: 500;
    }
  }

  @media (max-width: 36rem) {
    .mailto-container a,
    .calendly-container a {
      font-size: 1.2rem;
      color: #3D0042;
      font-weight: 500;
    }
    .mailto-link{
      font-size: 2rem;
      font-weight: 500;
      text-decoration: none;
    }
    .content {
      padding: 48px 16px 0 16px;
    }

    .footer {
      margin: 32px 0 0 -16px;
      padding: 32px 16px;
    }
  }

  @media (min-width: 68rem) {
    .tools-box {
      grid-template-columns: repeat(3, 1fr);
    }
  }