@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.campamento-page {
  --bg: #6b6b2f;
  --bg-dark: #4e5321;
  --card: #f5efd9;
  --card-2: #f0e5bf;
  --green: #2e5b34;
  --green-2: #3f6b45;
  --gold: #d7b64a;
  --red: #d73b35;
  --text: #243026;
  --muted: #5b624f;
  --border: rgba(42, 52, 28, .16);
  --shadow: 0 18px 40px rgba(0, 0, 0, .18);

  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow: hidden;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
}

.campamento-page *,
.campamento-page *::before,
.campamento-page *::after {
  box-sizing: border-box;
}

.campamento-page__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(107, 107, 47, 0.78), rgba(78, 83, 33, 0.86)),
    url('https://cclnechurch.com/wp-content/uploads/campamento-2026-bg.png') center/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.campamento-page > *:not(.campamento-page__bg) {
  position: relative;
  z-index: 1;
}

.campamento-page section {
  margin-bottom: 22px;
}

.campamento-page .camp-hero__inner,
.campamento-page .camp-section-card,
.campamento-page .camp-cta {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.camp-hero {
  padding-top: 0;
}

.camp-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: rgba(245, 239, 217, .14);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.camp-hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #f4e8b5;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.camp-hero__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}

.camp-hero__subtitle {
  margin: 16px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.7;
  max-width: 58ch;
}

.camp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.camp-hero__card {
  background: linear-gradient(180deg, rgba(245, 239, 217, .92), rgba(240, 229, 191, .92));
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .15);
}

.camp-hero__card-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 59, 53, .1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.camp-hero__card-date {
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.camp-hero__card-theme {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.camp-btn {
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.camp-btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(215, 59, 53, .25);
}

.camp-btn--primary:hover,
.camp-btn--secondary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.camp-btn--secondary {
  background: var(--green);
  color: #fff;
}

.camp-section-card {
  background: linear-gradient(180deg, rgba(245, 239, 217, .98), rgba(240, 229, 191, .98));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.camp-section-title {
  margin: 0 0 12px;
  color: var(--green);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.1;
}

.camp-section-title small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
  font-weight: 700;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.camp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.camp-field label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.camp-field input,
.camp-field textarea,
.camp-field select {
  width: 100%;
  border: 1px solid rgba(42, 52, 28, .18);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: .2s ease;
}

.camp-field input:focus,
.camp-field textarea:focus,
.camp-field select:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(63, 107, 69, .12);
}

.camp-hint {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.camp-member-card {
  border: 1px dashed rgba(42, 52, 28, .22);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, .45);
  margin-bottom: 14px;
}

.camp-payment-box {
  border-radius: 18px;
  border: 1px solid rgba(215, 59, 53, .18);
  background: rgba(215, 59, 53, .06);
  padding: 18px;
  margin-top: 18px;
}

.camp-payment-box h3 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 1rem;
}

.camp-cta__text {
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.7;
}

.camp-submit {
  width: 100%;
  margin-top: 8px;
}

.camp-footer-note {
  text-align: center;
  color: rgba(255, 255, 255, .86);
  font-size: .85rem;
  padding: 18px 0 8px;
}

@media (max-width: 900px) {
  .camp-hero__inner,
  .camp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .campamento-page {
    padding: 14px;
  }

  .camp-hero__inner,
  .camp-section-card {
    padding: 18px;
    border-radius: 22px;
  }

  /* Option 3 — system font for small tag, no Google Fonts dependency */
  .camp-section-title small {
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: .08em;
  }

  .camp-hero__title {
    font-size: 2rem;
  }

  .camp-hero__actions {
    flex-direction: column;
  }

  .camp-btn {
    width: 100%;
    text-align: center;
  }
  /* ============================================================
   PHONE DROPDOWN
   ============================================================ */
.campamento-page .ct-phone-wrap {
  position: relative;
}

.campamento-page .ct-phone-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border: 1px solid rgba(42, 52, 28, .18);
  border-radius: 0 0 14px 14px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.campamento-page .ct-phone-item {
  padding: 0.5rem 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: #5b624f;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgba(42, 52, 28, .08);
  transition: background 0.15s;
}

.campamento-page .ct-phone-item:hover,
.campamento-page .ct-phone-item.sel {
  background: #f5efd9;
  color: #2e5b34;
}

.campamento-page .ct-phone-item .ct-ph-code {
  font-weight: 700;
  color: #d7b64a;
  min-width: 44px;
  font-size: 0.76rem;
}

.campamento-page input.ct-phone-done {
  border-color: #d7b64a !important;
  box-shadow: 0 0 0 2px rgba(215, 182, 74, .15) !important;
}
}