/* =============================================================
   DimaDaily — Modern Minimal Design System
   Inspired by: UI/UX Pro Max Skills
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/* ────────────────────────────────── DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Colors */
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --accent: #0066ff;
  --accent-hover: #0052cc;
  --accent-light: #e6f0ff;
  --red: #e8321c;
  --red-hover: #c42a17;
  --red-light: #fef2f0;
  --yellow: #f5a623;
  --yellow-dark: #d48a1a;
  --yellow-light: #fffbeb;
  
  /* Semantic */
  --bg: #ffffff;
  --fg: #000000;
  --fg-secondary: #6b7280;
  --border: #e5e7eb;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', 'Georgia', serif;
  
  /* Spacing */
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* ────────────────────────────────── BASE STYLES ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.015em;
  margin: 0 0 1rem 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin: 0 0 1rem 0; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-hover); }

/* ────────────────────────────────── NAVIGATION ────────────────────────────────── */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e8eaf0;
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1d27 !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img.site-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-brand i {
  color: var(--red);
}

.nav-link {
  color: #374151 !important;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all var(--transition);
  margin: 0 0.25rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #0066ff !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: width var(--transition);
}

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

/* Navbar buttons */
.navbar .btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: #fff;
  border: none;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.navbar .btn-sm {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  transition: all var(--transition);
}

.navbar .btn-sm:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #1a1d27;
}

.navbar-toggler {
  border-color: #d1d5db;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2855, 65, 81, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ────────────────────────────────── HERO SECTION ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-search {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin-top: 2rem;
}

.hero-search .form-control {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  backdrop-filter: blur(10px);
}

.hero-search .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }

.hero-search .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  outline: none;
  color: var(--white);
}

.hero-search .btn {
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  border: none;
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.hero-search .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* ────────────────────────────────── ARTICLE CARDS ────────────────────────────────── */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.article-card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.article-card:hover .article-card-image img { transform: scale(1.05); }

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.article-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.article-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}

.article-card-title a:hover { color: var(--red); }

.article-card-excerpt {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-500);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Category overlay badge on card images */
.category-badge-overlay {
  background: var(--red) !important;
  border: none !important;
  font-size: .72rem !important;
  letter-spacing: .04em;
}

/* Featured badge */
.badge.bg-warning {
  background: var(--yellow) !important;
  color: #1a0a00 !important;
}

/* Trending / hot label */
.badge-trending {
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .3rem .65rem;
  border-radius: 50px;
}

/* ────────────────────────────────── BUTTONS & COMPONENTS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--black);
  border: 1px solid var(--border);
}

.btn-secondary:hover { background: var(--gray-200); }

.tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--fg-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all var(--transition);
  text-decoration: none;
}

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

/* ────────────────────────────────── ARTICLE READER ────────────────────────────────── */
.article-header {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.article-header-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.article-lead {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.article-byline-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.article-byline-info strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  max-height: 500px;
  object-fit: cover;
}

/* Article body */
.article-content {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--gray-600);
  max-width: 680px;
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.article-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.article-content p { margin-bottom: 1.4rem; }

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover { color: var(--accent-hover); }

.article-content img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.article-content blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--fg-secondary);
  background: var(--gray-50);
}

.article-content pre, .article-content code {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.article-content pre {
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-content code { padding: 0.25rem 0.5rem; }

/* ────────────────────────────────── SIDEBAR ────────────────────────────────── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget .widget-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.category-list li:last-child { border-bottom: none; }

.category-list li a {
  color: var(--fg-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.category-list li a:hover { color: var(--red); }

.category-list li .count {
  font-size: 0.75rem;
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 0.25rem 0.5rem;
  border-radius: 99px;
}

/* ────────────────────────────────── FOOTER ────────────────────────────────── */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #ffffff;
}

.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f35 100%);
  color: rgba(255,255,255, 0.8);
  padding: 4rem 0 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.7), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-col a {
  color: rgba(255,255,255, 0.7);
  text-decoration: none;
  transition: all var(--transition);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--yellow);
  padding-left: 0.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand i {
  color: var(--yellow);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255, 0.7);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255, 0.6);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a0a00;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255, 0.5);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255,255,255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--yellow); }

/* ────────────────────────────────── PAGE HEADER ────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 166, 35, 0.3);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 50, 28, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.7;
}

.page-header-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-header-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-header-meta-item i {
  color: var(--yellow);
}

.page-header-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ────────────────────────────────── CATEGORY HEADER ────────────────────────────────── */
.category-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%) !important;
  color: var(--white);
  padding: 3.5rem 0 !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 2rem !important;
  border-radius: 0 !important;
}

.category-header.bg-light {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%) !important;
}

.category-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.category-header h1 {
  color: var(--white);
  margin-bottom: 1rem !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.category-header .lead {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

.category-header .container {
  position: relative;
  z-index: 1;
}

/* ────────────────────────────────── HOME HEADER ────────────────────────────────── */
.home-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%) !important;
  color: var(--white) !important;
  padding: 4.5rem 0 !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem !important;
}

.home-header.bg-gradient {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1f35 100%) !important;
}

.home-header h1 {
  color: var(--white) !important;
  margin-bottom: 1.5rem !important;
  font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-header .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  line-height: 1.75;
}

.home-header-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.home-header-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-header-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  font-family: var(--font-serif);
}

.home-header-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  
  .navbar-brand { font-size: 1.2rem; }
  
  .hero { padding: 2.5rem 0; }
  .hero h1 { font-size: 1.75rem; }
  
  .hero-search { flex-direction: column; }
  
  .article-card-body { padding: 1rem; }
  
  .footer-content { grid-template-columns: 1fr; }
  
  .page-header { padding: 2.5rem 0; }
  .page-header h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  
  .navbar { padding: 0.75rem 0; }
  .navbar-brand { font-size: 1rem; }
  
  .hero { padding: 2rem 0; }
  .hero h1 { font-size: 1.4rem; }
  
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}
