/* AER INV AS - Unique Modern Blog Style | Orange Warm Palette | 2026 */
/* Fully custom, never repeated design: Asymmetric hero, magazine cards with varied accents, generous spacing, pill buttons, soft layered shadows */

:root {
  --orange: #FF6B00;
  --orange-dark: #E55A00;
  --orange-light: #FFB347;
  --cream: #FFFBF5;
  --warm-white: #FFF9F0;
  --charcoal: #111827;
  --gray: #6B7280;
  --light-border: #FED7AA;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
}

/* Unique header with subtle gradient border */
header {
  background: white;
  border-bottom: 1px solid #FED7AA;
  box-shadow: 0 1px 0 rgba(255, 107, 0, 0.06);
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Asymmetric Hero - Unique split layout */
.hero {
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF4E6 100%);
  min-height: 620px;
}

.hero-left {
  padding: 4rem 3rem;
}

.hero-right {
  background: linear-gradient(145deg, #FF6B00 0%, #E55A00 100%);
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  transform: rotate(25deg);
}

.hero-right::after {
  content: '✦';
  position: absolute;
  font-size: 12rem;
  color: rgba(255,255,255,0.08);
  top: 20%;
  right: 15%;
  font-weight: 300;
  pointer-events: none;
}

/* Modern cards - Asymmetric feel with varied padding and borders */
.article-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 1.75rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.06), 0 8px 10px -6px rgb(0 0 0 / 0.06);
  border-color: #FFCC99;
}

.article-card.featured {
  border-left: 6px solid var(--orange);
  padding-left: 2.25rem;
}

.article-card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--gray);
}

/* Unique button system - Pill with soft inner shadow */
.btn-primary {
  background-color: var(--orange);
  color: white;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgb(255 107 0 / 0.2), 0 2px 4px -2px rgb(255 107 0 / 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(255 107 0 / 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--orange);
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--orange);
  color: white;
}

/* Category pills - Unique style */
.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  background: #FFF4E6;
  color: #C2410F;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #FFCC99;
}

.category-pill:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: scale(1.02);
}

/* Long content blocks - Magazine feel with good rhythm */
.content-block {
  max-width: 72ch;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: 1.5rem;
}

/* Sidebar unique */
.sidebar {
  background: white;
  border: 1px solid #FED7AA;
  border-radius: 1.5rem;
  padding: 2rem;
}

.sidebar h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Form styles - Clean modern */
input, textarea, select {
  background: #FFFBF5;
  border: 1px solid #FED7AA;
  border-radius: 0.875rem;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.08);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer unique with top accent */
footer {
  background: #111827;
  color: #E5E7EB;
  border-top: 4px solid var(--orange);
}

footer a {
  color: #FCD34D;
  transition: color 0.2s ease;
}

footer a:hover {
  color: white;
}

/* Responsive tweaks for uniqueness */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-left, .hero-right {
    padding: 3rem 1.5rem;
  }
  .article-card {
    padding: 1.5rem;
  }
}

/* Subtle decorative elements */
.decorative-line {
  height: 3px;
  background: linear-gradient(to right, var(--orange), #FFB347);
  border-radius: 3px;
  width: 60px;
}

/* Legal pages - Clean readable long text */
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid #FED7AA;
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  color: #9F4E00;
}

.legal-content p, .legal-content li {
  color: #374151;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content strong {
  color: #1F2937;
}