

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--canvas-bg);
    color: var(--secondary-accent);
}

::-webkit-scrollbar {
    display: none;
}

main {
    width: 100%;
    min-height: 700px; /* In case people turn their phones sideways, this prevents all the content from stacking in the banner */
    position: relative;
    height: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

main .particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1750px;
    z-index: 1;
}

main #banner-icon {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    fill: var(--primary-accent);
}

main #title {
    z-index: 2;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--body-font-family);
    font-size: clamp(2rem, 20vw, 8rem);
    font-weight: 800;
    padding: 1rem;
    /* background-image: linear-gradient(-45deg, #3333ff, #33ff33), linear-gradient(45deg, #3333ff, #33ff33); */
    background-color: var(--secondary-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 0% 102%, 102% 102%;
    background-position: right, left;
    transition: background-size 0.4s ease;
    padding: 5px;
}

main #title:hover, main #title:focus {
    background-size: 102% 102%, 102% 102%;
    background-position: left, left;
}

/* Kinda wanna do some fun text animations but that is way easier to do with JS then keyframes lol */

main .container {
    z-index: 2;
    position: absolute;
    bottom: 33%;
    left: 50%;
    transform: translate(-50%, 50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
}

main .container button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

main .container button:focus {
    outline: none;
}

main .container button span {
    font-weight: 800;
    transition: transform 0.3s ease;
}

main .container .btn-primary span {
    color: var(--primary-accent);
}

main .container .btn-secondary span {
    color: var(--secondary-accent);
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem;
}

.content-section:nth-child(even) {
    flex-direction: row-reverse;
}

.content-section {
    z-index: 2;
    display: flex;
    visibility: hidden;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.content-section > .right > .content-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style-type: none;
    padding-left: 0;
    margin-right: 3rem;
    margin-bottom: 1rem;
}

.content-section > .right > .content-heading > li {
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 5rem);
}

.content-section > .right > .content-heading > li strong {
    font-weight: 800;
    color: var(--primary-accent);
    text-shadow: 
        0 0 8px var(--primary-accent),
        0 0 16px rgba(var(--primary-accent-rgb), 0.5);
}

.content-section > .right > .body-text {
    max-width: 800px;
}

.content-section > .right > .body-text p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.content-section > .right > .calls-to-action > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-accent);
}

.content-section > .right > .calls-to-action a span {
    color: var(--primary-accent);
    transition: transform 0.3s ease-in-out;
}


.content-section > .right > .calls-to-action a:hover span{
    transform: translateX(12px);
}

.content-section > .left > svg {
    width: 200px;
    height: 200px;
    fill: var(--primary-accent);
    filter: drop-shadow(0 0 15px rgba(var(--primary-accent-rgb), 0.6));
}

