
/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'RobotoBold';
  src: url('../ttf/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoLight';
  src: url('../ttf/RobotoCondensed-Light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 20px 0;
  font-family: 'RobotoLight';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8fafc;
  line-height: 1.6;
  min-height: 100vh;
}

/* Portfolio Container */
.portfolio-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

.portfolio-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.portfolio-content {
  padding: 20px 20px 20px 20px;
  border-bottom: 2px dotted #e2e8f0;
}

.portfolio-content-2columns {
  display: flex;              /* aktiviert Flexbox */
  flex-wrap: wrap;
  justify-content: space-between; /* verteilt Platz gleichmäßig */
  align-items: top;        /* vertikale Ausrichtung (optional) */
  padding: 20px 20px 20px 20px;
  border-bottom: 2px dotted #e2e8f0;
}

.box {
    flex: 1 1 300px;
}

dl {
    display: grid;
    grid-template-columns: 22ch auto;
    gap: 0em 2em;
}

dt {
    font-weight: bold;
    text-align-last: justify;
}

dd {
    margin: 0;
}


/* Header Styles */
.header {
  color: black;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}


.header-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
}

.profile-image {
  width: 180px;
  height: 180px;
  position: relative;
  flex-shrink: 0;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-info {
  flex: 1;
}

.name_bold {
  font-family: 'RobotoBold';
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.name_light {
  font-family: 'RobotoLight';
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.title {
  font-family: 'RobotoLight';
  font-size: 1.2rem;
  font-weight: 400;
  margin: 10px 0 0 0;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

.demoreel {
  width: 100%;
  aspect-ratio: 16/9;
}

/* Responsive Design */


@media (max-width: 600px) {
  .portfolio-container {
    padding: 10px 10px;
  }

  .portfolio-card {
    border-radius: 16px;
    margin: 0;
  }

  .portfolio-content {
    padding: 5px 5px 5px 5px;
  }

  .header {
    padding: 30px 15px;
  }

  .header-content {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

    .header-info {
      flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    }

  .profile-image {
    width: 100px;
    height: 100px;
  }

    dl {
        display: grid;
        grid-template-columns: auto auto;
        gap: 0em 1em;
    }

}


