/* SzukamBogategoFaceta.pl — Pastel Purple & Cream Theme */

:root {
  --purple: #9b59b6;
  --purple-dark: #7d3c98;
  --purple-light: #c9a0dc;
  --purple-pale: #f0e6f6;
  --cream: #fdf6ee;
  --cream-dark: #fffbf0;
  --text-dark: #2c2c2c;
  --text-muted: #6c757d;
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Navbar */
.navbar-brand {
  font-size: 1.2rem;
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: var(--purple) !important;
}

/* Cards */
.card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 12px rgba(155, 89, 182, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.15);
}

.card-title {
  color: var(--purple);
}

/* Signup Wizard */
.signup-card {
  border-radius: 20px;
  background: #fff;
  position: sticky;
  top: 80px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: #e9ecef;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--purple);
  color: #fff;
}

.step-dot.completed {
  background: var(--purple-light);
  color: #fff;
}

.step-line {
  width: 30px;
  height: 2px;
  background: #e9ecef;
}

/* Photo upload */
.photo-upload-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px dashed var(--purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--purple-pale);
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.photo-upload-circle:hover {
  border-color: var(--purple);
  background: #e8d5f0;
}

.photo-upload-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-upload-icon {
  font-size: 2rem;
}

.photo-upload-text {
  font-size: 0.75rem;
  color: var(--purple);
  margin-top: 2px;
}

/* Buttons */
.btn-purple {
  background-color: var(--purple);
  color: #fff;
  border: none;
}

.btn-purple:hover {
  background-color: var(--purple-dark);
  color: #fff;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--purple-pale) 0%, var(--cream) 100%);
  padding: 4rem 0;
}

.hero-section h1 {
  color: var(--purple-dark);
  font-weight: 700;
}

/* Section headings */
h2 {
  color: var(--purple-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h3 {
  color: var(--purple);
}

/* City cards */
.city-card {
  border-left: 4px solid var(--purple-light);
}

.city-card:hover {
  border-left-color: var(--purple);
}

/* Features */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

/* Competitor comparison cards */
.competitor-card {
  border-top: 4px solid var(--purple);
}

/* Blog cards */
.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .card-title a {
  color: var(--purple-dark);
  text-decoration: none;
}

.blog-card .card-title a:hover {
  color: var(--purple);
}

/* Want cards */
.want-card {
  background: linear-gradient(135deg, #fff 60%, var(--purple-pale) 100%);
}

/* Links */
a {
  color: var(--purple);
}

a:hover {
  color: var(--purple-dark);
}

/* Breadcrumb */
.breadcrumb-item a {
  text-decoration: none;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

/* Stats */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 3rem;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .btn {
  background: #fff;
  color: var(--purple);
  font-weight: 600;
}

.cta-section .btn:hover {
  background: var(--cream);
}

/* Testimonial */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Page content */
.page-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.page-content p {
  margin-bottom: 1.2rem;
}

/* Wizard step transitions */
.wizard-step {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .signup-card {
    position: static;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Purple badge */
.badge-purple {
  background-color: var(--purple);
  color: #fff;
}

/* Internal link styling */
.internal-link {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--purple-pale);
  border-radius: 20px;
  text-decoration: none;
  color: var(--purple-dark);
  font-size: 0.9rem;
  margin: 0.2rem;
  transition: background 0.2s;
}

.internal-link:hover {
  background: var(--purple-light);
  color: #fff;
}
