:root {
    --timberwolf: #D3D2D2ff;
    --night: #141319ff;
    --cal-poly-green: #164D2Eff;
    --pigment-green: #12B159ff;
    --baby-powder: #FBFCF7ff;
}

body {
    position: relative;
    display: flex;
    justify-content: left;
    left: 4vw;
    height: 50vh;
    color: white;
    font-family: monospace;
    font-size: min(50px, 10vw);
    text-align: left;
    white-space: pre-line;
    background: linear-gradient(-45deg, var(--night), #014301, black, #143e14);
    background-size: 400% 400%;
    animation: gradient 40s ease infinite;
}


@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.typing-container {
    display: block;
    margin-top: 20%;
    left: 5vw;
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 40px;
    background-color: white;
    margin-left: 4px;
    animation: blink 0.6s infinite;
}

.footer {
    margin-top: -25%;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px 10px 10px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: var(--night);
    font-size: min(2vw, 15px);
}

.top-nav {
    /*display: flex;*/
    gap: 1.5rem;
}

.top-nav a {
    margin-top: 20px;
    font-size: 20px;
}

a {
    color: white;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 0.2s;
    text-decoration: underline;
}


a:hover {
        color: var(--pigment-green);
    }

.hero {
        font-size: 40px;
        margin-top: 10%;
        margin-left: 20%;
        margin-right: 30%;
        margin-bottom: -15%
}

.info {
    font-size: 20px;
    margin-top: 15%;
    margin-left: 20%;
    margin-right: 30%;
    margin-bottom: -15%
}

/*Contact Page -------------------------*/

.contact-container {
    margin-left: 0%;
}

.contact-header {
    margin-top: 15%;
    margin-bottom: -10%;
}

.contact-mailto {
    display: inline-block;
    margin-top: 5%;
    font-size: 30px;
    text-decoration: underline;
}

.contact-p {
    font-size: large;
    width: 30%;
}

.info {
    font-size: 15px;
}

@media (max-width: 600px) {
    body {
        font-size: 30px;
        left: 6vw;
        margin-right: 100px;
        margin-top: 30%;
    }

    .cursor {
        width: 2px;
        height: 30px;
    }

    .header {
        font-size: 20px;
    }

    a:hover {
        color: var(--pigment-green);
    }

    .hero {
        margin-top: 30%;
        margin-left: 0%;
        margin-right: -10%;
        margin-bottom: 0%;
        font-size: 20px;
    }

    .info {
        margin-top: 5%;
        margin-left: 0%;
        margin-right: -10%;
        margin-bottom: 5%;
        font-size: 10px;
    }

    .accordion {
        margin-left: -45%;
        margin-top: -10%;
        font-size: 10px;
    }

    .faq {
        margin-left: 30%;
    }

    .contact-container {
        margin-left: -2%;
    }

    .contact-mailto {
        font-size: 24px;
    }

    .contact-p {
        width: 100%;
        font-size: 15px;
    }

    .typing-container {
        margin-top: 40%;
    }

    .footer{
        display: none;
    }

    .accordion-content h3 {
        font-size: 10px;
    }

    .accordion-content p {
        font-size: small;
    }
}

@media (min-width: 1264px){
    
    .primary {
        width: 900px;
    }


    .footer {
        margin-top: 0%;
    }

}

@media (max-width: 1200px){

    .faq {
        color: var(--night);
    }

}

h3 {
    font-size: 20px;
}

/*Accordion ---------------------------*/

.accordion {
    width: 100%;
    background: var(--night);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: var(--night);
    color: white;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    border: white;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    font-family: monospace;
    font-size: 35px;
}

.accordion-header:hover {
        background: var(--cal-poly-green);
    }

.accordion-content {
    background: var(--night);
    color: white;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 70vw;
}

    .accordion-content p {
        padding: 10px 0;
        margin: 0;
        font-size: 18px;
    }

    .accordion-content h3 {
        font-size: 30px;
    }

.active .accordion-content {
    max-height: 200px; /* Adjust based on content size */
}

.accordion-wrapper {
    margin-left: 3%;
    margin-top: 17%;
}

.inner {
    font-size: small;
}

blockquote {
    font-size: small;
}

@media (max-width: 600px) {
    .accordion-content h3 {
        font-size: 18px;
    }

    .accordion-content p {
        font-size: small;
    }
}



