
html {
    overflow-x: hidden;
}
body {
    font-family: 'Plus Jakarta Sans';
}
h1 {
    font-size: 3em;
    line-height: 2.4em;
}
h2 {
    font-size: 2em;
    line-height: 1.6em;
}
h3 {
    font-size: 1.8em;
    line-height: 1.4em;
}
h4 {
    font-size: 1.4em;
    line-height: 1.2em;
}
h5 {
    font-size: 1.2em;
    line-height: 1em;
}
p, input, button, span, option {
    font-size: 1.5rem;
    line-height: 2.2rem;
}

hr {
    margin-top: 2em;
}

.dark-bg {
    background-color: #111827;
}

.dark-text {
    color:#e8ebf0;
}

.dark-text-muted {
    color:#a3aec2;
}

.hero-container {
    display: grid;
    grid-template-columns: 60% 40%;
    max-width: 1280px; 
    padding-left: 1rem;
    padding-right: 1rem; 
    padding-top: 2rem; 
    padding-bottom: 2rem; 
    margin-left: auto; 
    margin-right: auto; 
    gap: 2rem; 
    padding-top: 4rem; 
}

.hero-left-section {
    margin-right: auto;
    align-self: center;
}

    .hero-container h1 {
        letter-spacing: -0.035em;
        font-weight: 800;
        font-size: 3.75em;
        line-height: 1;
        max-width: 42em;
    }

    .hero-container p {
        max-width: 42em;
    }

    .hero-container a {
        text-decoration: none;
    }

    .hero-button-container a:last-of-type {
        border: 1px solid #374151;
        padding: 0.75em 1.25em;
        border-radius: 0.5em;
        color: #a3aec2;
        font-weight: 600;
    }

    .hero-button-container {
        display: flex;
        align-items: center;
        gap: 1rem; 
    }

    .hero-button-primary {
        background-image: linear-gradient(to right, #3b82f6, #9333ea);
        font-size: 1.125rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        text-align: center;
        color:#e8ebf0;
        border-radius: 0.5rem;
    }

    .hero-button-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        color: white;
        border: 1px solid #374151;
        border-radius: 0.5rem;
    }

    .hero-right-section {
        margin-top: 0;
        display: flex;
    }

    img.hero{
        max-width: max-content;
        border-radius: 8px;
        box-shadow: 
            0 0 20px rgb(51 96 11 / 90%), 
            0 0 40px rgb(205 13 153 / 64%), 
            0 0 60px rgb(118 69 183);
        transition: box-shadow 0.3s;
    }

    .logo {
        max-width: 27%;
        padding-bottom: 3em;
        opacity: 45%;
        filter: hue-rotate(185deg);
    }   

.colorful-button {
    background: linear-gradient(100deg, #40ddff -6.08%, #7612fa 25.08%, #fa12e3);
}

/* Magic Box Container */
.magic-box {
    background-color: #1c2436;
    padding: 1rem 4rem;
    margin-top: 10rem;
    margin-bottom: 15rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

    .magic-box h1 {
        contain-intrinsic-block-size: auto 100px;
        font-size: 3.5em;
        font-weight: 700;
        text-align: center;
        color: #537ace;
        margin-bottom: 1rem;
        letter-spacing: .0015em;
        line-height: 1.4em;
        font-family: 'Saira Stencil One', sans-serif;
        text-shadow: 3px 5px #c01818b8;
    }

    .magic-box p {
        text-align: center;
        color: var(--muted-text);
        margin-bottom: 1.5rem;
    }

    .magic-box a {
        color: var(--primary-blue);
        text-decoration: underline;
        transition-property: color;
        transition-duration: 0.15s;
    }

    .magic-box a:hover {
        color: var(--primary-blue);
    }

    .magic-box a.submit-button, .magic-box a.lead-button
    {
        text-decoration: none;
    }

    /* Form and Input styles */
    .form-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .file-input {
        outline: 2px solid #ec4899; /* outline-pink-500 */
        outline-offset: 2px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
        font-size: 0.875rem;
        color: var(--light-text);
    }

    .file-input::-webkit-file-upload-button {
        margin-right: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        font-weight: 600;
        background-color: #374151; /* gray-700 */
        color: var(--light-text);
        border: none;
        transition-property: background-color;
        transition-duration: 0.15s;
    }

    .file-input::-webkit-file-upload-button:hover {
        background-color: #4b5563; /* gray-600 */
    }

    .submit-button {
        background-image: linear-gradient(to right, #3b82f6, #9333ea);
        font-size: 1.5rem;
        color: white;
        font-weight: 700;
        padding: 1rem 1.5rem;
        border-radius: 0.375rem;
        transition-property: background-color;
        transition-duration: 0.15s;
        border: none;
        cursor: pointer;
    }

    .submit-button:hover {
        background-color: #2563eb; /* A darker blue */
    }

    .submit-button:focus {
        outline: none;
        box-shadow: 0 0 0 2px #3b82f6, 0 0 0 4px #1f2937; /* focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 focus:ring-offset-dark-card */
    }

    .form-info {
        font-size: 0.875rem;
        color: var(--muted-text);
        text-align: center;
    }

    .download-links-container {
        margin-top: 1.5rem;
    }

    .download-links-container p {
        font-size: 1.25rem;
        color: var(--primary-blue);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .download-link {
        display: block;
        background-color: #374151; /* gray-700 */
        color: var(--light-text);
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        margin-bottom: 0.5rem;
        transition-property: background-color;
        transition-duration: 0.15s;
    }

    #downloadLinkJira {
        text-decoration: none;
        text-align: center;
        line-height: 2.4em;
        background-color: green;
        font-size: 1.5em;
    }

    #downloadLinkConfig {
        text-decoration: none;
        text-align: center;
        background-color: rgb(25 80 25);
    }

    .download-link:hover {
        background-color: #4b5563;
    }

    /* Utility classes for the JS */
    .hidden {
        display: none;
    }
    .status-info {
        background-color: #dbeafe; /* blue-100 */
        color: #1e40af; /* blue-800 */
    }
    .status-success {
        background-color: #d1fae5; /* green-100 */
        color: #065f46; /* green-800 */
    }
    .status-error {
        background-color: #fee2e2; /* red-100 */
        color: #991b1b; /* red-800 */
    }
    .status-box {
        padding: 1rem;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        padding: 1em;
        min-height: 1.5em;
    }

h2.FAQ {
    box-shadow: 0 0 20px rgb(51 96 11 / 70%), 0 0 40px rgb(205 13 153 / 34%), 0 0 60px rgb(77, 44, 121);
    transition: box-shadow 0.3s;
    margin: 3em auto 2em;
    padding: .5em;
    max-width: 10em;
    text-align: center;
    font-size: 1.5em;
}

.wrapper {
    max-width: 60em;
    margin: 0 auto;
}

    .accordion{
        margin: 0 auto;
        border-radius: 3px;
        overflow: hidden;
        height: 8em;
        transition: height 0.3s ease;
        background-color: #1c2436;
        padding: 1rem 4rem;
        margin-top: 6rem;
        margin-bottom: 4rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

        .accordion .accordion_tab{
            padding: 20px;
            cursor: pointer;
            user-select: none;
            position: relative;
            font-size: 2.5em;
            text-align: center;
            color: #e8ebf0;
        }

        .accordion .accordion_tab .accordion_arrow{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        width: 15px;
        height: 15px;
        transition: all 0.3s ease;
        }

        .accordion .accordion_tab .accordion_arrow img{
        width: 100%;
        height: 100%;
        }

        .accordion .accordion_tab.active .accordion_arrow{
        transform: translateY(-50%) rotate(180deg);
        }

        .accordion.active{
        height: 100%;
        }

        .accordion .accordion_content{
        padding: 20px;
        line-height: 1.8em;
        border-top: 1px #384050 solid;
        }

        .accordion .accordion_content .accordion_item{
        margin-bottom: 20px;
        }

        .accordion .accordion_content .accordion_item p.item_title{
        margin-bottom: 10px;
        }

footer p {
    font-size: 1em;
    text-align: center;
}

@media screen and (max-width: 1023px) {
    img.hero{
        max-width: 90%;
        padding: 2em 1em;
        margin: 0 auto; 
    }
    div.hero-text-box {
        margin: 0 auto;
        padding: 1em 1em 4em;  
    }

    .accordion{
        height: 8em;
        transition: height 0.3s ease;
    }
}

/*************/
/* Directory */
/*************/

.download-library-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.download-library-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-item {
    background-color: #02091699;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 0 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.download-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1em;
}

.download-item p {
    font-size: 1rem;
    line-height: 1.4;
}

.pills-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.download-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}


.download-pill.video {
    background-color: red;
    color: #fff;
}

.download-pill.csv {
    background-color: #6e2a53;
    color: #d1fae5;
}

.download-pill.txt {
    background-color: #3b5a80;
    color: #dbeafe;
}

.download-pill:hover {
    transform: translateY(-2px);
}

.login-btn {
    margin: 1rem 0 0 1rem;
}

.members-btn {
    border: 2px solid #6e2a53;
    background-color: #111827;
    color: #dbeafe;
    cursor: none;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

nav {
    text-align: center;
}

nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;         
}

nav ul li {
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none; 
  color: #9796a3;          
  font-weight: 500;
}

aside {
    font-size: 1.2em;
    width: 80%;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    background: #060b16;
    border-radius: 2rem;
}