/* 
 * Nitecap Page Styles
 * 
 * Brand-specific styles only. Bootstrap handles most layout and components.
 * Use Bootstrap utilities wherever possible.
 */

/* Page container - Bootstrap handles flex via utilities */
.nitecap-page-container {
  background: var(--nitecap-gradient);
}

/* Nitecap card - Brand-specific styling */
.nitecap-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 1;
}

.nitecap-card:hover:not(.disabled):not(.selected) {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.nitecap-card.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.nitecap-card.selected {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.4) 0%, rgba(255, 182, 193, 0.3) 100%);
  border: 3px solid #ff6b9d !important;
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.4), 0 0 20px rgba(255, 107, 157, 0.2);
}

/* Avatar - Brand-specific styling */
.nitecap-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  overflow: hidden;
}

.nitecap-card.selected .nitecap-avatar {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffb6c1 100%);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.nitecap-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.nitecap-avatar-icon {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
}

/* Selection indicator - Brand-specific animations */
.nitecap-selection-indicator {
  /* Bootstrap handles flex via utilities */
  margin-top: 1rem;
}

.nitecap-selection-icon {
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
  line-height: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

.nitecap-selection-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nitecap-waiting-text {
  margin-top: 0.5rem;
}

/* Skip button - Brand-specific styling */
.nitecap-skip-button {
  border-radius: 12px;
  border-width: 2px;
  transition: all 0.3s;
}

.nitecap-skip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nitecap-page-container h1 {
    font-size: 2rem;
  }
}
