/* ==========================================================================
   CALL JORDAN MEME WEBPAGE RECREATION
   The page itself mimics the meme - no fake browser frame around it.
   ========================================================================== */

:root {
  --link-blue: #0000ee;
  --link-visited: #551a8b;
  --claude-orange: #cc5a36;
  --claude-dark: #141413;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  color: #000000;
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   Webpage Content Area (this IS the page)
   -------------------------------------------------------------------------- */
.page-content {
  background: #ffffff;
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 26px 120px;
  min-height: 100vh;
  position: relative;
}

/* --- Top Header with Hamburger and Black Box --- */
.site-header {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 16px;
}

/* Thin gray hamburger like the reference capture */
.site-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.site-menu-icon span {
  display: block;
  height: 3px;
  background-color: #555555;
  border-radius: 1px;
}

.command-box-container {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-right: 26px; /* Balance the hamburger on left */
}

.command-box {
  border: 3px solid #000000;
  padding: 8px 36px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.command-box:hover {
  background-color: #f8f8f8;
}

.command-box:active {
  transform: scale(0.98);
}

.header-divider {
  width: 100%;
  height: 2.5px;
  background-color: #000000;
  margin-bottom: 24px;
}

/* --- Two-Column Layout --- */
.content-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* --- Left Column: Grandma's Transcript --- */
.column-left {
  flex: 1 1 62%;
}

.grandson-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.badge-more {
  background: #ebebeb;
  border: 1px solid #767676;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 6px;
}

.badge-more:hover {
  background: #dedede;
}

.collapsible-extra {
  background: #fff8dc;
  border-left: 4px solid #cc5a36;
  padding: 10px 14px;
  margin: 10px 0 14px;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}

.link-paragraph {
  margin: 12px 0 16px;
}

.action-link {
  color: var(--link-blue);
  text-decoration: underline;
  cursor: pointer;
}

.action-link:visited {
  color: var(--link-blue); /* Screenshot shows blue link */
}

.action-link:hover {
  color: #0000cc;
}

.stop-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.3;
}

.section-about {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  margin: 16px 0 8px;
}

.section-about u {
  text-decoration: underline;
}

.transcript-main {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19.5px;
  line-height: 1.32;
  color: #111111;
  margin-bottom: 18px;
  letter-spacing: 0.1px;
}

.links-group {
  margin-bottom: 22px;
}

.links-group p {
  margin-bottom: 6px;
}

.links-group .action-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.transcript-urgent {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22.5px;
  line-height: 1.32;
  color: #111111;
}

/* --- Right Column: Jordan's Photo & Claude Branding --- */
.column-right {
  flex: 0 0 280px;
  max-width: 300px;
}

.photo-wrapper {
  width: 100%;
  max-width: 265px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.jordan-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.caption-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: bold;
  font-style: italic;
  margin: 16px 0 8px;
}

.caption-heading u {
  text-decoration: underline;
}

.commands-list {
  padding-left: 24px;
  margin-bottom: 24px;
  list-style-type: disc;
}

.commands-list.no-bullets {
  list-style-type: none;
  padding-left: 0;
}

.bullet-item {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.45;
  color: #111111;
  margin-bottom: 2px;
}

.bullet-item.clickable {
  cursor: pointer;
  transition: color 0.15s ease;
}

.bullet-item.clickable:hover {
  color: #cc5a36;
  text-decoration: underline;
}

/* Claude Signature & Branding */
.claude-signature {
  margin-top: 18px;
}

.powered-by-text {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: 25px;
  color: #000000;
  margin-bottom: 2px;
}

.claude-brand-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.claude-starburst {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.claude-wordmark {
  font-family: 'Canela', 'Georgia', 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 600;
  color: #141413;
  letter-spacing: -1px;
  line-height: 1;
}

/* --- Instagram Audio Pill Overlay --- */
.audio-pill-overlay {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  cursor: pointer;
}

.audio-pill-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(38, 38, 38, 0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.audio-pill-overlay:hover .audio-pill-inner {
  transform: scale(1.08);
  background: rgba(20, 20, 20, 0.95);
}

.audio-pill-overlay.unmuted .audio-pill-inner {
  background: #cc5a36;
}

/* --- Call Simulation Modal --- */
.call-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.call-modal-content {
  width: 340px;
  background: #1c1c1e;
  border-radius: 36px;
  padding: 24px 20px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.call-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #aaa;
  margin-bottom: 28px;
  padding: 0 4px;
}

.call-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #ff3b30;
  animation: pulseAvatar 1.5s infinite;
}

@keyframes pulseAvatar {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(255, 59, 48, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.call-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.call-status {
  font-size: 15px;
  color: #8e8e93;
  margin-bottom: 34px;
}

.call-actions {
  display: flex;
  justify-content: center;
}

.call-hangup-btn {
  background: #ff3b30;
  color: #ffffff;
  border: none;
  padding: 14px 38px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
  transition: transform 0.1s ease;
}

.call-hangup-btn:hover {
  background: #e02d23;
  transform: scale(1.04);
}

/* --- Responsive Adjustments --- */
@media (max-width: 820px) {
  .content-body {
    flex-direction: column;
  }

  .column-right {
    max-width: 100%;
    margin-top: 20px;
  }

  .command-box {
    font-size: 26px;
    padding: 6px 16px;
  }

  .grandson-heading {
    font-size: 28px;
  }

  .stop-link {
    font-size: 22px;
  }

  .transcript-main,
  .transcript-urgent {
    font-size: 17px;
  }
}
