/* ---------- Base ---------- */
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  background: #F1F1F1;
  color: #222;
}
p { line-height: 1.5; opacity: 0.9; }
strong { color: #02656c; }
body.noscroll { overflow: hidden; }
ul{ line-height: 1.5; opacity: 0.9; }

.header {font-family: Trebuchet MS; opacity: 1; 
font-size: 1.9rem; line-height: normal; font-weight: 500;}

body.noscroll { overflow: hidden; }

/* ---------- Header ---------- */
.decorative-header { width: 100%; margin: 0; padding: 0; }
.header-img { width: 100%; height: 50px; object-fit: cover; display: block; }

/* ---------- Content ---------- */
.content { max-width: 720px; margin: 0 auto 60px; padding: 24px; }
h1 { font-size: 1.6rem; color: #070707; }
h2 { font-size: 1.2rem; margin-top: 36px; font-weight: 550; }

/* ---------- Accordion ---------- */
.session-list details {
  margin-bottom: 0.8em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.4em;
}
.session-list summary {
  position: relative;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  color: #02656c;
  padding-left: 1.4em;
}
.session-list summary::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
  transition: transform 0.2s ease;
}
details[open] summary::before { content: "▾"; }

/* ---------- Assistants ---------- */
.assistant-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 1.5em 0;
}
.thumbnail-container { flex: 0 0 120px; cursor: pointer; }
.thumbnail {
  width: 100%; border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}
.thumbnail:hover { transform: scale(1.03); }

/* ---------- Assistant links ---------- */
.assistant-links a {
  color: #342cc4;
  text-decoration: none;
  border-bottom: 1px dotted #7fa6a1;
  padding-bottom: 1px;
  transition: all 0.2s ease;
  line-height: 1.4rem;
}
.assistant-links a::after {
  content: " ↗";
  font-size: 0.85em;
  color: #33534e;
}
.assistant-links a:hover {
  color: #014a50;
  border-bottom-color: #014a50;
}

/* ---------- Modal ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.close {
  position: fixed;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover { color: #ccc; }

/* ---------- Feedback Panel ---------- */
.feedback-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  transform: translateX(110%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 2rem;
  z-index: 1000;
}
.feedback-panel.open { transform: translateX(0); }
.feedback-panel .close-btn {
  position: sticky;
  top: 0;
  right: 0;
  margin-left: auto;
  background: white;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
   z-index: 9999;
}

/* ---------- CTA ---------- */
.cta-footer {
  background: #f9fafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin: 30px 0;
  text-align: center;
}
.cta-text { font-size: 1.1rem; color: #024b52; font-weight: 600; }
.cta-button {
  display: inline-block;
  background-color: #028c94;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 8px;
  transition: background-color 0.2s ease-in-out;
}
.cta-button:hover { background-color: #02656c; }



/* ----------- Quotes ----------- */
.quote-section {
  max-width: 700px;
  margin: 1.5rem auto 0 auto;
  padding: 0;
  text-align: left;
}

.quote-section blockquote {
  font-style: italic;
  border-left: 3px solid #aaa;
  padding-left: 1rem;
  color: #333;
  opacity: 0.9;
  margin: 0;                  /* reset browser default margin */
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #1a73e8;
  cursor: pointer;
  text-decoration: none;
}



/* ---------- Footer ---------- */
.footer {
  background-color: #4D4D4D;
  color: #ccc;
  text-align: center;
  padding: 24px 10px;
  font-size: 0.9rem;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
}
.footer a:hover { color: white; }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  /* Keep the image on the left, just make it smaller */
  .assistant-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .thumbnail-container {
    flex: 0 0 80px;      /* shrink the image */
  }

  .thumbnail {
    width: 100%;
    height: auto;
  }

  .assistant-links {
    font-size: 0.95rem;  /* slightly smaller text for better balance */
  }

  .header-img {
    height: 70px;
  }
}
.experience-section {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  margin-bottom: 2em;
}

.experience-text {
  flex: 1;
  font-family: "Inter", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.thumbnail-container {
  flex-shrink: 0;
}

.thumbnail {
  width: 120px;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.experience-section {
  display: flex;
  align-items: flex-start;  /* ← this is the key fix! */
  gap: 1.5em;
  margin: 2em 0;
}

.thumbnail-container {
  flex-shrink: 0;
}

.thumbnail {
  width: 120px;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.experience-text {
  flex: 1;
  color: #222;
  line-height: 1.6;
  font-family: "Inter", Arial, sans-serif;
}

.book-section {
  display: flex;
  align-items: flex-start;   /* top-aligns book image with first text line */
  gap: 1.5em;
  margin: 2em 0;
  font-family: "Inter", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.book-text {
  flex: 1;
}

.book-text a {
  color: #02656c;
  text-decoration: none;
  border-bottom: 1px dotted #7fa6a1;
}

.book-text a:hover {
  color: #014a50;
  border-bottom-color: #014a50;
}

