/* mileja.ch custom styles */

/* Form inputs */
.form-input,
.form-select,
.form-textarea {
  @apply w-full border border-gray-300 rounded px-3 py-2 text-gray-800 focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-colors;
}

/* Hero overlay text */
.hero-title {
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Team photo circle */
.team-photo {
  @apply rounded-full object-cover grayscale hover:grayscale-0 transition-all duration-300;
}

/* Primary gradient */
.gradient-primary {
  background: linear-gradient(135deg, #FF28AC, #993366);
}

/* Accent stripe */
.accent-stripe {
  height: 4px;
  background: linear-gradient(90deg, #FF28AC, #993366);
}

/* mileja-content: styled prose for imported HTML content */
.mileja-content h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #222;
  border-left: 4px solid #FF28AC;
  padding-left: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.mileja-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #993366;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.mileja-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.mileja-content p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}
.mileja-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.mileja-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: #666;
}
.mileja-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF28AC;
}
.mileja-content strong {
  color: #444;
}
.mileja-content a {
  color: #FF28AC;
  text-decoration: underline;
}
.mileja-content blockquote {
  border-left: 4px solid #FF28AC;
  padding: 1rem 1.5rem;
  background: #fff5fb;
  color: #993366;
  font-style: italic;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
