/* AbaRonin - Software Development Hub
   Recreated static theme (dark, teal/red accents) based on the original
   Hostinger Website Builder design. */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #030302;
  --bg-elevated: #0d1013;
  --bg-card: #12161a;
  --border: #22262b;
  --text: #f2f3f6;
  --text-muted: #a9b0bd;
  --accent-teal: #3fb6c9;
  --accent-teal-dark: #1f8a9c;
  --accent-red: #eb3d41;
  --max-width: 1160px;
  --font: 'Open Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 148px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-red);
  color: #ffffff;
}

.btn-primary:hover {
  background: #ff5257;
}

.btn-outline {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

.btn-outline:hover {
  background: var(--accent-teal);
  color: #051013;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  padding: 90px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-copy { flex: 1 1 480px; }
.hero-media { flex: 1 1 360px; }

.hero-media img {
  /* border-radius: 50%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 0 60px rgba(63, 182, 201, 0.25); */
}

.eyebrow {
  color: var(--accent-teal);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}

h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hero p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 20px;
}

/* Generic sections */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 30px;
  margin: 0 0 16px;
}

.section .lede {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 40px;
}

.page-header {
  padding: 72px 0 40px;
}

.page-header h1 {
  font-size: 38px;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 17px;
}

/* Card grid (services / projects) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  color: var(--accent-teal);
}

.card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

.card.placeholder {
  border-style: dashed;
  color: var(--text-muted);
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}

.contact-info h3 {
  color: var(--accent-teal);
  font-size: 18px;
}

.contact-info p {
  color: var(--text-muted);
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  border-left: 3px solid var(--accent-teal-dark);
  padding-left: 12px;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 48px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-top img { height: 36px; }

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-nav a:hover { color: var(--accent-teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li { padding: 12px 0; border-bottom: 1px solid var(--border); }

  h1 { font-size: 32px; }
}
