@font-face {
  font-family: PlayfairDisplay;
  src: url("resources/files/PlayfairDisplay-VariableFont_wght.ttf");
}
@font-face {
  font-family: Average;
  src: url("resources/files/Average-Regular.ttf");
}

body {
  cursor: url(resources/cursors/coffeeNormal.png), auto;
  margin: 10%;
  padding: 1rem;
  font-family: Average, serif;
  background: linear-gradient(#563526 0%, #3f292b 100%);
  color: #dea450;
  font-size: 1.125rem;
  text-align: center;
  list-style: none;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  margin: 0 auto 1rem;
  font-family: PlayfairDisplay, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3.5vw, 1.875rem);
}

h4 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}

a {
  color: #f7d1ae;
}

a:hover {
  cursor: url(resources/cursors/coffeeSteaming.png), pointer;
  color: #e7ddd7;
}

img {
  max-width: 80%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.status-tag {
  display: inline-block;
  background-color: #4c3329;
  color: #f7d1ae;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 20px;
}

.project-meta {
  font-size: 1.1em;
  margin-bottom: 2em;
}

.intro-section {
  background-color: rgba(247, 209, 174, 0.2);
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}

.stats-container {
  background: rgba(76, 51, 41, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
}

.stat-number {
  color: #f7d1ae;
  font-size: 2.5em;
  font-weight: bold;
  display: block;
}

.insight-box {
  background: rgba(76, 51, 41, 0.15);
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #f7d1ae;
  border-radius: 4px;
}

.insight-box h4 {
  margin-top: 0;
  color: #dea450;
}

.insight-box .pain-point {
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.insight-box .quote {
  font-style: italic;
  color: #dea450;
  margin: 10px 0;
}

.hmw-box {
  background: rgba(247, 209, 174, 0.15);
  padding: 30px;
  margin: 30px 0;
  border-radius: 10px;
  text-align: center;
}

.hmw-box h3 {
  font-size: 1.8em;
  color: #f7d1ae;
  text-shadow: 1px 1px 2px rgba(76, 51, 41, 0.3);
}

.key-themes {
  padding-left: 40px;
  line-height: 2;
}

.reflection-box {
  background: rgba(76, 51, 41, 0.3);
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
}

iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
}

.prototype-link {
  display: inline-block;
  margin: 10px 0;
}

.mobile-screens {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 600px;
}

.mobile-screens img {
  flex: 1;
  max-width: 45%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #3f292b;
  font-family: PlayfairDisplay, serif;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
  padding: 0.75rem 0;
  margin: 0;
  background-color: #3f292b;
}

.navbar li {
  flex: 1;
  text-align: center;
  background-color: #3f292b;
}

.navbar a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: #dea450;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar a:hover {
  cursor: url(resources/cursors/coffeeSteaming.png), pointer;
  color: #f7d1ae;
  background: #563526;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  .stats-grid {
    flex-direction: column;
  }

  .mobile-screens {
    flex-direction: column;
    max-width: 300px;
  }

  .mobile-screens img {
    max-width: 100%;
  }
}
