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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background: rgb(215, 215, 215);
}

html {
  scroll-behavior: smooth;
}

h2 {
  color: black;
}

/* ── Content section below the carousel ── */
.content {
  padding: 40px 10%;
  padding-top: 40px;
  background: transparent;
  width: 100%;
}

.content[id] {
  scroll-margin-top: 88px;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: black;
}

.content p {
  display: block;
  line-height: 1.7;
  max-width: none;
  color: #1f2e27;
  color: #444;
}

.basic-content {
  color: #444;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 32px;
  margin-top: 12px;
}

.basic-content p {
  background: none;
  margin-top: 0;
  border-radius: 0;
  padding: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-links a {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 6px;
  background: #0f3b2f;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.contact-links a:hover {
  background: #1a5c48;
}

.camp-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.camp-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.camp-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.camp-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.camp-card-link:focus-visible .camp-card {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.camp-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.camp-card-title,
.camp-card-date {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.camp-card-title {
  padding: 14px 16px 0px;

}
.camp-card-date {
  padding: 14px 16px;
}

.basic-content{
  padding: 32px;
}

/* ── Swiper container fills the viewport ── */
.fullscreen-swiper {
  width: 100%;
  height: 100vh;
  background: transparent;
}

/* ── Each slide ── */
.swiper-slide {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(88px, 10vh, 128px) 5% clamp(32px, 8vh, 72px);
}

.slide-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3vh, 28px);
  width: min(90%, 920px);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay so button is readable on any image */
.swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

/* ── Top text ── */
.slide-text-top {
  position: relative;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  width: min(90%, 980px);
}

/* ── Bottom text ── */
.slide-text-bottom {
  position: relative;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
}

/* ── Button on each slide ── */
.slide-btn {
  position: relative;
  padding: clamp(18px, 3vh, 32px) clamp(36px, 8vw, 96px);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
  background: #ff0000;
}

@media (max-height: 760px) {
  .slide-content {
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .slide-cta {
    gap: 12px;
  }
}

.slide-btn:hover {
  background: #fff;
  color: #111;
}

/* ── Swiper arrow overrides ── */
.fullscreen-swiper {
  --swiper-navigation-size: 60px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000000;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s;
  overflow: hidden;
  padding: 0px;
  box-sizing: content-box;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.38);
}

/* scale the injected SVG icon */
.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next .swiper-navigation-icon {
  width: 20px;
  height: 20px;
}

/* ── Swiper pagination dot overrides ── */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

.recContainer {
  padding: 20px;
  background: rgb(215, 215, 215);
}

.rec-slide {
  padding-left: 100px;
  padding-right: 100px;
}
.rec-alone-slide {
  padding-left: 0;
  padding-right: 0;
}