@font-face {
  font-family: 'Pacifico';
  src: url(Pacifico-Regular.ttf);
}

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

:root {
  --red: #d32f2f;
  --red-bright: #f44336;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-border: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: #888;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

/* ─── Hero ─────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('./background.png');
  background-repeat: repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(211, 47, 47, 0.12) 0%, rgba(0, 0, 0, 0.88) 70%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 40px 24px;
  animation: fadeUp 0.9s ease both;
}

.logo {
  width: 230px;
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 0 24px rgba(211, 47, 47, 0.45));
}

.badge {
  display: inline-block;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.45);
  color: #f44336;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content .tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
}

.cta-btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(211, 47, 47, 0.5);
}

/* ─── Services ─────────────────────────────── */

.services {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: 'Pacifico', Georgia, serif;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(211, 47, 47, 0.5);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--red-bright);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Contact ───────────────────────────────── */

.contact {
  padding: 40px 24px 80px;
}

.contact-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.contact-card h2 {
  font-family: 'Pacifico', Georgia, serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.925rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.contact-item:hover {
  border-color: rgba(211, 47, 47, 0.5);
  background: rgba(211, 47, 47, 0.07);
  color: #fff;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--red-bright);
}

/* ─── Footer ─────────────────────────────────── */

footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── Animation ────────────────────────────── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─────────────────────────────── */

@media (max-width: 480px) {
  .logo {
    width: 170px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content .tagline {
    font-size: 0.875rem;
  }

  .contact-card {
    padding: 32px 20px;
  }
}
