/* ── Special Winter Camp Diary Styles ── */
.camp-timeline {
  max-width: 960px;
  margin: 0 auto 60px;
  position: relative;
  padding: 20px 0;
}

.camp-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-light, #fbbf24), transparent);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .camp-timeline::before {
    left: 20px;
  }
}

.camp-day-card {
  position: relative;
  margin-left: 70px;
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg, 16px);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.camp-day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.camp-day-marker {
  position: absolute;
  left: -55px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--bg-body), 0 0 15px rgba(230, 138, 0, 0.4);
}

@media (max-width: 768px) {
  .camp-day-card {
    margin-left: 50px;
    padding: 20px;
  }
  .camp-day-marker {
    left: -42px;
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    box-shadow: 0 0 0 4px var(--bg-body);
  }
}

.camp-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 14px;
}

.camp-day-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.camp-day-date {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 138, 0, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.camp-day-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Photo Gallery Grid inside Day Card */
.camp-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.camp-photo-item {
  position: relative;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  height: 160px;
  cursor: pointer;
  background: var(--bg-body);
  border: 1px solid var(--border-glass);
}

.camp-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.camp-photo-item:hover img {
  transform: scale(1.08);
}

.camp-photo-item .overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.camp-photo-item:hover .overlay-zoom {
  opacity: 1;
}

/* Lightbox Modal */
.camp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.camp-lightbox.active {
  display: flex;
}

.camp-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.camp-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.camp-lightbox-close:hover {
  transform: scale(1.2);
}
