﻿.digital-journey-section {
    background-color: #181818;
    padding: 2.5rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    /* Ensure full height */
    display: flex;
    /* Flex container to allow height filling */
    flex-direction: column;
}

.dj-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill section */
    flex-grow: 1;
    /* Grow to fill */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dj-content {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem 2.5rem 1rem;
    padding-top: 2.5rem;
}

.dj-text-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dj-title {
    font-size: 3rem;
    /* Fallback */
    font-weight: 900;
    line-height: 1.1;
    /* tight */
    letter-spacing: -0.05em;
    /* tighter */
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

@media (min-width: 768px) {
    .dj-title {
        font-size: 3.75rem;
        /* md:text-6xl approx */
    }
}

.text-blue {
    color: #0C1AC1;
}

.text-lime {
    color: #c7f908;
}

.dj-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-dj {
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-header);
    text-transform: uppercase;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
}

.btn-dj-primary {
    background-color: #C7F908;
    color: #0E0E0E;
    border: 2px solid #C7F908;
}

.btn-dj-primary:hover {
    background-color: white;
    color: #c7f908;
}

.btn-dj-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-dj-secondary:hover {
    background-color: #C7F908;
    color: black;
    border-color: #C7F908;
}

.dj-video-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
}

.video-wrapper {
    width: 24rem;
    /* w-96 */
    height: auto;
    display: block;
}

.dj-video {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.footer-base {
    position: relative;
    background-color: #0C1AC1;
    min-height: 25vh;
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.footer-header-container {
    position: relative;
    padding: 2rem 2rem 4rem 2rem;
    background: transparent;
    text-align: center;
    z-index: 5;
}

.footer-curve {
    position: relative;
    flex-grow: 1;
    width: 100%;
    min-height: 15vh;
    background-color: #C7F908;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1000px) {
    .footer-curve {
        border-top-left-radius: 50% 100%;
        border-top-right-radius: 50% 100%;
    }
}

.footer-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    font-family: var(--font-header);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    font-size: 2rem;
}

.social-link {
    color: #0E0E0E;
    transition: color 0.3s;
    text-decoration: none;
    /* remove underline */
}

.social-link:hover {
    color: #4F46E5;
}

.about-policy-links {
    display: flex;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-policy-links a {
    color: #0e0e0e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.about-policy-links a:hover {
    color: #0C1AC1;
}


.copyright-text {
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    right: 0;
    text-align: center;
