* {
    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*/

  .media-gallery {
    text-align: center;
    padding: 80px 20px;
    background-color: #061312;
  }
  
  .media-gallery .section-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    color: #00a8af;
    font-family: 'Amatic SC', cursive;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
  
  .gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .gallery-item {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .gallery-item h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  /* Reuse your stacked card effect */
  .stack {
    transition: 0.25s ease;
  }
  .stack:hover {
    transform: rotate(5deg);
  }
  .stack:hover .card::before {
    transform: translateY(-2%) rotate(-4deg);
  }
  .stack:hover .card::after {
    transform: translateY(2%) rotate(4deg);
  }
  
  .card {
    aspect-ratio: 3 / 2;
    background-color: #fff;
    position: relative;
    transition: 0.15s ease;
    cursor: pointer;
    padding: 5%;
  }
  .card::before,
  .card::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    
    background-color: #fff;
    transform-origin: center center;
    z-index: -1;
    transition: 0.15s ease;
    top: 0;
    left: 0;
  }
  .card::before {
    transform: translateY(-2%) rotate(-6deg);
  }
  .card::after {
    transform: translateY(2%) rotate(6deg);
  }
  
  .image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 4px solid #000;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  
  /* Responsive */
  @media (max-width: 900px) {
    .gallery-wrapper {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /*Slider*/

  .gallery-slider {
    background: #061312;
    padding: 80px 20px;
    font-family: 'Amatic SC', cursive;
    color: #fff;
  }
  
  .slider-section {
    margin-bottom: 60px;
    text-align: center;
  }
  
  .slider-section h2 {
    font-size: 3rem;
    color: #00a8af;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .slider-section h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }

  .video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
  
  .checkout {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .video-wrapper h4{
      font-size: 1.5rem;
      color: white;
      margin-bottom: 20px;
      letter-spacing: 2px;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
  }
  
  .video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .slider-section h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  
  .slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
  }
  .slider-track::-webkit-scrollbar {
    display: none;
  }
  
  .slide {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #000;
    background: #eee;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  .slide img:hover {
    filter: grayscale(0%) contrast(1.3);
    transform: scale(1.05);
  }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00a8af;
    color: #000;
    font-size: 2rem;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
  }
  .slider-btn:hover {
    background: #028e93;
    transform: scale(1.1);
  }
  .slider-btn.left {
    left: 10px;
  }
  .slider-btn.right {
    right: 10px;
  }
  
  /* Fullscreen Modal Styles */
  .fullscreen-toggle {
    display: none;
  }
  
  .fullscreen-toggle:checked + img {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: 90vh;
    max-width: 90vw;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: contain;
    z-index: 1000;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 168, 175, 0.8);
    animation: zoomIn 0.4s ease;
  }
  
  @keyframes zoomIn {
    from {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0;
    }
    to {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    .slider-section h2 {
      font-size: 2.3rem;
    }
    .slide {
      width: 180px;
      height: 260px;
    }
  }
  

  /* 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;
  }


  