/* Font Definitions */
@font-face {
  font-family: 'Jersey10';
  src: url('fonts/Jersey10-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Jersey10C';
  src: url('fonts/Jersey10Charted-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
  body.home-page{
      font-family:'Jersey10';
	  font-size: 24px;
      margin: 0;
      padding: 0;
	  background-image: url('img/mini_1.png');
      background-repeat: repeat;
      background-size: auto;
    }
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(1.2, 57.3, 91.0, 0.5);
  padding: 30px 0;
  font-size: 100px;
  text-align: center;
  z-index: 1000;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: inline-block;
  margin: 0 20px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 50px;
  font-family: 'Jersey10C', sans-serif;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #ccc;
}
.content-wrapper {
  display: flex;
  align-items: center;           /* Vertical centering */
  justify-content: flex-start;   /* Image on left */
  padding: 120px 40px 40px;      /* Top padding for fixed nav */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  min-height: calc(100vh - 120px); /* Vertically center in viewport */
}

.portrait {
  width: 400px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.bio-text {
  max-width: 600px;
  color: white;
  font-family: 'Jersey10';
  font-size: 36px;
}

.bio-text h2 {
  margin-top: 0;
}

/* Responsive: Stack Image and Text on Mobile */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 140px 20px 40px;
    min-height: unset;
  }

  .portrait {
    margin-bottom: 20px;
  }
}

