/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #ffffff;
  color: #000000;
}

/* Centered page wrapper */
.page {
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 40px 16px 48px;
  display: flex;
  flex-direction: column;
}

/* Header / logo */
.site-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Main content */
main {
  flex: 1;
}

.intro {
  text-align: left;
  margin-bottom: 32px;
}

.intro h1 {
  font-size: 2.2rem;
  margin: 0 0 0.25em;
}

.tagline {
  font-size: 1.3rem;
  margin: 0 0 1em;
  font-weight: normal;
  color: #555555;
}

.intro p {
  line-height: 1.5;
  margin: 0 0 1em;
}

/* ============================================
   INTRO + VIDEO CAROUSEL TWO-COLUMN LAYOUT
============================================ */

.intro-with-videos {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.intro-left {
  flex: 1 1 50%;
}

.intro-right {
  flex: 1 1 50%;
}

/* Title above videos */
.video-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

/* ----- Carousel styling (same as before) ----- */

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;           /* prevent wrapping */
  transition: transform 0.4s ease;
}

.carousel-slide {
  flex: 0 0 100%;              /* each slide = 100% width */
  max-width: 100%;
  padding: 0 0 10px;
  box-sizing: border-box;
}

.carousel-slide iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: 0;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 30%;
  transform: translateY(-10%);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 20;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 850px) {
  .intro-with-videos {
    flex-direction: column;
  }

  .carousel-slide iframe {
    height: 240px;
  }
}
/* Audio slide styling */

.audio-card {
  text-align: center;
}

.audio-cover {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.audio-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.audio-player {
  width: 100%;
}

/* Contact card */
.contact {
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact p {
  margin: 0.25em 0;
}

.contact a {
  color: inherit;
  text-decoration: underline;
}

.contact a:hover,
.contact a:focus {
  text-decoration: none;
}

/* Map section */
.map-section {
  margin-bottom: 32px;
}

.map-section h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

/* Responsive Google Maps iframe */
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 16px;
}

/* Small screens */
@media (max-width: 600px) {
  .page {
    padding: 24px 12px 32px;
  }

  .intro h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .contact {
    padding: 20px;
  }
}
