/* ===============================
   DW Digital Studio – Portfolio
   Professional, Tight, Focused
================================ */

:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --brand: #0b7a75;
  --accent: #0a66c2;
  --border: #e5e7eb;
  --radius: 10px;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===============================
   Header
================================ */

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--brand);
  color: white !important;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ===============================
   Hero
================================ */

.hero {
  text-align: center;
  padding: 60px 20px 50px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.15s ease;
}

.btn.primary {
  background: var(--brand);
  color: white;
}

.btn.secondary {
  background: #e6f2f1;
  color: var(--brand);
}

.btn:hover {
  transform: translateY(-2px);
}

/* ===============================
   Sections
================================ */

.section {
  max-width: var(--max-width);
  margin: auto;
  padding: 50px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* ===============================
   Before / After Projects
================================ */

.projects {
  display: grid;
  gap: 30px;
}

.project {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.project h3 {
  margin-bottom: 10px;
}

.project p {
  color: var(--muted);
  margin-bottom: 16px;
}

.project-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===============================
   Services
================================ */

.services-grid {
  display: grid;
  gap: 20px;
}

.service-item {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-item h3 {
  margin-bottom: 8px;
}

/* ===============================
   Contact
================================ */

.contact-simple {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.email-link {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* ===============================
   Footer
================================ */

.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===============================
   Responsive
================================ */

@media (min-width: 768px) {
  .projects {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}