* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
  color: #123455;
}

/* BACKGROUND PLACEHOLDER */
.background {
  position: fixed;
  inset: 0;
  background: url("../assets/background.jpg") center / cover no-repeat;
  filter: brightness(0.92);
  z-index: -3;
}

/* THREE.JS */
#three-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* HERO – PERFECT CENTER */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 👈 change */
  text-align: center;
  padding-top: 120px;          /* 👈 PUSH CONTENT DOWN */
}


/* LOGO – SOFT EDGES */
.logo {
  width: 170px;
  margin-bottom: 12px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  padding: 10px;
}

/* TITLE */
.title {
  font-size: 46px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* LANGUAGE SWITCH – CENTERED */
.lang-switch {
  margin-bottom: 14px;
}

.lang-switch button {
  background: rgba(31, 59, 90, 0.85);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 26px;
  margin: 0 6px;
  cursor: pointer;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

/* TEXT */
.slogan {
  font-size: 30px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* ORBITAL SYSTEM */
.orbital-system {
  position: relative;
  width: 480px;
  height: 480px;
}

/* CENTER GLOW */
.orbital-system::before {
  content: "";
  position: absolute;
  inset: 110px;
  background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* GLASS CIPHER STYLE */
.cipher {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(255,255,255,0.35);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cipher img {
  width: 90px;
  border-radius: 14px;
}

/* HOVER */
.cipher:hover {
  transform: scale(1.5);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    inset 0 0 30px rgba(255,255,255,0.45);
}

/* RADIAL POSITIONS (BALANCED & CENTERED) */
/* POSITIONS (MATCH IMAGE) */
.c1 { top: -450px; left: -200px; }
.c2 { top: -300px; left: -300px; }
.c3 { top: -150px; left: -300px; }
.c4 { top: 0px; left: -200px; }
.c5 { top: 20px; left: -50px; }
.c6 { top: 60px; left: 100px; }



/* Glassy circular button – 150% size */
.cipher {
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 15px rgba(255, 255, 255, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image fills 90% of the circle */
.cipher img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
}

/* Hover effect */
.cipher:hover {
  transform: scale(1.15);
  box-shadow:
    0 12px 40px rgba(0, 150, 255, 0.45),
    inset 0 0 20px rgba(255, 255, 255, 0.35);
}
