/* Zain Font Imports */
@font-face {
  font-family: 'Zain-Black';
  src: url('../fonts/Zain-Black-BF66ac52d77ca46.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Zain-Bold';
  src: url('../fonts/Zain-Bold-BF66ac52d79a893.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Zain-ExtraBold';
  src: url('../fonts/Zain-ExtraBold-BF66ac52d7dd4b3.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Zain-ExtraLight';
  src: url('../fonts/Zain-ExtraLight-BF66ac52d83dd47.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Zain-Italic';
  src: url('../fonts/Zain-Italic-BF66ac52d836794.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Zain-Light';
  src: url('../fonts/Zain-Light-BF66ac52d83384b.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Zain-LightItalic';
  src: url('../fonts/Zain-LightItalic-BF66ac52d84f25c.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Zain-Regular';
  src: url('../fonts/Zain-Regular-BF66ac52d73eb10.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Base Reset und Mobile-First */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Zain-Regular", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.homepage {
  background-color: #3d3024;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}

.rectangle-6387 {
  background: #3d3024;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.effect-top {
  background: #e5994c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: fixed;
  left: 20px;
  top: 80px;
  filter: blur(40px);
  z-index: -1;
}

.effect-buttom {
  background: #e5994c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  top: 5%;
  filter: blur(40px);
  z-index: -1;
}

/* Desktop Effects */
@media (min-width: 768px) {
  .effect-top {
    width: 120px;
    height: 120px;
    left: 80px;
    top: 120px;
    filter: blur(60px);
  }
  
  .effect-buttom {
    width: 120px;
    height: 120px;
    right: 100px;
    filter: blur(60px);
  }
}

.frame-20 {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 30rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Spacing */
@media (min-width: 768px) {
  .frame-20 {
    padding: 4rem 2rem;
    gap: 20rem;
  }
}

/* Profile Section */
.me {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.profilbild {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .profilbild {
    width: 160px;
    height: 160px;
  }
}

.profilbild-bg {
  background: #ffffff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.logo {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  left: 1px;
  position: absolute;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8);
  object-fit: cover;
} 

:root {
  --speed: 3s;      /* Dauer der Schreibanimation */
  --cursor-blink: 0.8s;
  --chars: 12;      /* genaue Anzahl Zeichen in der .title-name Textzeile */
}

.title-name {
  color: #e5994c;
  text-align: center;
  font-family: "Zain-Black", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  height: 2.5rem;
  line-height: 3rem;
  /* background-color: wheat; */

  border-right: .1em solid rgb(255, 255, 255);

  animation:
    blink-cursor var(--cursor-blink) step-end infinite;
}



@keyframes blink-cursor {
  0%, 49% { border-right-color: rgb(255, 255, 255); }
  50%, 100% { border-right-color: transparent; }
}

@media (min-width: 480px) {
  .title-name {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .title-name {
    font-size: 3.5rem;
  }
}


.text-description {
  color: #f0e6d2;
  text-align: center;
  font-family: "Zain-Black", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .text-description {
    font-size: 1.2rem;
  }
}

.text-3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.text-welcome {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

@media (min-width: 768px) {
  .text-welcome {
    font-size: 1.2rem;
  }
}

.cookie-image2 {
  width: 16px;
  height: 16px;
  object-fit: cover;
}

.buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.button {
  background: rgba(229, 153, 76, 0.22);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  max-width: 220px;
}

.button:hover {
  background: #e5994c;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 128, 0, 0.4);
}

.button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button-text-text {
  color: #ffffff;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
}

.button-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* About Section */
.frame-19 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .frame-19 {
    gap: 5rem;
  }
}

.about-me {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.titel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.about-me-text {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
}

@media (min-width: 480px) {
  .about-me-text {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) {
  .about-me-text {
    font-size: 3rem;
  }
}

.titel-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgb(255, 123, 0));
  object-fit: cover;
}

@media (min-width: 768px) {
  .titel-icon {
    width: 55px;
    height: 55px;
  }
}

.text-description2 {
  color: #f0e6d2;
  font-family: "Zain-Black", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .text-description2 {
    font-size: 1.2rem;
  }
}

.frame-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .frame-5 {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
  }
}

.frame-4 {
  width: 100%;
  max-width: 400px;
  background: rgba(229, 153, 76, 0.28);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .frame-4 {
    max-width: 500px;
    padding: 2rem;
  }
}

.frame-4:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
}

.rectangle-6391 {
  display: none; /* Nicht mehr nötig, da Styling direkt auf frame-4 */
}

.text-description3 {
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
  color: #f0e6d2;
}

@media (min-width: 768px) {
  .text-description3 {
    font-size: 1.2rem;
  }
}

.text-description-3-span {
  color: #f0e6d2;
}

.text-description-3-span2 {
  color: #e5994c;
}

.info-felder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 480px) {
  .info-felder {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
  }
}

.info-feld {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 12px;
  padding: 1rem;
  min-height: 100px;
  transition: all 0.3s ease;
  cursor: default;
}

.info-feld:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 128, 0, 0.25);
}


.text-und-icon {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.info-icon {
  width: 32px;
}

@media (min-width: 768px) {
  .info-icon {
    width: 32px;
  }
}

.text-description4, .text-description5 {
  color: #9a9a9a;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.text2 {
  color: #f0e6d2;
  font-family: "Zain-Black", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .text2 {
    font-size: 1.1rem;
  }
}

/* Birthday Section */
.birthday {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .birthday {
    padding: 3rem 2rem;
    gap: 2rem;
  }
}

.birthday:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 128, 0, 0.3);
}

.birthday-icon {
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .birthday-icon {
    width: 55px;
    height: 55px;
  }
}

.titel2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.geburtstage {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
}

@media (min-width: 768px) {
  .geburtstage {
    font-size: 2.5rem;
  }
}

.party-horn-1 {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
}

@media (min-width: 768px) {
  .party-horn-1 {
    width: 35px;
    height: 35px;
  }
}

.next-birthday {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease;
}

.next-birthday:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 128, 0, 0.25);
}

.next-birthday-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.icon-icon2 {
  width: 30px;
  height: 30px;
}

.birthday-timer {
  color: #e5994c;
  font-family: "Zain-Bold", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .birthday-timer {
    font-size: 2rem;
  }
}

.text-description6 {
  color: #9a9a9a;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.text-description7 {
  color: #9a9a9a;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Social Media Section */
.socialmedia-frame {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}

.social-media2 {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
  text-align: center;
}

@media (min-width: 768px) {
  .social-media2 {
    font-size: 3rem;
  }
}

.smartphone-1 {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
  margin-left: 0.8rem;
}

@media (min-width: 768px) {
  .smartphone-1 {
    width: 65px;
    height: 65px;
  }
}

.socialmedia-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

@media (min-width: 600px) {
  .socialmedia-links {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
}

@media (min-width: 900px) {
  .socialmedia-links {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }
}

.link {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
  background: rgba(229, 153, 76, 0.35);
}

.bg-info-frame2 {
  display: none; /* Nicht mehr nötig */
}

.text-und-icon2 {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  width: 100%;
}

.vector, .github-1, .twitch-1, .twitch-12 {
  width: 35px;
  height: 35px;
  font-size: 35px;
  color: #e5994c;
}

.group {
  width: 100%;
  height: 100%;
}

.besuchen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.text3 {
  color: #e5994c;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.buttom-icon, .buttom-icon2, .buttom-icon3, .buttom-icon4, .buttom-icon5 {
  width: 14px;
  height: 14px;
}

/* Projects Section */
.projekte-all {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.my-projects {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.my-projects-titel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.projekte {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
}

@media (min-width: 768px) {
  .projekte {
    font-size: 3rem;
  }
}

.titel-projecte {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 1));
  object-fit: cover;
}

@media (min-width: 768px) {
  .titel-projecte {
    width: 65px;
    height: 65px;
  }
}

.projekte2 {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Höhe passt sich automatisch an → keine Angabe von height nötig */
}

@media (min-width: 600px) {
  .projekte2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 700px;
  }
}

@media (min-width: 900px) {
  .projekte2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1000px;
  }
}


.projekt {
  background: rgba(229, 153, 76, 0.15);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  height: 350px;
  position: relative;
  transition: all 0.3s ease;
}

.projekt:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 128, 0, 0.25);
}

.rectangle-6397 {
  display: none; /* Nicht mehr nötig */
}

.projekt-2-image {
  width: 100%;
  height: 60%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.projekt-name {
  color: #e5994c;
  font-family: "Zain-Bold", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  bottom: 60px;
  left: 1rem;
  right: 1rem;
}

.projekt-description {
  color: #9a9a9a;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  bottom: 80px;
  left: 1rem;
  right: 1rem;
  line-height: 1.4;
}

.projects {
  background: #e5994c;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects:hover {
  background: #d88a3e;
  transform: translateX(-50%) scale(1.05);
}

.project-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button-text {
  color: #ffffff;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.friends-projects, .collaboration-frame {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.text-kollaborationen {
  color: #f0e6d2;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 768px) {
  .text-kollaborationen {
    font-size: 1.4rem;
  }
}

.projekte-freunde {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
  justify-items: center;
}

@media (min-width: 600px) {
  .projekte-freunde {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
}

@media (min-width: 900px) {
  .projekte-freunde {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}

.nothing-there {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.cookie-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.nothing-there-text {
  color: #f0e6d2;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.4;
}

.projekt-freund {
  background: rgba(229, 153, 76, 0.15);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.projekt-freund:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 128, 0, 0.25);
}

.projekt-freund-all {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.projekt-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.projekt-freund-bottom {
  background: rgba(229, 153, 76, 0.28);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.projekt-name2 {
  color: #e5994c;
  font-family: "Zain-Bold", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.projekt-description2 {
  color: #9a9a9a;
  font-family: "Zain-Bold", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.author-icon {
  width: 12px;
  height: 12px;
}

.author-text {
  color: #9a9a9a;
  font-family: "Zain-Regular", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  width: 100%;
}

.tag {
  background: rgba(229, 153, 76, 0.22);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text2 {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
}

.projects2 {
  background: rgba(229, 153, 76, 0.22);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.projects2:hover {
  background: #e5994c;
  box-shadow: 0 4px 15px rgba(255, 128, 0, 0.4);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: rgba(229, 153, 76, 0.28);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin: 3rem auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.text-description12 {
  color: #e5994c;
  font-family: "Zain-Black", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
}

.text-description13 {
  color: #9a9a9a;
  font-family: "Zain-Black", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.frame-17 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 500px) {
  .frame-17 {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.link-impressum {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.impressum-icon, .datenschutz-icon {
  width: 10px;
  height: 12px;
}

.text-description14 {
  color: #9a9a9a;
  font-family: "Zain-Regular", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
}

.vector2 {
  width: 14px;
  height: 12px;
}

.frame-18 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.text-description15 {
  color: #9a9a9a;
  font-family: "Zain-Regular", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
}

.cookie-image3 {
  width: 12px;
  height: 12px;
  object-fit: cover;
}

/* Mobile Optimizations für sehr kleine Bildschirme */
@media (max-width: 380px) {
  .frame-20 {
    padding: 1.5rem 0.8rem;
    gap: 3rem;
  }
  
  .title-name {
    font-size: 1.8rem;
  }
  
  .about-me-text, .social-media2, .projekte {
    font-size: 1.6rem;
  }
  
  .geburtstage {
    font-size: 1.6rem;
  }
  
  .buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .button {
    width: 100%;
    max-width: 280px;
  }
}

/* Smooth Scrolling Fix */
html {
  scroll-padding-top: 2rem;
}

/* Scrollbar Styling für bessere Sichtbarkeit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2a1f16;
}

::-webkit-scrollbar-thumb {
  background: #e5994c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d88a3e;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #e5994c #2a1f16;
}

/* Verhindere Layout Shift */
.homepage {
  contain: layout style;
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .info-feld:hover,
  .link:hover,
  .projekt:hover,
  .projekt-freund:hover,
  .birthday:hover,
  .next-birthday:hover,
  .frame-4:hover {
    transform: none;
    box-shadow: none;
  }
  
  .button:active,
  .projects:active,
  .projects2:active {
    transform: scale(0.95);
  }
}