/*
Theme Name: DGSTR IT Solutions
Theme URI: https://dgstr.nl/
Author: Codex
Author URI: https://dgstr.nl/
Description: Custom lightweight theme for the DGSTR IT landing page with integrated broken link scanner showcase.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dgstr-it
*/

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

:root {
  --color-bg: #040613;
  --color-surface: #0b1024;
  --color-accent: #37f1c0;
  --color-accent-dark: #11b68a;
  --color-text: #f2f6ff;
  --color-muted: #a7b4d6;
  --color-card: rgba(255, 255, 255, 0.04);
  --max-width: 1120px;
  --radius: 16px;
  --shadow: 0 20px 45px rgba(3, 11, 38, 0.45);
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top, #11183a, #040613 60%);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.dgstr-site-header {
  padding: 28px 5vw 0;
}

.dgstr-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.dgstr-logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dgstr-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.dgstr-logo span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dgstr-nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

main {
  padding: 0 5vw 80px;
}

.dgstr-hero {
  max-width: var(--max-width);
  margin: 80px auto 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.dgstr-hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 24px;
}

.dgstr-hero-text p {
  color: var(--color-muted);
  font-size: 1.1rem;
}

.dgstr-hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.dgstr-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dgstr-btn-primary {
  background: linear-gradient(120deg, var(--color-accent), #89ffd2);
  color: #04131c;
  box-shadow: 0 12px 30px rgba(55, 241, 192, 0.25);
}

.dgstr-btn-primary:hover {
  transform: translateY(-2px);
}

.dgstr-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-text);
}

.dgstr-hero-panel {
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.dgstr-hero-panel h3 {
  margin-top: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.dgstr-grid {
  max-width: var(--max-width);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dgstr-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 220px;
}

.dgstr-card h4 {
  margin-top: 0;
  font-size: 1.1rem;
}

.dgstr-card p {
  color: var(--color-muted);
}

.dgstr-section-title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-align: center;
}

.dgstr-section-heading {
  text-align: center;
  font-size: 2.2rem;
  margin: 12px 0 40px;
}

.dgstr-contact {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 45px;
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dgstr-contact h3 {
  margin-top: 0;
}

.dgstr-contact a {
  font-weight: 600;
}

.dgstr-footer {
  margin-top: 60px;
  padding: 36px 5vw 48px;
  text-align: center;
  color: var(--color-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .dgstr-nav {
    flex-direction: column;
    gap: 16px;
  }

  .dgstr-hero {
    margin-top: 40px;
  }
}
