
body {
  background-color: #E6E6FA; /* lavender */
  font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
  color: #333;
  margin: 40px;
  line-height: 1.6;
}

/* ---------- HEADER -------- */
header {
  text-align: center;
  border-bottom: 2px solid #B563F8;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2em;
  margin-bottom: 5px;
  color: #4B0082; /* indigo */
}

/* -------- SECTION STRUCTURE ---------- */
section {
  margin-bottom: 35px;
}

.section-title {
  background-color: #f4e8ff;
  padding: 8px 10px;
  border-left: 5px solid #B563F8;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #4B0082;
}

.block {
  background: white;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* -------- TEXT & HEADINGS -------- */
h2, h3 {
  margin: 0;
  font-size: 1.2em;
  color: #4B0082;
}

strong {
  color: #222;
}

/* ------- IMAGE STYLING -------- */
.project-image {
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  border: 3px solid #DDA0DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 59%;
  max-width: 500px;
}

/* -------- IFRAME STYLING -------- */
.thinglink-frame {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 3px solid #DDA0DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* -------- NAVBAR-------- */
nav {
  background-color: white;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #B563F8;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

nav a:hover {
  text-decoration: underline;
}
.thinglink-frame {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  height: 450px;
  border-radius: 10px;
  border: 3px solid #DDA0DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* -------- ABOUT ME SECTION --------- */
.about-section {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.profile-pic {
  display: block;
  margin: 0 auto 20px auto;
  width: 220px;
  height: auto;
  border-radius: 12px;
  border: 3px solid #DDA0DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section p {
  font-size: 1em;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
/* -------- THINGLINK CONTAINER -------- */
.thinglink-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}
/* ------------ REFLECTION ---------- */
.reflection-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.reflection-section p {
    max-width: 700px;
    margin: 0 auto 15px auto;
}
/* ----- CORPUS PAGE CONTAINER ----- */
.compare-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ----- TITLE FOR CORPUS SECTIONS ----- */
.compare-title {
    text-align: center;
    color: #4B0082; 
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ----- SIDE-BY-SIDE FLEX LAYOUT ----- */
.side-by-side {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;  
    margin-bottom: 25px;
}

/* ----- INDIVIDUAL IMAGE FRAMES ----- */
.side-by-side figure {
    text-align: center;
    margin: 0;
}

.side-by-side img {
    width: 300px;
    height: 220px;    
    object-fit: cover;  
    border-radius: 10px;
    border: 3px solid #DDA0DD;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/* ----- TEXT BELOW IMAGES ----- */
.compare-text {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #333;
    max-width: 800px;
    margin: 10px auto 30px auto;
}
/* ---- HOVER EFFECT ---- */
.img-wrap {
    overflow: hidden;
    position: relative;
}

.img-wrap img {
    width: 100%;
    transform-origin: center center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.img-wrap img:hover {
  transform: scale(3);
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ---- Kumu ---- */
.kumu-embed iframe {
    width: 100%;
    max-width: 1100px;
    height: 600px;
    border: none;
    display: block;
    margin: 0 auto;
}
/* ---- Inner life images ---- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.image-grid figure {
    margin: 0;
    text-align: center;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* fills frame cleanly */
    border-radius: 10px;
    border: 3px solid #DDA0DD;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.image-grid figcaption {
    margin-top: 6px;
    font-size: 0.9em;
    color: #4B0082;
    font-weight: bold;
    letter-spacing: 0.5px;
}





