/*
Theme Name: Deliverynauts
Theme URI: https://deliverynauts.com
Author: Lookstar Studios
Author URI: https://lookstarstudios.com
Description: Ultra-fast, code-driven custom theme for Deliverynauts.
Version: 1.0.0
Text Domain: deliverynauts
*/

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-dark: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: #f8fafc;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.hero-section {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
}
