/* =========================
   GLOBAL / RESET....
========================= */
* {
  box-sizing: border-box;
}

body {

  margin: 0;
  font-family: 'Pacifico', 'Comic Sans MS', cursive;
  background-color: #ffd6e8;
  color: #ffd6e8;
  background-image: none;

}

body {
  background-color: #ffd6e8; /* baby pink */
}

h1, h2, h3, h4 {
  color: #a6d8ff; /* baby blue */
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background-color: #cce7ff; /* baby blue */
}


.navbar-left img {
  height: 35px;
}

.navbar-right a {
  color: #a6d8ff;
}

.navbar-right a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar-right a:hover {
  color: #a6d8ff;
}


/* =========================
   PAGE LAYOUT
========================= */
.home-card {
  max-width: 1200px;
  margin: 2em auto;
  padding: 1em;
}

/* =========================
   CARDS
========================= */
.resource-card {
  background-color: rgba(255, 255, 255, 0.75);
  color: #a6d8ff;
}

/* =========================
   BIO SECTION
========================= */
.bio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio-pic img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #5555aa;
  object-fit: cover;
}

.bio-text h1 {
  margin-bottom: 0.2em;
}

.bio-text h4 {
  margin-top: 0;
  font-weight: normal;
  color: #ddd33d;
}

/* =========================
   PROJECT LAYOUT
========================= */
.project {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.project iframe {
  flex: 2;
  min-width: 320px;
  height: 450px;
  border: none;
  background-color: white;
  border-radius: 8px;
}

.reflection {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1em;
  border-radius: 8px;
}

.reflection h3 {
  margin-top: 0;
  color: #aaaaff;
}

.reflection p {
  font-size: 0.95em;
  color: #ddd33d;
}

/* =========================
   LINKS / ICONS
========================= */
.skill-images {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1em;
}

.picture {
  transition: transform 0.2s ease;
}

.picture:hover {
  transform: scale(1.05);
}

.link-pic {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  border: 2px solid white;
  object-fit: cover;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  font-size: 0.85em;
  color: #ddd33d;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .project {
    flex-direction: column;
  }

  .project iframe {
    width: 100%;
    min-width: 0;
    height: 350px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1em;
  }

  .navbar-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}
