@import url(./typewriter.css);
@import url(./bubbles.css);
@import url(./form.css);
@import url(./keyframes.css);
@import url(./mediaqueries.css);

:root {
  --atom-green: #98c379;
  --atom-blue: #61afef;
  --atom-purple: #c678dd;
  --atom-orange: #d19a66;
  --atom-gray: #2b2b2b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', sans-serif;
  background: radial-gradient(circle at center, #2b2b2b 0%, #1e1e1e 40%, #000 100%);
  background-size: 200% 200%;
  animation: pulseGlow 12s ease-in-out infinite;
  color: #e0e0e0;
  overflow-x: hidden;
  width: 100vw;
}

.logo {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: bold;
  color: var(--atom-blue);
}

.logo-img {
  max-width: 280px;
  /* fits Lighthouse expectations */
  width: 40vw;
  /* scales with screen */
  min-width: 180px;
  /* readable on mobile */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  user-select: none;
}

.logo-section {
  height: 70vh;
  margin-bottom: 3em;
}

/* Make hero section visually large */
.hero-section {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Ensure columns don't push each other */
.logo-col {
  flex: 0 0 auto;
  /* Does NOT grow or shrink */
  width: 50%;
  /* Fixed half of the row */
}


/* Scroll-down indicator animation */
.scroll-down-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  animation: pulseScroll 2s infinite ease-in-out;
}


.inline-row p {
  display: inline-block;
}

.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
  animation: floatY 2.5s ease-in-out infinite;
}

.scroll-down-indicator:hover {
  opacity: 1;
}

.scroll-text {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--atom-blue);
  text-shadow: 0 0 6px var(--atom-blue);
  margin-bottom: 0.2rem;
}

.scroll-icon {
  font-size: 1.8rem;
  color: var(--atom-blue);
  animation: pulseGlowIcon 2s ease-in-out infinite;
}



/* Scroll-down container */
.scroll-down-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  cursor: pointer;
  animation: pulseScroll 2s infinite ease-in-out;
}

.scroll-text {
  font-size: 1rem;
  opacity: 0.85;
}

.scroll-icon {
  font-size: 2rem;
  margin-top: .2rem;
}

/* Responsive: on mobile stack normally */
@media (max-width: 767px) {

  .logo-col,
  .typewriter-col {
    width: 100%;
    text-align: center;
  }
}
