/* ================= HERO & DATOR2 ================= */

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 5%;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.text-column {
  width: 36%;
  min-width: 260px;
  text-align: left;
  position: relative;
  z-index: 30;
  top: 50%;
  transform: translateY(-50%);
}

.brand {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tag {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.quote-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
}

/* VISUALS */
.visuals {
  width: 60%;
  height: 60vh;
  position: relative;
  display: block;
  overflow: visible;
}

/* GPU-box */
.gpu-box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg);
  width: 500px;
  height: 500px;
  border-radius: 20px;
  background: var(--box-gradient);
  z-index: 5;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.5s ease;
}

/* GPU-grafikkort */
.gpu-image {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(5deg);
  z-index: 9999;
  width: 600px;
  max-width: 90vw;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

/* Parallax helper */
.parallax {
  will-change: transform;
}

/* Dator2 sektion */
.dator2-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
}

.dator2-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.computer-target {
  width: 400px;
  max-width: 45%;
  z-index: 20;
}

.dator2-text {
  color: #fff;
  flex: 1;
}

.dator2-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.dator2-text p {
  color: #bdbdbd;
  line-height: 1.5;
  font-size: 1rem;
}

/* ================= ANIMATIONER ================= */

/* GPU / Hero Scroll-animation */
/* (Körs via main.js) */

/* Spin animation (RGB-fan) */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
