:root {
  --default-text: #d4d4d8;
  --heading: #f4f4f4;
  --gap-section: 4.5rem;
  --font-work-sans: "Work Sans", sans-serif;
  --font-source-code: "Source Code Pro", monospace;
  --font-playwrite: "Playwrite DK Loopet", cursive;
  --font-open-sans: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, .3) transparent;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: var(--font-open-sans);
    background-color: #18181b;
    color: #d4d4d8;
    position: relative;
    scroll-behavior: smooth;
    height: 100vh;
    display: flex;
}

h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #f4f4f4;
}

p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
  margin: 1rem auto;
}

button {
  all: unset;
}

.animated-btn {
    background: linear-gradient(90deg, var(--c1, #f6d365), var(--c2, #fda085) 51%, var(--c1, #f6d365)) var(--x, 0)/ 200%;
    transition: 250ms;
}

.animated-btn:hover {
    --x: 100%;
}

.contact-cta {
    --c1: #3B82F6;
    --c2: rgba(30, 81, 164, 0.7);
    border-radius: .4rem;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    padding: .5rem 1.5rem;
    box-shadow: #3b82f68c 1px 1px 16px 7px;
}

.contact-cta:hover {
    --x: 100%;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }

  p {
    font-size: 1.25rem;
  }
}

@keyframes fadeInUp {
  0% {
 /*   transform: translateY(80%);*/
    opacity: 0;
  }
  100% {
 /*   transform: translateY(0%);*/
    opacity: 1;
  }
}

.first-load-animation {
  animation: 1s fadeInUp;
  will-change: opacity;
}

.aurora-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #18181b;
    /*
    overflow: hidden;
    */
}

.aurora-layer {
    position: absolute;
    border-radius: 50%;
    /* Soft, elliptical shapes */
    opacity: 0.3;
    /* Low opacity for blending */
    will-change: transform;
    /* GPU hint */
    transform: translateZ(0);
    /* Hardware acceleration */
    filter: blur(4px);
}

.aurora-layer-1 {
    width: 60vw;
    height: 60vh;
    top: 10%;
    left: 20%;
    background: radial-gradient(circle, #00a86b, transparent 70%);
    animation: drift 20s ease-in-out infinite;
}

.aurora-layer-2 {
    width: 50vw;
    height: 50vh;
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    animation: drift 25s ease-in-out infinite reverse;
}

.aurora-layer-3 {
    width: 70vw;
    height: 40vh;
    bottom: 20%;
    left: 15%;
    background: radial-gradient(circle, #ff69b4, transparent 70%);
    animation: drift 30s ease-in-out infinite;
}

.aurora-paragraph {
    text-align: center;
    color: white;
}

@keyframes drift {
    0% {
        transform: translate(-10%, -10%) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-10%, -10%) scale(1);
    }
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}
