/* Basic reset */
* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  /* Fallback background color while image loads */
  background: #000;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Full-screen hero with background image */
.hero {
  min-height: 100vh;

  background-image: url("../img/web_desktop_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Layout */
  position: relative;
  overflow: hidden;
}

/* Top strip, centered, touching the top edge */
.hero-strip {
  display: block;
  width: clamp(160px, 20vw, 285px);
  height: auto;
  margin: 0 auto;  /* centers it */
}

/* Centered content stack */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 24px;
  gap: 18px;
}

/* Logo */
.hero-logo {
  margin-top: 30px;
  width: clamp(160px, 20vw, 285px);
  height: auto;
}

/* Writeup image */
.hero-writeup {
  margin-top: 30px;
  width: 100%;
  max-width: 1800px;
  height: auto;
}

/* Coming soon text */
.hero-coming {
  margin: 0;
  color: #fff;

  font-family: "de-walpergens-pica", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 2.5vw, 52px);
  letter-spacing: 0.04em;

  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* Instagram link + icon */
.hero-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* ← REQUIRED for lines */
  color: #F39383;
  margin-top: 40px;
  border-radius: 999px;

/* subtle hover target without forcing a visible button */
  transition: transform 150ms ease;
}

.hero-ig:hover {
  transform: scale(1.06);
}

.hero-ig img {
  width: 48px;
  height: 48px;	
  display: block;
}

/* Horizontal lines beside Instagram icon */
.hero-ig::before,
.hero-ig::after {
  content: "";
  position: absolute;
  top: 50%;
  

  height: 2px;
  width: 456px;
  background-color: #F39383;
  opacity: 0.9;
}

/* Left line */
.hero-ig::before {
  right: 100%;
  margin-right: 18px;
}

/* Right line */
.hero-ig::after {
  left: 100%;
  margin-left: 18px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
    gap: 14px;
  }

  .hero-strip {
    width: 45%;
  }
	
 .hero-logo {
    width: 49%;
  }	
	
 .hero-writeup {
    content: url("../img/web_writeup_mobile.png");
  }
	
 .hero-coming {
    margin: 0;
    color: #fff;

    font-family: "de-walpergens-pica", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 46px;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}	

 .hero-ig::before,
 .hero-ig::after {
    width: 166px;
  }

	
}
