/* Custom CSS for Dr. Harshi Dhingra page */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --primary: 210 100% 40%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --medical-blue: 210 100% 40%;
  --medical-green: 142 76% 36%;
  --medical-red: 0 70% 50%;
  --border: 214.3 31.8% 91.4%;
  --radius: 0.5rem;
}

.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --primary: 210 40% 98%;
  --primary-foreground: 222.2 47.4% 11.2%;
  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --border: 217.2 32.6% 17.5%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  margin: 0;
  padding: 0;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-available {
  border: 2px solid hsl(var(--medical-green));
  color: hsl(var(--medical-green));
  background-color: hsl(var(--background));
}

.btn-available:hover {
  background-color: hsl(var(--medical-green) / 0.1);
}

.btn-contact {
  background-color: hsl(var(--medical-red));
  color: white;
}

.btn-contact:hover {
  background-color: hsl(var(--medical-red) / 0.9);
}

.btn-outline {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
}

.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.card-content {
  padding: 1.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title-large {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--medical-blue));
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-md-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prose {
  max-width: none;
  color: hsl(var(--muted-foreground));
}

.prose p {
  margin-bottom: 1.5rem;
}

.education-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--medical-blue));
  margin-bottom: 0.25rem;
}

.education-institution {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.education-years {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.list-styled {
  color: hsl(var(--muted-foreground));
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.list-styled li {
  margin-bottom: 0.5rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.text-medical-blue {
  color: hsl(var(--medical-blue));
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}