@font-face {
  font-family: 'Gladi';
  src: url('fonts/Gladifilthefte.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #222;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  background: #111;
  color: white;
  padding: 1rem 2rem;
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 2rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: white;
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 1.25rem;
}

p {
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

p strong {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
}

.long p {
  text-indent: 20px;
}

.page-content h2 {
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 3rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.navbar a:hover {
  color: #00bcd4;
}

.hero {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Gladi', Arial, sans-serif;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.4rem;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 2rem;
}

.page-content {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 2rem;
}

.page-content h3 {
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
}

.card h2 {
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 2rem;
}

.card h3 {
  font-family: 'Gladi', Arial, sans-serif;
  font-size: 2rem;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-link:hover {
  transform: translateY(-5px);
  transition: 0.2s ease;
}

.logo {
  text-decoration: none;
  color: white;
}

.logo:hover {
  color: #00bcd4;
}

.bio-pic {
  float: left;
  max-width: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 20px 15px 0;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 900px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.modal video {
  width: 100%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 2rem;
  cursor: pointer;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.gallery img {
  width: 250px;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}