/* =========================================================
   Touristship — Request a Lecture / Training (English)
   File: css/application-en.css
   Template: application-en.php  (classes prefixed .lec_)
   ========================================================= */

:root {
  --lec-cream: #fbf4e2;
  --lec-orange: #d8531d;
  --lec-ink: #3f3a36;
  --lec-gray: #4a4a4a;
  --lec-yellow: #ffd21e;
  --lec-card-border: #efe6d2;
}

.lec_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.lec_inner_narrow { max-width: 820px; }

.lec_section { padding: 60px 0; }
.lec_section_cream { background: var(--lec-cream); }

.lec_h2 {
  text-align: center;
  color: var(--lec-ink);
  font-size: 1.7rem;
  margin: 0 0 40px;
  letter-spacing: 0.04em;
}
.lec_h2_orange { color: var(--lec-orange); font-weight: bold; }

/* ---------- shared yellow button ---------- */
.lec_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lec-yellow);
  color: #3a2d10;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 50px;
  border-radius: 50px;
  transition: filter 0.2s ease;
}
.lec_btn:hover { filter: brightness(0.94); color: #3a2d10; }
.lec_ico {
  width: 18px; height: 18px; display: inline-block; flex-shrink: 0;
  background: #3a2d10;
  -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
}
.lec_ico_mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5h20v14H2z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3 6l9 7 9-7' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5h20v14H2z' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3 6l9 7 9-7' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}
.lec_ico_play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z'/%3E%3C/svg%3E");
}
.lec_btn img {
	width: 20%;
}

/* ---------- Hero ---------- */
.lec_hero { text-align: center; padding: 0 0 30px; }
.lec_eyebrow {
  color: #7c594c; font-size: 1rem; margin: 0 0 18px; font-weight: bold;
}
.lec_hero_title {
  color: var(--lec-orange); font-size: 2.4rem; line-height: 1.35; margin: 0; font-weight: bold;
}
.lec_hero_sub {
  color: var(--lec-orange); font-size: 1.1rem; margin: 20px 0 16px;
}
.lec_hero_body {
  color: var(--lec-ink); font-size: 0.95rem; line-height: 1.9; margin: 0 auto 28px; max-width: 620px;
}
.lec_hero .bg-beige .lec_inner {
	padding: 50px 0 20px;
}

/* ---------- Speaker Bio ---------- */
.lec_speaker_card {
  background: #fff; border: 1px solid var(--lec-card-border); border-radius: 5px;
  padding: 34px 38px; max-width: 800px; margin: 0 auto;
  box-shadow: 0 8px 22px rgba(150, 110, 60, 0.07); position: relative;
}
.lec_speaker_top { display: flex; gap: 30px; align-items: center; }
.lec_speaker_photo { flex-shrink: 0; width: 250px; }
.lec_speaker_photo img {
  width: 250px; height: 290px; object-fit: cover; display: block;
}
.lec_speaker_name { color: #2f2a26; font-size: 1.3rem; margin: 0 0 14px; letter-spacing: 0; }
.lec_speaker_roles { list-style: none; margin: 0; padding: 0; }
.lec_speaker_roles li {
  position: relative;
  font-size: 1rem; line-height: 1; margin-bottom: 5px;
}
.lec_speaker_meta {
	border-left: 10px solid #ffe200;
	padding-left: 20px;
}
.lec_speaker_bio {
  color: var(--lec-ink); font-size: 0.88rem; line-height: 1.85; margin: 26px 0 0;
}
.lec_reel { text-align: right; margin-top: 22px; }

.lec_avail_grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
  max-width: 800px; margin: 44px auto 0;
}
.lec_avail { text-align: center; background-color: #fff; padding: 10px; border-radius: 5px; }
.lec_avail h4 {
  color: #2f2a26; font-size: 1rem; margin: 0 0 12px; padding-bottom: 8px;
  display: inline-block; position: relative;
}
.lec_avail h4::after {
	content: '';
	width: 100px;
	height: 3px;
	background-color: #ffe200;
	position: absolute;
	bottom: -1%;
	left: 50%;
	transform: translatex(-50%);
} 
.lec_avail p { color: var(--lec-gray); font-size: 0.85rem; line-height: 1.7; margin: 0; }
.lec_avail_note {
  text-align: center; color: var(--lec-ink); font-size: 0.9rem; line-height: 1.7; margin: 34px 0 0;
}

.lec_reel .lec_btn {
	position: absolute;
	bottom: -3%;
	right: 3%;
}

/* ---------- Speaking Topics ---------- */
.lec_topic_list { display: flex; flex-direction: column; gap: 16px; }
.lec_topic {
  display: flex; gap: 30px; align-items: center;
  background: #fff; border: 1px solid var(--lec-card-border); border-radius: 5px;
  padding: 20px;
}
.lec_topic_dot {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--lec-yellow); margin-top: 4px;
}
.lec_topic_body { text-align: left; }
.lec_topic_body h3 { color: #2f2a26; font-size: 1.2rem; margin: 0 0 5px; text-align: left; letter-spacing: 0; }
.lec_topic_body p { color: var(--lec-gray); font-size: 1rem; line-height: 1.5; margin: 0; text-align: left; }

/* ---------- Why This Matters ---------- */
.lec_why_body {
  text-align: center; color: var(--lec-ink); font-size: 0.95rem; line-height: 2;
  max-width: 760px; margin: 0 auto 30px;
}
.lec_quote {
  text-align: center; color: var(--lec-orange); font-size: 1.5rem; line-height: 1.5; margin: 0;
}
.lec_wtm {
	padding: 30px 0;
}

/* ---------- Interested CTA ---------- */
.lec_cta { }
.lec_cta_body {
  text-align: center; color: var(--lec-gray); font-size: 0.95rem; line-height: 1.8;
  max-width: 640px; margin: 0 auto 26px;
}
.lec_section .lec_cta_body + .lec_btn,
.lec_hero .lec_btn { }
.lec_section:has(.lec_cta_body) { text-align: center; }

/* center the buttons that follow centered text */
.lec_hero .lec_btn { margin: 0 auto; }
.lec_reel .lec_btn { }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .lec_avail_grid { grid-template-columns: 1fr; gap: 5px; }
}
@media (max-width: 600px) {
  .lec_hero_title { font-size: 1.7rem; }
  .lec_hero_sub { font-size: 1rem; }
  .lec_h2 { font-size: 1.4rem; }
  .lec_speaker_card { padding: 24px 20px; }
  .lec_speaker_top { flex-direction: column; text-align: center; gap: 18px; }
  .lec_speaker_photo, .lec_speaker_photo img { width: 160px; height: 200px; }
  .lec_speaker_roles { display: inline-block; text-align: left; }
  .lec_reel { text-align: center; }
  .lec_quote { font-size: 1.2rem; }
	.lec_speaker_meta {
		padding-left: 10px;
	}
	.lec_wtm {
		width: 90%;
		margin: 0 auto;
	}
}
