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

/* =========================
   BASE VARIABLES
========================= */

:root {
  --background: 220 15% 8%;
  --foreground: 40 20% 95%;

  --gold: 38 60% 55%;
  --gold-light: 40 50% 70%;
  --gold-dark: 35 55% 40%;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* =========================
   GLOBAL RESET
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

/* =========================
   HERO BACKGROUND
========================= */

.hero-bg {
  min-height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("dron1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  max-width: 760px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 36px;
}

/* =========================
   CTA BUTTON
========================= */

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;

  background: linear-gradient(
    135deg,
    hsl(var(--gold-dark)),
    hsl(var(--gold)),
    hsl(var(--gold-light))
  );

  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px hsl(var(--gold) / 0.35);
}

/* =========================
   DEV BADGE
========================= */

.dev-badge {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eee;

  background: rgba(0, 0, 0, 0.5);
  padding: 0.45rem 0.65rem;
  border-radius: 0.3rem;
  backdrop-filter: blur(6px);
  z-index: 50;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
