/**
 * Frontend Styles for RPC Club Closure
 * Matches the provided design exactly
 */

/* ===== OUTER CONTAINER ===== */
.club-closure-card {
  background: linear-gradient(180deg, #152c48, #0f2238);
  border-radius: 24px;
  padding: 36px;
  max-width: 780px;
  margin: auto;
  border: 1px solid rgba(164, 200, 55, 0.25);
  transition: all 0.4s ease;
}

/* OUTER CARD HOVER ONLY */
.club-closure-card:hover {
  border-color: #a4c837;
  box-shadow:
    0 0 35px rgba(164, 200, 55, 0.35),
    inset 0 0 25px rgba(164, 200, 55, 0.15);
}

/* ===== TITLE ===== */
.club-title {
  color: #a9b8c8;
  font-size: 16px;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  margin-top: 0;
}

/* ===== HOLIDAY ITEMS ===== */
.closure-item {
  position: relative;
  background: linear-gradient(180deg, #2b2b42, #24233a);
  border-radius: 18px;
  padding: 18px 22px 18px 52px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  font-family: "Inter", sans-serif;

  /* RED GRADIENT BORDER */
  border: 1px solid transparent;
  background-clip: padding-box;
}

.closure-item:last-child {
  margin-bottom: 0;
}

/* Red gradient border effect */
.closure-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid #ff3b3b;
  pointer-events: none;
}

/* Red dot */
.closure-item::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #ff3b3b;
  border-radius: 50%;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.9);
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .club-closure-card {
    padding: 26px;
    border-radius: 18px;
  }

  .closure-item {
    font-size: 16px;
    padding-left: 48px;
    border-radius: 14px;
  }

  .closure-item::before {
    left: 20px;
    width: 10px;
    height: 10px;
  }

  .club-title {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

