/* home.css – desktop / large screens (≥ 769px) */

:root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* reset limited to this iframe */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: transparent;
}

/* =========================
   HERO LAYOUT
   ========================= */

.home-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3.5rem;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.65)
    ),
    url("../images/bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.home-hero {
  width: 100%;
  max-width: 58rem;
  color: #ffffff;
  text-align: left;
}

/* =========================
   TEXT
   ========================= */

.home-title {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 1.5rem 0;
  font-weight: 800;
  letter-spacing: 0.03em;
  /* keep real casing from JS, no automatic CAPS */
  text-transform: none;
}

.home-subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  max-width: 40rem;
  color: #ffffff;
}

.home-value {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   CTA BUTTONS
   ========================= */

.home-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.home-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Primary: View my work */
.home-cta-primary {
  background: #ffcc00;
  color: #000000;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.7);
}

/* Secondary: Contact me */
.home-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 0.12rem solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.6);
}

/* Hover effects */
.home-cta:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.8);
}

/* =========================
   FEATURE PILLS
   ========================= */

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999rem;
  border: 0.09rem solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 0.9rem;
}

.home-pill-icon {
  font-size: 1rem;
}

/* Slightly tighten things on smaller laptops */
@media (max-width: 64rem) {
  .home-container {
    padding: 3rem 2rem;
  }

  .home-title {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }
}