/* ================================
   GATHERING SECTION V2 - REDESIGNED
   ================================ */

.ncac-gathering-v2 {
  padding: 100px 0;
  background: #ffffff;
}

.gathering-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #fee2e2;
}

/* Left: Content */
.gathering-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gathering-badge {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, rgba(255, 26, 35, 0.1), rgba(217, 0, 10, 0.05));
  color: #ff1a23;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 26, 35, 0.2);
}

.gathering-title-cn {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

.gathering-title-en {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

.gathering-highlight {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.gathering-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  background: linear-gradient(135deg, #ff1a23 0%, #d9000a 100%);
  color: white !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 26, 35, 0.25);
}

.gathering-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 26, 35, 0.35);
}

.gathering-btn svg {
  transition: transform 0.3s ease;
}

.gathering-btn:hover svg {
  transform: translateX(5px);
}

/* Right: Image */
.gathering-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gathering-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 26, 35, 0.1), rgba(217, 0, 10, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gathering-card:hover .image-overlay {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gathering-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .gathering-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ncac-gathering-v2 {
    padding: 60px 0;
  }

  .gathering-card {
    padding: 30px;
    gap: 30px;
  }

  .gathering-btn {
    width: 100%;
    justify-content: center;
  }
}
