* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #061312;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navigation */
  nav {
    background-color: #010f10;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  nav .logo a{
    font-size: 2.5rem;
    font-weight: bold;
    color: #00a8af;
    font-family: 'Amatic SC', cursive;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  nav a:hover {
    color: #00a8af;
  }
  
  #contact {
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  #contact .section-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Amatic SC', cursive;
  }
  
  #contact p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  #contact input,
  #contact textarea {
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: #1e2b2e;
    color: #fff;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  #contact input::placeholder,
  #contact textarea::placeholder {
    color: #bbb;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: none;
    background: #26383d;
  }
  
  #contact button {
    align-self: center;
    border-radius: 10px;
    background: #00a8af;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    padding: 0.75em 1.5em;
    transform: translateY(-0.2em);
    transition: transform 0.1s ease, background 0.3s;
  }
  
  #contact button:hover {
    transform: translateY(-0.33em);
    background: #217c7c;
  }
  
  /* Main */

  .timeline-wrapper {
    background: #061312;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
  }
  
  /* Top section */
  .timeline-top-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    border: 2px solid #00a8af;
    border-radius: 16px;
    padding: 40px 20px;
    background-color: #0b1a1c;
  }
  
  .timeline-top-section h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 3rem;
    text-transform: uppercase;
    color: #00a8af;
  }
  
  .timeline-top-section h5 {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 20px;
  }
  
  /* Timeline core */
  .timeline {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
  }
  
  .timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #00a8af, #004f50);
    transform: translateX(-50%);
    z-index: 1;
  }
  
  /* Timeline items */
  .timeline-item {
    position: relative;
    width: 100%;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(80px);
    animation: fadeUp 1.2s forwards ease-out;
  }
  
  .timeline-item:nth-child(even) {
    animation-name: fadeRight;
  }
  
  .timeline-item:nth-child(odd) {
    animation-name: fadeLeft;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Direction containers */
  .timeline-item .direction-l {
    text-align: right;
    max-width: 45%;
    margin-right: 55%;
  }
  
  .timeline-item .direction-r {
    text-align: left;
    max-width: 45%;
    margin-left: 55%;
  }
  
  /* Flag + Time bubble */
  .flag-wrapper {
    margin-bottom: 10px;
  }
  
  .flag {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .flag:hover {
    transform: scale(1.05);
  }
  
  .time-wrapper .time {
    display: inline-block;
    background: #00a8af;
    color: #fff;
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-top: 8px;
    margin-left: 10px;
    box-shadow: 0 0 10px rgba(0,168,175,0.5);
  }
  
  /* Content card */
  .desc {
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 168, 175, 0.1);
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .desc:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 168, 175, 0.2);
  }
  
  .desc h4 {
    color: #00a8af;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .desc h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .desc p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
    margin: 4px 0;
  }
  
  .flag a {
    color: #000; 
    text-decoration: none;
  }
   
  .flag a:hover {
    text-decoration: none;
    color: #00a8af; 
  }
  

  /* Responsive Design */
  @media (max-width: 768px) {
    .timeline:before {
      left: 20px;
    }
  
    .timeline-item .direction-l,
    .timeline-item .direction-r {
      margin: 0 auto !important;
      text-align: left !important;
      max-width: 90%;
    }
  
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
      animation-name: fadeUp;
    }
  }
  
  /* Skills */
  
  .skills-wrapper {
    background: #061312;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    color: #eee;
    text-align: center;
  }
  
  .skills-top {
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 30px;
    background-color: #0b1a1c;
    border: 2px solid #00a8af;
    border-radius: 16px;
    
  }
  
  .skills-top h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 3rem;
    color: #00a8af;
    margin-bottom: 10px;
  }
  
  .skills-top p {
    color: #ccc;
    font-size: 1.1rem;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .skill-card {
    background: #0b1a1c;
    border: 1.5px solid #00a8af;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 0 15px rgba(0, 168, 175, 0.1);
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  
  .skill-card:nth-child(1) { animation-delay: 0.1s; }
  .skill-card:nth-child(2) { animation-delay: 0.3s; }
  .skill-card:nth-child(3) { animation-delay: 0.5s; }
  .skill-card:nth-child(4) { animation-delay: 0.7s; }
  
  .skill-card h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 1.8rem;
    color: #00a8af;
    margin-bottom: 15px;
  }
  
  .skill-card ul {
    list-style: none;
    padding-left: 0;
  }
  
  .skill-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 1rem;
  }
  
  .skill-card ul li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #00a8af;
    font-size: 0.9rem;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 600px) {
    .skill-card {
      padding: 20px 15px;
    }
  
    .skills-top h2 {
      font-size: 2.5rem;
    }
  }
  

  /* Footer */
  footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #010f10;
    color: #666;
  }
  
  /* Social Icons */
  ul {
    list-style: none;
  }
  
  .example-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .example-2 .icon-content {
    margin: 0 10px;
    position: relative;
  }
  
  .example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
  }
  .example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
  }
  .example-2 .icon-content a:hover {
    color: white;
  }
  .example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
  }
  .example-2 .icon-content a:hover .filled {
    height: 100%;
  }
  
  .example-2 .icon-content a[data-social="linkedin"] .filled,
  .example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
    background-color: #00a8af;
  }
  .example-2 .icon-content a[data-social="instagram"] .filled,
  .example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
    background: #00a8af;
  }
  .example-2 .icon-content a[data-social="youtube"] .filled,
  .example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
    background-color: #00a8af;
  }
  
  /* Karten in About me */ 
  .card-l {
    font-family: Montserrat, sans-serif;
    width: auto;
    height: auto;
    translate: -6px -6px;
    background: #00a8af;
    border: 3px solid #000000;
    box-shadow: -12px -12px 0 rgba(0, 168, 175, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top-left-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 0;
  }
  
  .card-l:hover,
  .card-r:hover {
    animation: shake 0.4s ease;
  }
  
  @keyframes shake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-4px, 0); }
    40% { transform: translate(4px, 0); }
    60% { transform: translate(-4px, 0); }
    80% { transform: translate(4px, 0); }
    100% { transform: translate(0, 0); }
  }
  
  
  .card-r{
    font-family: Montserrat, sans-serif;
    width: auto;
    height: auto;
    translate: -6px -6px;
    background: #00a8af;
    border: 3px solid #000000;
    box-shadow: 12px 12px 0 rgba(0, 168, 175, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top-left-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 0;
  }
  
  .head {
    font-family: Montserrat, sans-serif;
    font-size: 25px;
    font-weight: 900;
    width: auto;
    height: auto;
    background: #00a8af;
    padding: 5px 12px;
    color: #fff;
    border-bottom: 3px solid #000000;
  }
  
  .content {
    padding: 8px 12px;
    font-size: 20px;
    font-weight: 600;
    background: #fff;
    color: #000;
  }
  
  .button-pt {
    padding: 5px 10px;
    margin-top: 10px;
    border: 3px solid #000000;
    box-shadow: 3px 3px 0 #000000;
    font-weight: 750;
    background: #4ade80;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .button-pt :hover {
    translate: 1.5px 1.5px;
    box-shadow: 1.5px 1.5px 0 #000000;
    background: #fff;
  }
  
  .button-pt :active {
    translate: 3px 3px;
    box-shadow: 0 0 0 #000000;
  }
  
  .card:hover {
    translate: -6px;
  }