/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');


/*=== GLOBAL FONT SET UP=== */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400; /* 40px isn’t a valid font-weight — assuming 400 */
  margin-top: 20px;
  color: #ffffff;
}

/* Hero Section H1 */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;  /* Slightly bigger than lava-book-title */
  font-weight: 400;
  color: #FF9F00; /* your existing H1 color */
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

/* Book Section Title - Lava Book Title */
.lava-book-title, h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;  /* A bit smaller than H1 but still large & elegant */
  font-weight: 400;
  color: #ffffff;  /* your existing black color */
  margin-bottom: 1rem;
}

/* Subheadings, e.g., h3, h4 */
h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: #fff; /* or your preferred color */
  margin-bottom: 0.75rem;
}

/* Body text */
p, .lava-book-blurb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #000; /* or your existing color */
  margin-bottom: 1rem;
}




/*=== GLOBAL BUTTON SETUP ===*/
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-flex;           /* changed to flex for vertical centering */
  align-items: center;            /* vertically centers text */
  justify-content: center;        /* centers text horizontally */
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  border: none;
  min-width: 140px;               /* ensures buttons have consistent width */
}

/* Primary Button */
.cta-primary {
  background-color: #00C5C5;
  color: #FFFFFF;
  border: none;
}

.cta-primary:hover {
  background-color: #8f180b;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Secondary Button */
.cta-secondary {
  background: transparent;
  color: #FF9F00;
  border: 2px solid #FF9F00;
}

.cta-secondary:hover {
  background-color: #8f180b;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}



/*=== BOOK PAGE BUTTON MODIFIERS ===*/
.cta-primary--book {
  background-color: #FF9F00;
  color: #0E0E0E;
  border-radius: 4px;
  min-width: 140px;
  font-weight: bold;
  margin-top: 20px;
  padding: 14px 28px;
  border: none;
  box-shadow: none;
}

.cta-primary--book:hover {
  background-color: #8f180b;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cta-secondary--book {
  background: transparent;
  color: #0E0E0E;
  border: none;
  margin-left: 16px;
  font-weight: bold;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 4px;
  min-width: 140px;
  box-shadow: none;
}

.cta-secondary--book:hover {
  background-color: #8f180b;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


/*-----------------------------------*/

/* === SITE HEADER === */
.site-header {
    background-color: #0e0e0e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height:150px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-logo img {
    height: 150px;
    width: auto;
    display: block;
}


/*------------HOMEPAGE-------------*/

/* HOMEPAGE HERO SECTION */

.home-hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-left: 6rem; /* Move content more left */
    color: #fff;
}

.hero-section {
  padding-left: 2rem !important;  /* overrides Elementor’s left padding */
}



}

/* Headline styles */
.home-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FF9F00; /* Brand orange */
}

.home-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
	font-weight:600px;
    color: #fff;
}

.home-hero-buttons {
    display: flex;
    justify-content: flex-start; /* or center if you want centered */
    align-items: center;
    gap: 40px !important; /* adjust spacing between buttons */
}

.home-hero-buttons .cta-button {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex: 0 0 auto;
}




/* ==== MEET SPEAKER SECTION ==== */
.meet-speaker-section {
    background-color: #F8F8F8;
    padding: 80px 5% 50px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;   /* centers the content horizontally */
}

.meet-text {
    max-width: 700px;
    color: #0E0E0E;
    text-align: center;        
}

.meet-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0E0E0E;
    margin-bottom: 25px;
}

.meet-text p {
    font-size: 19px;           /* slightly larger for consistency with hero section */
    line-height: 1.7;         
    margin-bottom: 30px;
}

.meet-text .cta-button {
    display: inline-block; 
    margin-top: 36px;       
    text-align: center;
}

.meet-text .highlight {
    color: #B53807;
    font-weight: 700; 
}

/* === LAVA LEADERSHIP HIGHLIGHT SECTION === */
.lava-highlight-section {
    display: flex;
    justify-content: center;       /* Centers the content horizontally */
    align-items: center;
    background-color: #FF9F00;    /* Bright Lava Orange */
    padding: 40px 5% 100px;
    color: #1C1C1C;
    flex-wrap: wrap;
    text-align: center;            /* Centers text content */
}

.lava-content {
    flex: 1 1 500px;
    max-width: 600px;
    margin: 0 auto;                /* Ensures centering in flex wrap */
}

.lava-title {
    font-size: 48px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 20px;
}

.lava-highlight-text {
    color: #B53807;       /* Accent color */
    font-weight: 700;     /* Slightly bolder */
    font-size: 1.05em;    /* 5% larger than surrounding text */
    letter-spacing: -0.5px; /* Optional subtle tightening */
}


.lava-tagline {
    font-size: 20px;
    margin-bottom: 40px;
    color: #333333;
    line-height: 1.6;
}

.lava-image {
    flex: 1 1 400px;
    max-width: 400px;
    margin: 0 auto;               
    text-align: center;
}

.lava-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}





/*=== COMPANY LOGO CAROUSEL ===*/
.logo-carousel-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
	width: max-content; 
	animation: scroll 80s linear infinite;
}

.carousel-track img {
  height: 150px;
  margin: 0 45px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.carousel-track img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Hero Section Fade-In */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Meet the Speaker Fade-In */
.meet-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.meet-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lava Leadership Fade-In Animations */
/* Fade-in animation */
.fade-in-lava {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-lava.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger button inside content */
.lava-content .cta-button {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.3s;
}

.lava-content.visible .cta-button {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift effect for book cover */
.book-link img {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.book-link img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}


/*===MOBILE===*/

@media (max-width: 768px) {
  /* Hero Section */
  .home-hero-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 1.5rem;
    min-height: auto;
    text-align: left;
  }

  .home-hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .home-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .home-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px !important;
    width: 100%;
  }

  .home-hero-buttons .cta-button {
    width: 100%;
    text-align: center;
  }

  /* Meet the Speaker Section */
  .meet-speaker-section {
    padding: 60px 1.5rem 40px;
  }

  .meet-text h2 {
    font-size: 1.8rem;
  }

  .meet-text p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .meet-text .cta-button {
    width: 100%;
    text-align: center;
  }

  /* Lava Leadership Section */
  .lava-highlight-section {
    flex-direction: column;
    padding: 60px 1.5rem 80px;
  }

  .lava-title {
    font-size: 2rem;
  }

  .lava-tagline {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .lava-content,
  .lava-image {
    max-width: 100%;
    width: 100%;
  }

  .lava-image img {
    max-width: 100%;
    height: auto;
  }

  /* Logo Carousel */
  .carousel-track img {
    height: 90px;
    margin: 0 20px;
  }
}


/*----------------------------------*/


/*====LAVA LEADERSHIP PAGE===*/
 

.lava-highlight {
  color: #D94B0A;
  text-shadow: 0 0 8px rgba(217, 75, 10, 0.7);
}

.lava-hero-content {
  text-align: center;
}

.lava-hero-content > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.lava-hero-content > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.lava-hero-content a.cta-button {
  display: inline-block;
  margin: 1.5rem auto 0 auto;
}

.lava-pillars{
  white-space: nowrap;
}

#lava-highlights .lava-highlights-content {
  text-align: center;
}

.lava-section {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 5rem;
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  color: #000;
  overflow: visible; /* allow hover effects */
  perspective: 1000px;
}

.lava-cta-container {
  text-align: center;
}

.lava-heading{
	color:#000000;
}

 .highlight,
.lava-heading.highlight {
  color: #b53807;
}

.lava-leadership-section {
  padding: 4rem 2rem;
  text-align: center;
}

.lava-pillar-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lava-pillar-content > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.fly-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.fly-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.lava-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lava-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.lava-book {
  flex: 0 0 400px;
  max-width: 400px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
	border-radius: 12px;
}

.lava-book img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px; /* Rounded corners */
}


.lava-book:hover img {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.fade-in-lava {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-lava.visible {
  opacity: 1;
  transform: translateY(0);
}

.lava-book-content {
  flex: 1 1 50%;
  max-width: 480px;
  text-align: left;
  margin-right: 5rem;
}

.lava-book-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.75rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
}

.lava-book-blurb {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.5;
}


/*===LAVA LABS SECTION===*/

.lava-labs-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 3rem 1.5rem;
  border-left: 4px solid #FF4500; /* lava accent border */
  color: #fff; /* Make all text white by default */
}

.lava-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Header stays white */
.lava-labs-header {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #fff; /* white header */
}

/* Card background & layout */
.lava-tool-card {
  background: #222; /* dark neutral */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
  margin: 0 auto;
  max-width: 500px;
}

/* Tool title lava orange */
.lava-tool-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FF4500;
  margin-bottom: 1rem;
}

/* Snippet lava color */
.lava-tool-snippet {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #FF4500; /* lava orange */
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* CTA buttons container */
.lava-tool-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Use global button classes for styling, remove custom lava-btn-primary/secondary */
.lava-tool-cta-group a.cta-primary,
.lava-tool-cta-group a.cta-secondary {
  flex: 1 1 180px;
  max-width: 200px;
  text-align: center;
}

.lava-tool-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lava-tool-card.visible {
  opacity: 1;
  transform: translateY(0);
}


.lava-quote {
  display: flex;
  justify-content: center; 
  align-items: center;  
  padding: 2rem 1.5rem;
  min-height: 200px;       
}

.lava-quote-content {
  text-align: center;
  max-width: 600px;        
  width: 100%;
}

/*===MOBILE===*/
@media (max-width: 768px) {
  #lava-hero {
    padding: 3rem 1rem !important; /* override Elementor padding if needed */
    text-align: center !important;
    border: none !important;       /* remove Elementor border styling */
  }

  .lava-hero-content {
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .lava-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .lava-hero-content h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .lava-hero-content a.cta-button {
    width: 100%;
    max-width: 320px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
}


  /* Highlights Grid Sections (01–04) */
@media (max-width: 768px) {

	@media (max-width: 768px) {
  .lava-pillars {
    padding: 2rem 1rem;
    white-space: normal !important; /* allow text to wrap */
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }

  .lava-pillar-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .lava-heading-one {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

	
  .lava-highlights-section {
    display: block;
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .lava-highlights-content {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .lava-highlights-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .lava-highlights-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .lava-highlights-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

	@media (max-width: 768px) {
  .fly-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
}


  /* Leadership Description Section */
  .lava-leadership-section {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .lava-heading {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .lava-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1.25rem;
  }

  .no-wrap {
    white-space: normal;
  }

  /* Book Cover Section */
  .lava-section .lava-book {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
  }

  .lava-book img {
    max-width: 100%;
    height: auto;
  }

  /* CTA below Book */
  .lava-cta-container .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  /* Lava Labs Section */
  .lava-labs-section {
    padding: 2rem 1rem;
    border-left: none;
    border-top: 4px solid #FF4500;
  }

  .lava-labs-header {
    font-size: 1.4rem;
  }

  .lava-tool-card {
    padding: 1.5rem;
  }

  .lava-tool-snippet {
    font-size: 1rem;
  }

  .lava-tool-cta-group {
    flex-direction: column;
    gap: 1rem;
  }

@media (max-width: 768px) {
  .lava-tool-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .lava-tool-cta-group a.cta-primary,
  .lava-tool-cta-group a.cta-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}


  .lava-tool-cta-group a {
    width: 100%;
    max-width: 100%;
  }

  /* Quote Section */
  .lava-quote {
    padding: 2rem 1.25rem;
  }

  .lava-quote-title {
    font-size: 1.5rem;
  }

  .lava-quote-subtitle {
    font-size: 1.15rem;
    margin-top: 0.5rem;
  }

  .lava-quote-content .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 1.25rem;
  }
}

/*-----------LAVA LABS PAGE--------------*/

/* === Lava Labs Hero Section === */
.lava-labs-hero {
  background-color: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.lava-labs-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}



.lava-labs-hero-subtitle {  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rm;
  font-weight: 500;
  color: #00C5C5;
  margin-bottom: 1.25rem;
}

.lava-labs-hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .lava-labs-hero-title {
    font-size: 2.75rem;
  }

  .lava-labs-hero-subtitle {
    font-size: 1.25rem;
  }

  .lava-labs-hero-description {
    font-size: 1rem;
  }
}


/*=== LAVA LABS GALLERY ===*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.lava-labs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.lava-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
}

.lava-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lava-card-info {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.3s ease;
  text-align: center;
}

.lava-card:hover .lava-card-info {
  opacity: 1;
}

.lava-card-info h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #FF9F00;
}

.lava-card-info p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.lava-card-cta {
  display: inline-block;
  background: #00C5C5;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.lava-card-cta:hover {
  background-color: #8f180b;
  color: #fff;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .lava-labs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lava-labs-grid {
    grid-template-columns: 1fr;
  }
}



/*====SPEAKING PAGE====*/

.speaking-hero {
  position: relative;
  display: flex;
  align-items: center;        
  justify-content: center;    
  min-height: 100vh;           
  padding: 0 2rem;          
  text-align: center;
  overflow: visible;
}


.hero-overlay {
  position: absolute;
  top: 50%;                 
  left: 50%;                  
  transform: translate(-50%, -50%); 
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: white;
  text-align: center;
  z-index: 2;
}


/* Hero headings */
.hero-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
}

/* Hero subheading */
.hero-overlay h3 {
  font-size: 1.5rem;
  margin: 0;
}

/* Hero CTA */
.hero-overlay a.cta-button {
  display: inline-block;
  margin-top: 1rem;
}

/* Fade-in animation for overlay elements */
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-fade.visible {
  opacity: 1;
  transform: translateY(0);
}




/*====VIDEO===*/

/* Video Modal Styling */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: flex-start;
}

.video-modal-content {
  position: relative;
  background: #000;
  padding: 0;
  width: 90%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
		margin-top: 150px;
}

.video-modal-content iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.video-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}


/* Section padding and background */
.topic-section {
  padding: 4rem 2rem;
  background-color: #FFFFFF;
}

/* Section Title */
.topic-section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}


/* Only changes background for Keynote 2 */
.topic-section-2 {
  background-color: #EFEFEF;
}


/* Topic text wrapper */
.topic-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

/* Topic title and subtitle */
.topic-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.topic-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Blurb text */
.topic-blurb {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.topic-audience{
	
}

/* Main block with wrapper for layout */
.topic-main-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

/* Image block */
.topic-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.topic-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Details block */
.topic-details {
  flex: 1 1 300px;
  max-width: 500px;
}

.topic-details h4 {
	color:#000;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Learning objectives list */
.learning-objectives {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.learning-objectives li {
	color:#000;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* CTA button */
.topic-cta {
  display: inline-block;
  background-color: #FF8C00; /* Example, use global CTA color */
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.topic-cta:hover {
  background-color: #e07a00;
}

.custom-inquiry-section {
  text-align: center;
}

.custom-inquiry-header{
	white-space:nowrap;
}


.custom-inquiry-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Initial hidden state */
.speaker-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state when in viewport */
.speaker-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/*===MOBILE===*/

@media (max-width: 768px) {
  .speaking-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    min-height: 60vh;
    text-align: center;
    position: relative;
  }

  .hero-overlay {
    position: relative;
    transform: none;
    padding: 2rem 1rem;
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-heading {
    white-space: normal;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-overlay h3 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-overlay a.cta-button {
    width: 90%;
    max-width: 280px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .carousel-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .carousel-track img {
    width: 80px;
    height: auto;
    object-fit: contain;
  }

  .topic-section {
    padding: 2rem 1rem;
  }

  .topic-title {
    font-size: 1.5rem;
  }

  .topic-subtitle {
    font-size: 1.1rem;
  }

  .topic-main-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .topic-image,
  .topic-details {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .topic-details {
    padding: 1rem 0;
  }

  .learning-objectives {
    text-align: left;
    padding-left: 1.5rem;
  }

  .topic-details a.cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .custom-inquiry-header {
    font-size: 1.5rem;
    white-space: normal;
    padding: 0 1rem;
  }

  .custom-inquiry-content {
    padding: 1rem;
  }

  .custom-inquiry-content a.cta-button {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 1.5rem auto 0 auto;
  }
}


/*===BOOKS PAGE===*/

.hero-section,
.hero-content,
.hero-book,
.hero-text-group,
.cta-buttons {
  background: transparent !important;
}


/* === HERO SECTION === */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: row;
  gap: 300px;
  flex-wrap: nowrap;
}

.hero-book {
  flex: 0 0 400px;
  max-width: 400px;
  margin-left: -100px;
  box-shadow: 0 15px 70px rgba(0, 0, 0, 1);
}

.hero-book img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


/* === HERO TEXT GROUP === */
.hero-text-group {
  flex: 1 1 auto;
  min-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.hero-feature-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}


/* === FADE-IN ANIMATIONS === */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/* === BOOKS HOOK SECTION === */
.books-hook-content {
  text-align: center;
  margin-bottom: 50px;
}

.books-hook-blurb {
  color: #ffffff;
}


/* === AUTHOR BLURB SECTION === */
.author-blurb-header {
  color: #000000;
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 100px;
  text-align: center;
}

.pulse-highlight {
  color: #000000;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #00C5C5;
}

.author-blurb-content {
  color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
}


/* === TEST BOOK GRID LAYOUT === */
#test-book-section {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 0;
}

#test-book-section .test-book-wrapper {
  display: grid;
  grid-template-columns: 600px 650px;
  justify-content: center;
  align-items: start;
  grid-column-gap: 0;
  margin-bottom: 180px;
  position: relative;
}

/* Cover (gray box) */
#test-book-section .test-cover-box {
  background-color: #E0E0E0;
  padding: 40px;
  width: 600px;
  height: 600px;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#test-book-section .test-cover-box img {
  max-width: 300px;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.5));
}

/* Blurb (orange box) */
#test-book-section .test-blurb-box {
  background-color: #FF9F00;
  color: #0e0e0e;
  padding: 40px;
  width: 650px;
  height: 650px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* === ROW SPECIFIC ADJUSTMENTS === */

/* Row 1 */
#test-book-section .test-book-wrapper:nth-child(1) .test-cover-box {
  margin-top: -30px;
}
#test-book-section .test-book-wrapper:nth-child(1) .test-blurb-box {
  margin-left: 20px;
}

/* Row 2 */
#test-book-section .test-book-wrapper:nth-child(2) .test-cover-box {
  margin-top: -40px;
}
#test-book-section .test-book-wrapper:nth-child(2) .test-blurb-box {
  margin-left: -75px;
}

/* Row 3 */
#test-book-section .test-book-wrapper:nth-child(3) .test-cover-box {
  margin-top: -30px !important;
}
#test-book-section .test-book-wrapper:nth-child(3) .test-blurb-box {
  margin-left: 20px;
}

/*===MOBILE==*/
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-book {
    flex: 0 0 auto;
    max-width: 300px;
    margin-left: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  }

  .hero-text-group {
    min-width: auto;
    text-align: center;
  }

  .hero-feature-title {
    font-size: 2rem;
  }

  .hero-feature-subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #test-book-section .test-book-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
  }

  #test-book-section .test-cover-box,
  #test-book-section .test-blurb-box {
    width: 90%;
    max-width: 400px;
    height: auto;
    padding: 20px;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  #test-book-section .test-blurb-box {
    text-align: center;
  }

  #test-book-section .test-cover-box img {
    max-width: 100%;
    height: auto;
  }

  .author-blurb-header {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .author-blurb-content {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .books-hook-blurb {
    font-size: 1rem;
    padding: 0 1rem;
  }
}




/*---------ABOUT ME PAGE-------*/

.about-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 20px;
  position: absolute;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  color: #FF9F00;
  max-width: 100%;
  margin: 0 auto;
  position: static; /* remove absolute */
}

.hero-highlight {
  font-weight: 600;
}



/* About Hero Section Animation */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}



/*===bio section===*/
.about-me-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-me-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-me-title {
  color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size:40px;
  margin-bottom: 20px;
	white-space: nowrap;
}

.about-me-content {
  color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
}

.linda-logo {
  text-align: center;           
  margin-bottom: 40px;
}

.linda-logo img {
  max-width: 300px;
  height: auto;
	transform: rotate(-10deg);
}


.cta-button.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
	text-align:center;
	margin:0 auto;
	display:block;
	width:fit-content;
}

.cta-button.cta-secondary:hover {
  background-color: #8f180b;
}

/* About Animations */
.about-me-section .fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.about-me-section .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===GALLERY SECTION CLEANUP & ANIMATION=== */

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.gallery-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-title {
  color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 20px;
}

.gallery-subtitle {
  color: #0e0e0e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 10px;
}

.about-me-highlight {
  color:#b53807;
  text-decoration: underline;
  text-decoration-color: #309898; /* custom underline color */
}

/* Gallery grid */
.custom-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom:20px;
  padding: 40px 20px;
}

/* Gallery item container */
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3; /* consistent height for all items */
  border-radius: 8px;
}

/* Image fills container */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers container without stretching */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover zoom effect */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Caption overlay */
.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* Fade-in animation for scroll */
.fade-in-gallery {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-gallery.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Quote Styling === */
.cta-quote {
  color: #b53807; /* your reddish brand color */
  font-family: 'Playfair Display', serif; /* elegant quote look */
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 15px 20px;
  border-left: 4px solid #b53807;
  border-right: 4px solid #b53807;
  background: rgba(181, 56, 7, 0.05); /* subtle background tint */
}

/* === CTA Button Group === */
.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* space between buttons */
}



.cta-button-group .cta-button.cta-secondary:hover {
  background-color: #8f180b;
  transform: translateY(-2px);
}

/* === Fade-in Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*===MOBILE===*/

@media (max-width: 768px) {

  /* Hero Section */
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    padding: 0 10px;
    max-width: 100%;
  }

  /* About Me Section */
  .about-me-title {
    font-size: 28px;
    white-space: normal;
  }

  .about-me-content {
    font-size: 16px;
    line-height: 1.5;
  }

  .linda-logo img {
    max-width: 200px;
    transform: rotate(-10deg);
  }

  .cta-button.cta-secondary {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Gallery Section */
  .custom-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .caption {
    font-size: 14px;
    padding: 8px;
  }

  /* CTA Quote & Button Group */
  .cta-quote {
    font-size: 20px;
    padding: 10px;
  }

  .cta-button-group {
    flex-direction: column;
    gap: 15px;
  }
}




/* FORM CONTAINERS */

#wpforms-form-514,
#wpforms-form-2433 {
  background-color: #0e0e0e;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* FIELD LABELS */
#wpforms-form-514 .wpforms-field-label,
#wpforms-form-2433 .wpforms-field-label {
  font-size: 1rem;
  color: #F2F2F2;
  font-weight: 600;
}

/* CHECKBOX & RADIO LABELS */
#wpforms-form-514 .wpforms-field input[type="checkbox"] + label,
#wpforms-form-2433 .wpforms-field input[type="checkbox"] + label,
#wpforms-form-514 .wpforms-field input[type="radio"] + label,
#wpforms-form-2433 .wpforms-field input[type="radio"] + label {
  color: #F2F2F2;
}

/* SUBMIT BUTTON */
#wpforms-form-514 button.wpforms-submit,
#wpforms-form-2433 button.wpforms-submit {
  background-color: #FF9F00;
  color: #F2F2F2;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* SUBMIT BUTTON HOVER */
#wpforms-form-514 button.wpforms-submit:hover,
#wpforms-form-2433 button.wpforms-submit:hover {
  background-color: #8f180b;
}

/* FLEX LAYOUT WRAPPER */
.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

/* IMAGE STYLING */
.form-image img {
  max-width: 500px;
  margin-top: 70px;
  height: auto;
  display: block;
}

/* FORM CONTENT BLOCK */
.form-content {
  flex: 1;
  min-width: 300px;
}

/* MOBILE RESPONSIVE STYLING */
@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .form-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Header base color */
.lava-book-title {
  color: #FFFFFF; /* rest of the header in white */
}

/* Brand colors for the words */
.lava-word {
  color: #B53807;
}

.leadership-word {
  color: #FF9F00;
}

/* Paragraph text */
.confirmation-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #FFFFFF; /* all paragraph text in white */
  margin-bottom: 1rem;
}


/*=== CONFIRMATION PAGE WRAPPER - CENTERS CONTENT FULL SCREEN ===*/
.confirmation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 20px 20px; 
   
}

/*=== DOWNLOAD CONFIRMATION MESSAGE ===*/
.confirmation-message {
  max-width: 700px;
  padding: 30px;
  background-color: #f8f8f8;
  border-left: 6px solid #FF9F00;
  border-radius: 8px;
  text-align: center; 

.confirmation-message p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1rem;
}

.confirmation-message a {
  color: #8f180b;
  font-weight: 600;
  text-decoration: underline;
}

.confirmation-message a:hover {
  text-decoration: none;
}
	
	
	/* Center the WPForms form inside Popup Maker */
.pum-container .wpforms-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the form horizontally */
  max-width: 400px;    /* optional: limit width */
  margin: 0 auto;
}

/* Optional: make input fields full-width and aligned neatly */
.pum-container .wpforms-field-row {
  display: flex;
  justify-content: space-between; /* keeps first & last name side by side */
  width: 100%;
  gap: 10px; /* space between first & last name */
}

/* Optional: style the input fields */
.pum-container input[type="text"],
.pum-container input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Optional: style the submit button */
.pum-container .wpforms-submit {
  margin-top: 20px;
  background-color: #D83A2F;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
}

.pum-container .wpforms-submit:hover {
  background-color: #b32c22;
}