/* Add top padding to main content to prevent header overlay */
.with-header {
  padding-top: 0;
}
@media (max-width: 700px) {
  .with-header {
    padding-top: 0;
  }
}
.carousel-quote-btn-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.carousel-quote-btn {
  background: rgba(191,161,74,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-quote-btn:focus {
  outline: 2px solid #fff;
  background: #bfa14a;
}
/* Carousel for audience quotes */
.carousel-quote-container {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-quote-slide {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.carousel-quote-text {
  min-width: 100%;
  max-width: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s, transform 0.7s cubic-bezier(.77,0,.18,1);
  font-size: 1.08rem;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background: none;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  box-sizing: border-box;
  text-align: left;
}
.carousel-quote-text.active {
  opacity: 1;
  position: relative;
  transform: translateX(0);
}
.carousel-quote-text.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
}
.carousel-quote-text.slide-in-right {
  opacity: 1;
  transform: translateX(0);
}
.carousel-quote-author {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: #bfa14a;
  margin-top: 0.5rem;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #2c2c2c;
  margin: 0;
  color: #FAF9F6;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.15px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

a {
  color: #D8A7B1;
}

a:hover {
  color: #FAF9F6;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 1rem auto;
  color: #D4AF37;
}

.hero p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #FAF9F6;
}

header {
  background-color: #333333;
  padding: 8px 0 8px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  min-height: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: visible;
}

/* Hide header when scrolling down, show when scrolling up */
.header--hidden {
  transform: translateY(-100%);
}

@media (max-width: 700px) {
  header {
    padding: 4px 0 4px 0;
    min-height: 0;
  }
  .site-logo {
    max-width: 110px;
  }
  nav ul {
    gap: 4px;
    margin-top: 2px;
    font-size: 0.92rem;
  }
  .header-cta-row {
    margin-top: 2px;
  }
  .btn-cta, .btn-primary, .btn-secondary {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }
}

.header-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 8px 0;
  width: 100%;
}

.logo-container {
  max-width: 800px;
  margin: 0 auto;
}

.site-logo {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: fadeInLogo 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 4px 0 0 0;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #FAF9F6;
}

nav a:hover {
  text-decoration: underline;
}

:root {
  --color-gold: #D4AF37;
  --color-rose: #D8A7B1;
  --color-background: #333333;
  --color-reveal: rgba(44,44,44,0.85);
  --color-hover-text: #FAF9F6;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta, .btn-primary, .btn-secondary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rose) 100%);
  color: var(--color-background);
        padding: 0.6rem 1.3rem;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
        font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(216, 167, 177, 0.15);
}

.btn-cta::before,
.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-reveal);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-cta:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 100%;
}

.btn-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  color: var(--color-hover-text);
  box-shadow: 0 6px 20px rgba(216, 167, 177, 0.2);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333333;
  color: #FAF9F6;
  margin-top: 40px;
}

footer nav a {
  color: #B7C4A1;
  margin: 0 8px;
  text-decoration: none;
  font-size: 0.95rem;
}

footer nav a:hover {
  color: #D4AF37;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.card {
  background-color: #3a3a3a;
  border-left: 6px solid #D4AF37;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  color: #FAF9F6;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: #D4AF37;
}

.card-photo {
  max-width: 220px;
  max-height: 320px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-right: 0;
}

.card-content {
  flex: 1 1 250px;
  min-width: 220px;
}

.card-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-flex.card-flex-reverse {
  flex-direction: row-reverse;
}

.card-flex .card-content {
  text-align: left;
}

.card.card-flex {
  align-items: stretch;
}

form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FAF9F6;
}

input, textarea {
  width: 100%;
  padding: 10px;
  background-color: #2c2c2c;
  color: #FAF9F6;
  border: 1px solid #777;
  font-size: 1rem;
  border-radius: 4px;
}

.about-float {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 280px;
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-float {
    float: none;
    display: block;
    margin: 0 auto 1.5rem auto;
  }
}

.about-flex {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
}
.about-text {
  flex: 1;
  min-width: 260px;
}

blockquote {
  font-style: italic;
  color: #B7C4A1;
  border-left: 4px solid #D4AF37;
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.content h2::after {
  content: '';
  display: block;
  width: 80px;
  margin: 12px auto;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #D8A7B1);
  border-radius: 2px;
}


/* Center align only h2 and p inside hero sections */
.hero h2,
.hero p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* Center align h1 in hero sections */

.hero {
  margin-top: 0;
  padding-top: 0;
}
.hero h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem auto;
  color: #D4AF37;
}


/* Divider bar under hero h1 */
.hero h1::after {
  content: '';
  display: block;
  width: 80px;
  margin: 12px auto;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #D8A7B1);
  border-radius: 2px;
}


/* Ensure card paragraphs are left-aligned */
.card p {
  text-align: left;
}

/* Only center paragraphs that are direct children of .hero */
.hero > p {
  text-align: center;
}

@media (max-width: 700px) {
  .card-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  .card-photo {
    margin: 0 auto;
    max-width: 100%;
    min-width: 0;
  }
  .card-flex.card-flex-reverse {
    flex-direction: column;
  }
}

/* === Meghan Speaking Image Reveal === */
.meghan-reveal {
  max-width: 400px;
  margin: 2rem auto;
  animation: fadeInRight 1.2s ease-out forwards;
  opacity: 0;
  transform: translateX(30px);
}

.meghan-reveal img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-photo-small {
  max-height: 240px;
  height: auto;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Ensure content isn't hidden behind fixed header - SINGLE SOURCE OF TRUTH */
body.with-fixed-header {
  padding-top: var(--header-height, 95px);
}

@media (max-width: 700px) {
  body.with-fixed-header {
    padding-top: var(--header-height, 80px);
  }
}


/* Spacer to offset fixed header height */
