/* Green Download Button (Project Action) */
.download-green-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  background-color: #1e7d3a;
  color: #fff;
}

.download-green-btn:hover {
  background-color: #17622c;
  color: #fff;
}
/* Watch & Listen Buttons Styles */
.watch-listen-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.watch-listen-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  min-width: 180px;
  max-width: 300px;
}

.watch-listen-btn img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.watch-listen-btn:hover img {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .watch-listen-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  .watch-listen-btn {
    width: 80%;
    max-width: 350px;
  }
}
/* === Layout: Header === */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.header-container img.logo {
  height: 4rem;
  margin-right: 0.5rem;
}

/* === Hero Section === */
.hero-heading {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.hero-heading h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 1rem;
}

.job-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ddd;
  margin-top: 0.25rem;
}

.subtext {
  font-size: 1rem;
  font-weight: 400;
  color: #cccccc;
  margin-top: 0.25rem;
}

.hero-heading p {
  max-width: 900px;
  margin: 0 auto 1rem;
  word-wrap: break-word;
  line-height: 1.6;
}

/* === Resume Button === */
.download-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #0033cc;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}

.download-button:hover {
  background-color: #0022aa;
}

/* === Global Typography & Layout === */
body {
  background-image: url("assets/background-blueprint.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #f5f5f5;

  /* Force background to render cleanly */
  
  
  
  
}


h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.pull-quote {
  font-style: italic;
  font-weight: bold;
  font-size: 1.15rem;
  color: #ffffff;
  border-left: 4px solid #00bcd4;
  padding-left: 1rem;
  margin: 2rem auto;
  max-width: 850px;
  background-color: rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 188, 212, 0.2);
  border-radius: 6px;
}

.achievement-list {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  list-style-type: disc;
  line-height: 1.6;
  max-width: 950px;
}

/* === Sections === */
section {
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin: 1rem auto;
  max-width: 1000px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between; /* OR center, depending on design */
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-header-flex h3 {
  margin: 0;
}
.section-header-flex a.view-resume-btn {
  text-decoration: none;
  white-space: nowrap;
}
/* === Text with Image (wrapped) === */

.text-with-image {
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: auto; /* clears the float */
}

.text-with-image img.float-image {
  float: right;
  max-width: 33%; /* set to 33% for your goal */
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

@media (max-width: 768px) {
  .text-with-image img.float-image {
    float: none;
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* === Bio Section === */
  .bio-text  {
  flex: 1 1 65%;                 /* ~65% of width */
}
  .bio-image {
  flex: 1 1 30%;                 /* ~30% of width */
  max-width: 30%;                /* hard cap */
  text-align: center;
}
  .bio-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* soft shadow */
}
.callout-inline {
  font-weight: 600;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.25); /* subtle shadow */
}

/* === Summary Section === */
.summary-with-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.summary-text {
  flex: 1 1 65%;                 /* ~65% of width */
}

.summary-image {
  flex: 1 1 30%;                 /* ~30% of width */
  max-width: 30%;                /* hard cap */
  text-align: center;
}

.summary-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* soft shadow */
}

/* Bridging Worlds layout */
.bridging-with-image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.bridging-text {
  flex: 1 1 65%;
}

.bridging-image {
  flex: 1 1 30%;      /* right side image container */
  max-width: 30%;
  text-align: center;
}

.bridging-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* soft shadow */
}
/* Make clickable images show pointer cursor */
img.enlargeable {
  cursor: pointer;
}

/* Optional: add a subtle hover effect */
img.enlargeable:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Team Photo section */
.team-photo-section {
  text-align: center;
  margin-top: 3rem;
}

.team-photo-section h3 {
  margin-bottom: 0.5rem;
}

.team-photo-section p {
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-photo-wrapper {
  display: flex;
  justify-content: center;
}

.team-photo-wrapper img {
  width: 60%;          /* scales to 60% of container */
  max-width: 1000px;   /* optional hard cap */
  height: auto;
  border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* soft shadow */
}

figure {
  margin: 0;
}

figcaption {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.4;
  max-width: 100%;
}

/* === Links === */
a {
  color: #66aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.achievement-list {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  list-style-type: disc;
  max-width: 950px;
  line-height: 1.6;
}

/* === Form === */
form {
  margin-top: 1rem;
}

input, textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #222;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
}

button {
  padding: 0.5rem 1rem;
  background-color: #444;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #666;
}

/* === Navigation Bar === */
.navbar {
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
}

.logo-link {
  display: flex;
  align-items: center; /* vertically centers the logo + text */
  text-decoration: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 2.2rem;
  margin-right: 0.5rem;
  vertical-align: middle; /* Optional extra alignment */
}

.brand-name {
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  vertical-align: middle;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Dropdown Menu */
.dropdown-menu {
  list-style: none;
  padding-left: 0;
  display: none;
  position: absolute;
  background-color: #081828; /* dark blue from your background image */
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 999;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown > input:checked + .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background-color: #081828;
    box-shadow: none;
  }

  .hamburger {
    display: block;
  }
}

/* === Optional Polish === */
html {
  scroll-behavior: smooth;
}

input:focus, textarea:focus, button:focus {
  outline: 2px solid #66aaff;
  outline-offset: 2px;
}
/* === Skills Grid === */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
}

.skills-grid span {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  color: #fff;
}

/* === Project Title Section === */
#project-title {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

#project-title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.project-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ccc;
  margin-top: 0;
  text-align: center;
}

/* === Story Buttons === */
.story-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.story-buttons a {
  padding: 0.5rem 1.2rem;
  background-color: #ddd;
  color: #0033cc;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.story-buttons a:hover {
  background-color: #ccc;
}

/* === Project Buttons (The Story Continues...) === */
.story-buttons a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e0e0e0; /* light gray */
  color: #0033cc; /* dark cobalt blue */
  text-decoration: none;
  border-radius: 2rem;
  font-weight: bold;
  margin: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.story-buttons a:hover {
  background-color: #d5d5d5; /* slightly darker gray */
}

/* === Resume Buttons === */
.resume-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.view-resume-btn,
.download-resume-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* View Resume: light blue background with dark blue text */
.view-resume-btn {
  background-color: #cce0ff;
  color: #0033cc;
}

.view-resume-btn:hover {
  background-color: #b3d1ff;
}

/* Download Resume: bold cobalt blue with white text */
.download-resume-btn {
  background-color: #0033cc;
  color: #ffffff;
}

.download-resume-btn:hover {
  background-color: #0022aa;
}

/* Media fix for mobile */
@media (max-width: 768px) {
  .summary-with-image,
  .bridging-with-image {
    flex-direction: column;      /* stack vertically */
    text-align: center;
  }

  .summary-text,
  .bridging-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .summary-image,
  .bridging-image {
    flex: 1 1 100%;
    max-width: 90%;
    margin: 1rem auto;
  }

  .summary-image img,
  .bridging-image img {
    max-width: 100%;
    height: auto;
  }
}

.img-modal {
  display: none;
  position: fixed !important;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.img-modal.open {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  display: inline-block;
  margin: 0;
}

.img-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
}

body.modal-open {
  overflow: hidden;
}

#site-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
