/* Custom Google Maps link for clarity and theme */
.google-maps-link {
  color: #388e3c;
  font-weight: 700;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.google-maps-link:hover, .google-maps-link:focus {
  color: #254f15;
  text-decoration: underline solid;
}
/* Home page hero */
.hero-bg{
  height: 90vh;
  min-height: 520px;
  margin-top: -80px;
  padding-top: 80px;

  background-image:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.25)),
    url('../img/camp-photo.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.btn-primary {
  background-color: #b6d67f !important;
  border-color: #b6d67f !important;
  color: #1a3a1a !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #a9cb6f !important;
  border-color: #a9cb6f !important;
  color: #1a3a1a !important;
}

.hero-bg h1{
  text-shadow: 0 10px 35px rgba(0,0,0,.35);
}

.hero-bg .lead{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.90) !important;
}

/* Keep hero text from overlapping the bottom countdown */
.hero-content{
  max-width: 920px;
}

/* Countdown section container */
#countdown-section{
  background:#fff;
}

/* Card */
.countdown-panel{
  background: linear-gradient(180deg, #ffffff 0%, rgba(26,58,107,0.04) 100%);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;
  padding: 34px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  text-align: center;
}

/* Title + date */
.countdown-title{
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #254f15; 
  margin-bottom: 6px;
}

.countdown-date{
  font-size: 1rem;
  font-weight: 600;
  color: rgba(15,23,42,0.62);
  margin-bottom: 22px;
}

/* Row layout */
.countdown-row{
  display:flex;
  justify-content:center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
}

/* Each segment */
.minimal-segment{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width: 92px;
}

/* Number bubble */
.minimal-value{
  width: 92px;
  height: 92px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;

  color: #254f15;
  background: rgba(26,58,107,0.08);
  border: 1px solid rgba(26,58,107,0.18);

  box-shadow:
    0 10px 22px rgba(26,58,107,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Label */
.minimal-label{
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.58);
}

/* Mobile */
@media (max-width: 576px){
  .countdown-panel{ padding: 24px 14px; }
  .minimal-segment{ min-width: 78px; }
  .minimal-value{ width: 74px; height: 74px; }
}
.camp-details-card{
  max-width: 980px;
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.camp-details-header{
  text-align: center;
  margin-bottom: 22px;
}

.camp-details-title{
  color: #254f15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.camp-details-subtitle{
  max-width: 760px;
  margin: 0 auto;
  color: #254f15;
  line-height: 1.6;
}

.camp-details-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 22px;
}

.camp-details-block{
  padding: 18px;
  border-radius: 14px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
}

.camp-callout{
  background: rgba(13, 253, 105, 0.08);
  border: 1px solid rgba(13,110,253,0.18);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
.camp-callout{
  background: #fffbe8; /* warm yellow for theme callout */
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1.5px solid #f6d365;
  color: #254f15;
}

.camp-callout-label{
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  margin-bottom: 4px;
}

.camp-callout-value{
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.camp-callout-note{
  color: rgba(0,0,0,0.70);
  line-height: 1.5;
  font-size: 0.98rem;
}

.camp-bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,0.75);
  line-height: 1.75;
}

.camp-facts{
  display: grid;
  gap: 12px;
}

.camp-fact{
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.06);
}
.camp-fact{
  background: #e6f3fa; /* soft blue for logistics facts */
  border-radius: 12px;
  padding: 14px;
  border: 1.5px solid #7ec3e6;
  color: #254f15;
}

.camp-fact-label{
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(0,0,0,0.55);
  margin-bottom: 4px;
}

.camp-fact-value{
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  line-height: 1.4;
}

.camp-fact-note{
  margin-top: 6px;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  font-size: 0.95rem;
}

.camp-details-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* Camp Details Section - revert to previous spacing */
.camp-details-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.camp-details-card {
  display: block;
}
.camp-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.camp-details-block {
  flex: 1 1 320px;
  min-width: 320px;
  max-width: 480px;
  display: block;
}
.camp-callout {
  background: #cbdaab;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 4px rgba(26,58,107,0.04);
  margin-bottom: 2rem;
}
.camp-callout {
  background: #fffbe8; /* warm yellow for theme callout */
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1px 4px rgba(26,58,107,0.04);
  margin-bottom: 2rem;
  border: 1.5px solid #f6d365;
  color: #254f15;
}
.camp-callout-label {
  font-size: 1rem;
  color: #254f15;
  margin-bottom: .3rem;
}
.camp-callout-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #254f15;
  margin-bottom: .5rem;
}
.camp-callout-note {
  font-size: .98rem;
  color: #254f15;
}
.camp-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.camp-fact {
  background: #cbdaab;;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 4px rgba(26,58,107,0.04);
}
.camp-fact {
  background: #e6f3fa; /* soft blue for logistics facts */
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 4px rgba(26,58,107,0.04);
  border: 1.5px solid #7ec3e6;
  color: #254f15;
}
.camp-fact-label {
  font-size: 1rem;
  color: #254f15;
  font-weight: 600;
}
.camp-fact-value {
  font-size: 1.1rem;
  color: #254f15;
  font-weight: 700;
}
.camp-fact-note {
  font-size: .95rem;
  color: #254f15;
  margin-top: .3rem;
}
.camp-details-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.camp-details-actions .btn {
  font-weight: 600;
  border-radius: .8rem;
}
@media (max-width: 900px) {
  .camp-details-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .camp-details-block {
    max-width: 100%;
  }
}