/* Custom styles for Valentina Puntmann website */
/* No external fonts loaded - uses system fonts for GDPR compliance */

/* Heading styles */
h1, h2, h3 {
  font-weight: 400;
}

/* Image styling */
img {
  max-width: 100%;
  height: auto;
}

/* Card styling for media page and other sections */
.card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
  height: 100%;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.card-body img {
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* Appointment box in margin */
.appointment-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1rem;
}

.appointment-box strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.appointment-box .btn {
  background: white;
  color: #667eea;
  border: none;
  font-weight: 500;
}

.appointment-box .btn:hover {
  background: #f8f9fa;
  color: #764ba2;
}

/* Prominent booking button styling */
.booking-prominent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.booking-prominent h2 {
  color: white;
  margin-bottom: 1rem;
}

.booking-prominent .btn-lg {
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  font-weight: 600;
}

.booking-prominent .btn-lg:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Callout styling */
.callout {
  margin: 1.5rem 0;
}

/* Grid improvements */
.grid {
  gap: 1rem;
}

/* Special interests and diagnostics images - consistent height */
.interest-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

/* Center text in grid columns */
.text-center {
  text-align: center;
}

.text-center strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Float images */
.float-end {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .float-end {
    float: none;
    margin-left: 0;
    max-width: 100% !important;
  }
}
