/* styles.css */

* {
  box-sizing: border-box;
}

:root {
  --bg: #0a0b0f;
  --text: #ffffff;
  --muted: #bfc3cc;
  --accent: #8cff00;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.95));
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  background: url("images/logo2.png") center/60% no-repeat;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-shadow: 0 0 25px rgba(140,255,0,0.3);
}

/* BUTTONS */

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: black;
  box-shadow: 0 0 20px rgba(140,255,0,0.6);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
}

/* SERVICES */

.cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  padding: 40px 20px;
}

.card {
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 12px;
  transition: .3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(140,255,0,0.3);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

/* LEAD */

.lead {
  padding: 60px 20px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FOOTER */

.footer {
  position: relative;
  padding: 100px 20px 60px;
  text-align: center;
  background: #000;
}

.footer-logo {
  position: absolute;
  inset: 0;
  background: url("images/logo2.png") center/40% no-repeat;
  opacity: 0.08;
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* MOBILE */

@media (max-width:768px){
  .cards {
    grid-template-columns: 1fr;
  }
}

/* MOTION */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .8s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* STICKY CALL */

.sticky-call {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: var(--accent);
  color: black;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  display: none;
}

@media(max-width:768px){
  .sticky-call {
    display: block;
  }
}