/* 🌙 General Dark Mode Layout */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
  background-color: #0e0e10;
  overflow-x: hidden;
}

/* 🌌 Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at top left, #1b1b1f, #0e0e10 70%);
}

.hero-overlay {
  text-align: center;
  z-index: 10;
}

.site-title {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff6bcb, #857fff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin: 0;
}

.subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-top: 0.5rem;
}

/* 🟣 Geometric shapes */
.shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: float 18s infinite ease-in-out alternate;
}

/* Different base shapes + positions */
.square {
  width: 80px;
  height: 80px;
  background: #857fff;
  top: 20%;
  left: 10%;
  animation: floatSquare 20s infinite ease-in-out;
}

.circle {
  width: 100px;
  height: 100px;
  background: #00e0ff;
  border-radius: 50%;
  bottom: 15%;
  right: 20%;
  animation: floatCircle 25s infinite ease-in-out;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #ff6bcb;
  top: 35%;
  right: 25%;
  animation: floatTriangle 22s infinite ease-in-out;
}

.hexagon {
  width: 100px;
  height: 55px;
  background: #ffb84d;
  position: absolute;
  top: 65%;
  left: 25%;
  animation: floatHex 30s infinite ease-in-out;
}
.hexagon::before,
.hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}
.hexagon::before {
  bottom: 100%;
  border-bottom: 27.5px solid #ffb84d;
}
.hexagon::after {
  top: 100%;
  width: 0;
  border-top: 27.5px solid #ffb84d;
}


.square { animation: floatSquare 22s infinite ease-in-out; }
.circle { animation: floatCircle 28s infinite ease-in-out; }
.triangle { animation: floatTriangle 24s infinite ease-in-out; }
.hexagon { animation: floatHex 32s infinite ease-in-out; }

/* ✨ Continuous, smooth looping motion — no teleporting */
@keyframes floatSquare {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(30px, -40px) rotate(15deg); }
  50%  { transform: translate(60px, -20px) rotate(30deg); }
  75%  { transform: translate(30px, 20px) rotate(15deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatCircle {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-30px, -20px) scale(1.05); }
  50%  { transform: translate(-40px, -50px) scale(1.1); }
  75%  { transform: translate(-10px, 10px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatTriangle {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(15px, 20px) rotate(10deg); }
  50%  { transform: translate(25px, -25px) rotate(15deg); }
  75%  { transform: translate(-10px, -15px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatHex {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(40px, -30px) rotate(10deg); }
  50%  { transform: translate(60px, 0) rotate(20deg); }
  75%  { transform: translate(20px, 30px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


/* 🌀 Placeholder Section */
.placeholder {
  padding: 10vh 10vw;
  text-align: center;
  background-color: #151518;
  min-height: 60vh;
}

.placeholder h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.placeholder p {
  color: #b5b5b5;
  font-size: 1.1rem;
}

/* ⚙️ Footer */
.footer {
  background-color: #0a0a0c;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: #666;
  margin: 0;
}
