/* VALENCORIA - ABENA ENTREPRENØR AS */
/* Completely new unique design: Sticky Side Navigation + Card Dashboard feel */
/* Red dominant palette, different from all previous sites */
/* Radius: 10px cards, medium shadows, thin borders, red accents */

:root {
  --red: #C0262B;
  --red-dark: #9B1B20;
  --red-light: #FEE2E2;
  --bg: #FFFBF5;
  --card: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --border: #F3E8E8;
  --accent: #DC2626;
}

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

/* Top minimal header */
.top-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red-dark);
}

/* STICKY SIDE NAV - Unique structure */
.side-nav {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  background: white;
  border-right: 1px solid var(--border);
  padding: 2rem 1.25rem;
  width: 260px;
  flex-shrink: 0;
}

.side-nav a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 0.15rem;
}

.side-nav a:hover {
  background: var(--red-light);
  color: var(--red-dark);
}

.side-nav a.active {
  background: var(--red);
  color: white;
  font-weight: 600;
}

.side-nav .section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 1.5rem 0 0.5rem 0.5rem;
}

/* Main content area */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 2rem 2.5rem;
}

/* Hero with red energy */
.hero-red {
  background: linear-gradient(135deg, #C0262B 0%, #9B1B20 100%);
  color: white;
  border-radius: 16px;
  padding: 3.5rem 3rem;
  margin-bottom: 3rem;
}

/* Cards - Dashboard style, unique to this site */
.dashboard-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 12px -2px rgb(0 0 0 / 0.06), 0 2px 6px -2px rgb(0 0 0 / 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -4px rgb(0 0 0 / 0.08);
}

.card-red-accent {
  height: 4px;
  background: linear-gradient(to right, var(--red), #DC2626);
}

.card-content {
  padding: 1.6rem 1.7rem;
}

/* Article cards in grid */
.article-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 3px 10px -2px rgb(0 0 0 / 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
  border-color: #FECACA;
  box-shadow: 0 12px 24px -6px rgb(192 38 43 / 0.1);
}

.article-card .accent-bar {
  height: 5px;
  background: var(--red);
}

/* Buttons - solid red, rounded-lg (different radius) */
.btn-red {
  background-color: var(--red);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-red:hover {
  background-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid var(--red);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--red);
  color: white;
}

/* Form inputs - clean with red focus */
input, textarea {
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(192, 38, 43, 0.1);
}

/* Prose for long text */
.prose-red {
  max-width: 70ch;
  font-size: 1.02rem;
  line-height: 1.85;
}

.prose-red h2 {
  color: var(--red-dark);
  font-weight: 700;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.prose-red h3 {
  font-weight: 600;
  margin-top: 1.6rem;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid var(--border);
}

/* Mobile menu */
.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
  
  .main-content {
    padding: 1.5rem 1.25rem;
  }
}

/* Unique spacing and modern feel */
.gap-custom {
  gap: 1.75rem;
}
