@font-face {
  font-family: 'HarringtonPlain';
  src: url('fonts/HarringtonPlain.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Base styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #8C07FD;
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
}

h1, h2, h3, p, .alpha-banner {
  font-family: 'HarringtonPlain', cursive;
}

p, li {
  font-family: 'HarringtonPlain', cursive;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #f0f0f0;
}

ul li {
  margin-bottom: 0.5em;
}

.about-title {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 220px;
  background-color: #CD91FF;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 100;
}

.sidebar img {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.self-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.self-photos img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: cover; /* ensures proper fill while preserving aspect ratio */
  border-radius: 8px;
}

/* Main content area */
.main-content {
  margin-left: 220px;
  padding: 40px 20px;
  background-color: #8C07FD;
  box-sizing: border-box;
  padding-bottom: 4em;
}
.main-content h1,
.main-content h3 {
  text-align: center;
}
.main-content h3 {
  text-align: center;
  font-style: italic;
}

/* Optional: content wrapper to center things inside main-content */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5em;
}

/* Banner container */
.banner-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-family: 'HarringtonPlain', cursive;
}

.banner-container img {
  padding: 1em;
  max-width: 100%;
  height: auto;
}

.banner-container h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-container p {
  font-size: 1.75em;
  line-height: 1.7;
  max-width: 60ch;
  text-align: left;
  margin: 0 auto 2em auto;
}

.banner-container main,
.banner-container main p {
  text-align: left;
}

.intro-note p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #2e005f;
  background-color: #f5ebff;
  padding: 1.2em;
  border: 5px solid #CD91FF;  /* ⬅️ Full border all around */
  border-radius: 8px;          /* Optional: soften those corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 60ch;
  margin: 0 auto 2em auto;
  font-family: 'Georgia', serif;
}





/* Garden page */
    .scroll-gallery {
      display: flex;
      overflow-x: auto;
      gap: 1.5em;
      padding-bottom: 1em;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .gallery-item {
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 250px;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      padding: 0.5em;
    }

    .gallery-item img {
      max-width: 100%;
      max-height: 180px;
      border-radius: 8px;
    }

    .caption {
      margin-top: 0.5em;
      font-size: 0.85em;
      font-style: italic;
      color: #3C006E;
	  text-align: center;
	  max-width: 250px; /* or whatever matches your card */
	  margin: 0 auto;
}


    

    /* Optional: hide scrollbar for prettier look */
    .scroll-gallery::-webkit-scrollbar {
      display: none;
    }
    .scroll-gallery {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
.banner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2em auto;
  border-radius: 8px;
  box-shadow: none;
}

/* Footer */
.site-footer {
  background-color: #CD91FF;
  color: #f0f0f0;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 0;
}

.footer-logo {
  max-width: 60px;
  height: auto;
  flex-shrink: 0;
}

.site-footer p {
  font-family: 'HarringtonPlain', cursive;
  font-size: 1.3em;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.resume-link {
  position: relative;
  font-size: 1.9rem;
  text-decoration: underline;
  color: #4a006b;
  font-weight: bold;
  border-bottom: 1px dotted #4a006b;
  cursor: pointer;
}

.resume-link::after {
  content: "opens in new tab";
  position: absolute;
  bottom: 120%;
  left: 0;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.resume-link:hover::after,
.resume-link:focus::after {
  opacity: 1;
  transform: translateY(0);
  font-size: 0.75em;
}

.essay-container {
  background-color: #f5e9f9;
  border-radius: 8px;
  padding: 15px;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 2em auto;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.essay-link {
  all: unset; /* Clears inherited inline display or styling */
  display: block;
  margin: 16px 0;
  padding: 10px;
  font-size: 1.4rem;
  color: #520080;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #520080;
  position: relative;
  box-sizing: border-box;
  background-color: #fff8ff;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.essay-link:hover {
  background-color: #f0e4fc;
}

.essay-link::after {
  content: "opens in new tab";
  position: absolute;
  bottom: 120%;
  left: 0;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.essay-link:hover::after,
.essay-link:focus::after {
  opacity: 1;
  transform: translateY(0);
}



.story-callback {
  background-color: #f4f0f8;
  border-left: 4px solid #6d166d;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: #444;
}

.story-callback .story-source {
  font-style: normal;
  font-size: 0.9em;
  color: #666;
  margin-top: 0.5em;
  text-align: right;
}

.floral-divider {
  height: 60px;
  background-image: url("picmix.com_525366.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  margin: 2em 0;
}
.greenhouse-gallery {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 2em;
}

.gh-item img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}
.gh-item video {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto; 
  border-radius: 6px;
}




.gh-caption {
  text-align: center;
  font-style: italic;
  color: #450199;
  margin-top: 0.5em;
}
.greenhouse-gallery-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
}

.gh-item {
  flex: 1 1 45%;
  max-width: 500px;
}

.video-gallery {
  margin-top: 3em;
  text-align: center;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.video-item {
  flex: 1 1 400px;
  max-width: 500px;
  aspect-ratio: 16 / 9;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.porch-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2em;
  justify-items: center;
}

.porch-gallery-item {
  background-color: #c0c0c0; /* Silver Gray Frame */
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(60, 60, 60, 0.2);
  width: 300px;
}

.porch-gallery-item img {
  width: 100%;
  border-radius: 6px;
}

.porch-caption {
  margin-top: 0.5em;
  font-size: 0.95em;
  color: #333;
  font-style: italic;
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  background-color: #5A3E8A; /* Deep purple */
  color: #C0C0C0; 
  padding: 10px 18px;
  border: 2px solid #404040;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.linkedin-button:hover {
  background-color: #C0C0C0;
  color: #5A3E8A;
  border-color: #5A3E8A;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.gallery-concrete {
  background-color: #B6DCB9;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 4rem; /* 👈 This creates breathing room */
}

.gallery-concrete h2 {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: #4b4b4b;
  margin-bottom: 30px;
}

.concrete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.concrete-grid figure {
  margin: 0;
}

.concrete-grid img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.concrete-grid figcaption {
  margin-top: 8px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: #5a5a5a;
}

.gallery-current {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-left: 0; /* So it doesn't fight the sidebar's space */
  max-width: 1100px;
  margin: 0 auto 4em;
}

.current-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.current-grid img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.current-grid figcaption {
  margin-top: 10px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #6a1b9a;
  text-align: center;
}

.jems-gallery {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1em;
  border-radius: 12px;
  display: block;
  background-image: none; /* We move the lace to the track instead */
}

.jems-track {
  display: flex;
  gap: 1.5em;
  padding: 1em;
  background-image: none;
  background-size: cover;
  background-repeat: repeat;
  position: relative;
}

.jems-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5000px; /* or whatever stretches across all 13 alphas */
  background-color: rgba(245, 240, 255, 0.6); /* Soft overlay */
  z-index: 0;
  pointer-events: none;
}


.jems-item {
  position: relative;
  z-index: 1;
  background-image: url("1447271.png");
  background-size: cover;
  background-repeat: repeat;
  border-radius: 12px;
  padding: 0.5em;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.jems-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(245, 240, 255, 0.9); /* soft lavender overlay */
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}

.jems-item img {
  position: relative;
  z-index: 1;
  max-height: 180px;
  border-radius: 8px;
}



.jems-item .caption {
  margin-top: 0.5em;
  font-family: HarringtonPlain, cursive;
  font-size: 1.1em;
  color: #fff8ff;
  text-align: center;
}

.tag-builder {
  color: gray;
  margin-top: 2em;
  padding: 1em;
  background-color: rgba(245, 240, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(180, 160, 200, 0.3);
}

.preview-area {
  margin-top: 1em;
  padding: 0.5em;
  background-color: #fff8ff;
  border-radius: 8px;
  min-height: 80px;
}

.jems-download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 2em;
  justify-content: center;
}

.download-card {
  background-color: gray;
  border: 5px solid #d6cce6;
  border-radius: 12px;
  padding: 1em;
  width: 150px;
  text-align: center;
  box-shadow: 0 0 10px rgba(160, 140, 200, 0.2);
}

.alpha-preview {
  max-width: 80%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5em;
}

.download-button {
  display: inline-block;
  background-color: #8b70aa;
  color: white;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 0.5em;
  font-size: 0.9em; 
}

.download-button:hover {
  background-color: #a58dc0;
}

.alpha-note {
  font-size: 0.75em;
  color: #5c4c70;
  margin-top: 0.5em;
}

.preview-banner {
  display: block;
  max-width: 100%;
  border: 5px solid #8b70aa; /* Soft purple that matches your download buttons */
  border-radius: 8px; /* Optional: adds a gentle rounded edge */
  margin: 1em auto;
}
.birdhouse-download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
}

.birdhouse-card {
  background-color: #4B9FFD; /* Soft contrast for birdhouse theme */
  border: 5px solid #8b70aa;
  border-radius: 12px;
  padding: 1em;
  width: 190px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.section-divider {
  border: none;
  height: 4px;
  background: linear-gradient(to right, #8b70aa, #4B9FFD);
  margin: 2em auto;
  width: 90%;
  border-radius: 2px;
}
.chrome-preview-banner {
  display: block;
  margin: 2em auto;
  max-width: 100%;
  border: 5px solid #8b70aa; /* optional purple frame */
  border-radius: 10px;
  background-color: #000; /* can change to #2b0048 */
  padding: 1em;
}
.chrome-download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
}

.chrome-card {
  background-color: #000; /* Black backdrop for drama */
  border: 5px solid #8b70aa; /* PrettyViolet purple frame */
  border-radius: 12px;
  padding: 1em;
  width: 190px;
  text-align: center;
  box-shadow: 0 0 12px rgba(139, 112, 170, 0.3); /* Subtle glow */
}
.floral-download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
}

.floral-card {
  background: linear-gradient(to bottom right, #b2e3c6, #a4d4f5); /* Green-to-blue gradient */
  border: 6px solid #0f4e22; /* Dark green border for natural depth */
  border-radius: 16px;
  padding: 1em;
  width: 190px;
  text-align: center;
  box-shadow: 0 0 10px rgba(15, 78, 34, 0.2); /* Subtle glow for texture */
}
.family-tree {
  text-align: center;
  margin: 40px 0;
}

.family-tree img {
  max-width: 1000%;
  height: auto;
  opacity: 0.9;
}

.tree-caption {
  font-style: italic;
  font-family: 'Georgia', serif;
  margin-top: 10px;
  color: #444;
}
.featured-photo {
  text-align: center;
  margin: 40px auto;
}

.featured-photo img {
  max-width: 75%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.photo-caption {
  font-size: 2em;
  margin-top: 10px;
  color: #555;
  font-style: italic;
}
.parents-section {
  margin: 50px auto;
  text-align: center;
  max-width: 1000px;
}

.top-photo img {
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.middle-photos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.middle-photos img {
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bottom-portraits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.bottom-portraits img {
  height: 500px;
  width: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.caption,
figcaption {
  font-size: 1.5em;
  font-style: italic;
  margin-top: 10px;
  color: #555;
}

.vine-divider {
  background-image: url("FamilyDivider.png"); 
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  opacity: 0.85;

  height: 60px;        
  margin: 40px 0;
}
.self-photos {
  display: flex;
  justify-content: center;
  gap: 40px;           
  margin-top: 30px;
  margin-bottom: 20px;
}

.self-photos img {
  width: 384px;
  height: auto;
  border-radius: 6px;   
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15); 
}
.photo-caption {
  font-size: 1.2em;
  text-align: center;
  font-style: italic;
  color: #f6e9d8;        
  margin-bottom: 40px;
}
.about-divider {
  margin-left: -40px; 
  margin-right: -40px; 
  height: 70px;
  background-image: url("VWN4.png");
  background-repeat: repeat-x;
  background-size: 74px 61px;
  background-position: center;
  margin: 40px 0;
  opacity: 0.85;
}
.family-gallery {
  padding: 40px 20px;
  background-color: #CD91FF;
  text-align: center;
}

.family-gallery h2 {
  color: #6d4c41;
  font-size: 2em;
  margin-bottom: 30px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.gallery-row figure {
  max-width: 260px;
  margin: 0;
}

.gallery-row img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.gallery-row figcaption {
  margin-top: 8px;
  font-style: italic;
  color: #5a4033;
  font-size: 0.95em;
}
.couple-gallery {
  background-color: #ffffff;
  padding: 50px 30px;
  text-align: center;
}

.couple-gallery h2 {
  font-size: 2em;
  color: #4b275f; /* Rich dark purple */
  margin-bottom: 40px;
}

.couplegallery-row {
  margin-bottom: 50px;
}

.couplegallery-row img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.row-caption {
  margin-top: 12px;
  font-size: 2em;
  color: #4b275f; /* Same deep purple for caption */
  font-style: italic;
}

.sidebar-note {
  background-color: #e8dff1; /* Pale lavender */
  border-radius: 8px;
  padding: 10px;
  margin: 12px;
  font-size: 0.85em;
  font-style: italic;
  color: #4b275f; /* Deep plum text */
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sutton-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-feature {
  max-width: 800px;
  text-align: center;
}

.gallery-feature img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.portrait-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
  flex-wrap: nowrap; 
}

.portrait-row figure {
  width: 170px;
  text-align: center;
}

.portrait-row img {
  width: 180px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

figcaption2 {
  margin-top: 8px;
  font-size: 1em;
  font-style: italic;
  color: #4b275f;
}

















/* Responsive design */
@media screen and (max-width: 768px) {
  html, body {
    display: block;
  }

  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 5px;
    overflow-x: auto;
  }

  .sidebar img {
    width: 80px;
    height: auto;
    margin: 0 5px;
    flex-shrink: 0;
  }

  .main-content {
    margin-left: 0;
    padding: 20px 15px;
    min-height: calc(100vh - 120px);
  }

  .banner-container h1 {
    font-size: 2.2em;
    line-height: 1.3;
    text-align: center;
  }

  .banner-container p {
    font-size: 1.2em;
    line-height: 1.5;
    text-align: center;
    padding: 0 10px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .site-footer p {
    text-align: center;
    margin-top: 1.5em;
  }
  
  .self-photos {
    flex-direction: column;
    align-items: center;
  }

  .self-photos img {
    width: 90%;
    max-width: 320px;
    margin-bottom: 1em;
  }

  .photo-caption {
    text-align: center;
    padding: 0 1em;
    font-size: 1em;
  }
}

 



@media screen and (max-width: 480px) {
  .banner-container h1 {
    font-size: 1.8em;
  }

  .banner-container p {
    font-size: 1em;
  }

  .sidebar img {
    width: 60px;
  }
  
  @media screen and (max-width: 480px) {
  .self-photos {
    flex-direction: column;
    align-items: center;
  }

  .self-photos img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
    padding: 0 1em;
    box-sizing: border-box;
  }

  .photo-caption {
    font-size: 0.95em;
    text-align: center;
    padding: 0 1em;
  }
}
}