/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
/* Old background kept for reference
BODY  { color: #000000;
	background: #FFFFFF url("http://facstaff.uww.edu/sahyuns/images/navbar/logo.jpg") fixed;}
*/

BODY  { color: #000000;
	background: #eeeeee}

em { color: #CC6600; font-style: normal }

a:link {  color: #559999; text-decoration: none }
a:visited { color: #448888; text-decoration: none }
a:active {  color: #777700 }
a:hover {  color: #ff2222; text-decoration: underline}


.center { text-align: center; }


  :root {
    --bg: #f5f5f5;
    --card-bg: #ffffff;
    --border-soft: #e0e0e0;
    --accent: #4b4f7a;
    --accent-soft: #eef0ff;
    --text-main: #222222;
    --text-muted: #555555;
  }

  * {
    box-sizing: border-box;
  }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


  body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.5;

  }

    .banner-image {
        /* Add a background color as a fallback if the image fails to load */
        background-color: #cccccc;
         min-height: 200px; /* Set a desired height */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; /* Scale the image to cover the entire container */
        position: relative; /* Needed to position text over the image */
    }
    /* Style for the text overlay */
    .banner-text {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: clamp(1rem, 3vw, 1.15rem);
    }

.banner-text h1 {
    color: white;
    font-size: clamp(2.0rem, 5vw, 3.0rem);
    margin: 0;
}


  .page {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
  }


.page-title {
    text-align: center;
    margin: 1rem 0;
    font-size: 2rem;
    color: var(--accent);
}


  header.page-header {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
  }

  header.page-header h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--accent);
  }


  header.page-header p {
    margin: 0.1rem 0;
    color: var(--text-muted);
  }

  .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--accent-soft);
    font-size: 0.95rem;
  }

  .meta span {
    white-space: nowrap;
  }

  .h1index {
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin: 1.0rem;
    font-size: 2.0rem;
    color: var(--accent);

  }


  h2 {
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin: 1.0rem;
    font-size: 1.3rem;
    color: var(--accent);
  }

  .map {
    margin-bottom: 1.5rem;
  }

  .map img {
	max-width: 80%;
	height: auto;
	display: block;
	margin: 0.5rem auto 0;   /* centers the map image */
	border-radius: 0.75rem;
	border: 1px solid var(--border-soft);
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .step {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 0.85rem 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-soft);
  }

  .step p {
    margin: 0.2rem 0;
  }

 
  .step img {
	max-width: 80%;
	height: auto;
	max-height: 500px; /*limits vertical size */
	display: block;
	margin: 0.4rem auto 0;   /* <-- important: centers the image */
	border-radius: 0.75rem;
  }

  .qr img {
	max-width: 300px;
	max-height: 400px; /*limits vertical size */
	display: block;
	margin: 0.4rem auto 0;   /* <-- important: centers the image */
	border-radius: 0.75rem;
  }


/* When a step has multiple images */

/* Photo rows: multiple images sit side-by-side; don't center individually */
.photo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: flex-start;
  justify-content: center;
}

/* Images inside photo-row: let flex control size, and ensure they don't inherit global centering */

.photo-row img {
  display: block;
  height: auto;
  max-height: 280px;   /* limit vertical size */
  width: auto;         /* don't force width; keep aspect ratio */
  max-width: 100%;     /* still don't overflow the container */
  flex: 0 0 auto;      /* don't stretch to fill; use natural size */
  margin: 0;
  border-radius: 0.75rem;
}
 
 .photo-row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: flex-start;
  justify-content: center;
} 
.photo-row2 img {
  display: block;
  height: 50%;
  max-height: 140px;   /* limit vertical size */
  width: auto;         /* don't force width; keep aspect ratio */
  max-width: 100%;     /* still don't overflow the container */
  flex: 0 0 auto;      /* don't stretch to fill; use natural size */
  margin: 0;
  border-radius: 0.75rem;
}
  
  /* Global img rule: keep images fluid but don't force 80% (let specific rules handle that) */
  img {
	max-width: 100%;
	height: auto;
	display: inline-block; /* avoid forcing block for everything */
  }

  @media (max-width: 600px) {
    .page {
      padding-inline: 0.75rem;
    }

    .step {
      padding: 0.75rem 0.8rem;
    }
  }
  
  .uw-section {
  padding: 0rem 1rem;
  margin: 0rem 0;
/*  
  background: #f3f0ff;    
  border-radius: 1.25rem;
  border: 1px solid #e0dcff; */
}

.uw-section h2 {
  color: #4b3f9f;             /* slightly deeper purple for headings */
}

.uw-section .step {
	background: #f8f5ff; /*light lavender */
	border: 1px solid #e0dcff;
}


.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.map-link:hover,
.map-link:focus {
  text-decoration: underline;
}

.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
}

.map-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-modal-content {
  position: relative;
  background: #fff;
  width: min(95vw, 1100px);
  max-height: 95vh;
  overflow: auto;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.map-modal-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0.5rem;
}

.map-close {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.map-close:hover,
.map-close:focus {
  text-decoration: underline;
}
 
.map-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}



.map-image-wrap {
  position: relative;
}

.map-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}


.map-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #d63384;
  border: 3px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(214, 51, 132, 0.3);
  z-index: 2;
}

.collapsible-container {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  margin: 1rem 0;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.collapsible-container summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: var(--accent);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collapsible-container summary::-webkit-details-marker {
  display: none;
}

.collapsible-container summary::before {
  content: "▶";
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.collapsible-container[open] summary::before {
  transform: rotate(90deg);
}

.collapsible-content {
  padding: 0 1rem 1rem;
  color: var(--text-main);
}

.collapsible-content p {
  margin: 0.75rem 0 0;
}
  





 