/* Custom Professional Styles for Hugo Blog */

/* Typography */
:root {
  --font-serif: 'Crimson Text', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
}

/* Navigation */
.navbar {
  font-family: var(--font-sans);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.sub-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 14px;
}

.sub-navbar a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sub-navbar a:hover {
  color: #111827;
}

/* Cards */
.card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Logo Carousel - JavaScript-powered */
.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Logo styling is now handled by JavaScript */

/* Prose Content */
.prose {
  font-family: var(--font-serif);
  max-width: none;
  color: #475569;
}

.prose h1 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.2;
}

.prose h2 {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.3;
}

.prose h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #334155;
  line-height: 1.4;
}

.prose h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #334155;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.prose strong {
  font-weight: 600;
  color: #1e293b;
}

.prose a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: #1d4ed8;
}

/* Buttons */
.btn {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.025em;
}

/* Footer */
.footer {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #e2e8f0;
}

/* Background Colors */
.hero.bg-base-100, .bg-base-100 {
  background-color: #ffffff !important;
}

.hero.bg-base-200, .bg-base-200 {
  background-color: #f3f4f6 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .prose h1 {
    font-size: 2rem;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
}

/* Logo carousel responsive sizing is handled by JavaScript */