@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0b0f;
  color: #eaeaf0;
  line-height: 1.7;
}

/* =========================
   HEADER
========================= */

header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(10,10,14,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
}

nav a {
  color: #9c9ca8;
  text-decoration: none;
  margin-left: 28px;
  font-size: 13px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #ffffff;
}

/* =========================
   HERO (ESTÁTICO)
========================= */

.hero {
  position: relative;
  height: 520px; /* Altura similar a tu captura */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("images/nectar-bg.jpg");
  background-size: 140%;         /* Zoom visual */
  background-position: center 35%; /* Ajusta encuadre vertical */
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.55),
    rgba(10,10,15,0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1000px, 92%);
}

.created {
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #b5b5c3;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(14px, 1.8vw, 18px);
  margin: 0;
  color: #c6c6d3;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 90px 0;
}

.section.dark {
  background: #101018;
}

h2 {
  font-size: 22px;
  margin-bottom: 25px;
}

p {
  max-width: 820px;
  color: #b5b5c3;
}

ul {
  padding-left: 18px;
  color: #b5b5c3;
}

li {
  margin-bottom: 8px;
}

/* =========================
   KAIN IMAGE
========================= */

.kain-visual {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.kain-visual img {
  max-width: 850px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* =========================
   CONTACT
========================= */

.email a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

/* =========================
   FOOTER
========================= */

footer {
  background: #08080c;
  text-align: center;
  padding: 35px 0;
  font-size: 12px;
  color: #666675;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 820px) {
  nav {
    display: none;
  }

  :root {
    --header-height: 64px;
  }

  .hero {
    height: 420px;
    background-size: 160%;
    background-position: center 40%;
  }
}