/* Colophon specific styles */

.colophon-container {
    background-color: black;
    margin-left: 72px;
    margin-right: 72px;
    padding-bottom: 72px; 
    max-width: 100%;
    box-sizing: border-box;
    animation: fadeIn 0.7s cubic-bezier(0.50, 0, 0.50, 1) 0.5s forwards;
    opacity: 0;
}

/* Adjust content spacing to work with the header component */
.colophon-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin: 120px auto 0; /* Added top margin to account for header height */
}

.colophon-section {
    display: flex;
    flex-direction: row;
    gap: 180px;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.section-title {
    font-family: 'Basteleur', serif;
    font-size: 40px;
    color: #fdfdfd;
    margin: 0;
    width: 300px;
    flex-shrink: 0;
}

.section-text {
    font-family: 'Brockmann', sans-serif;
    font-size: 16px;
    width: 100%;
    max-width: 600px;
    color: #6D7077;
    line-height: 2;
    letter-spacing: -0.02em;
    margin: 0;
    flex-grow: 1;
}

.section-text span {
    color: #fdfdfd;
}

.section-text a {
    text-decoration: none;
    color: inherit;
}

.inspiration-content {
    font-family: 'Brockmann', sans-serif;
    font-size: 16px;
    width: 100%;
    max-width: 600px;
    line-height: 2;
    letter-spacing: -0.02em;
    flex-grow: 1;
}

.inspiration-text {
    font-family: 'Brockmann', sans-serif;
    font-size: 16px;
    color: #6D7077;
    line-height: 2;
    letter-spacing: -0.02em;
    margin: 0 0 0 0;
}

.inspiration-list {
    font-family: 'Brockmann', sans-serif;
    font-size: 16px;
    color: #fdfdfd;
    line-height: 2.5;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: fit-content;
}

.inspiration-list a {
    color: inherit
}

.quote-title {
    font-family: 'Basteleur', serif;
    font-size: 40px;
    color: #fdfdfd;
    margin: 0;
    opacity: 0;
    width: 300px;
    flex-shrink: 0;
}

/* Responsive styles */
@media screen and (max-width: 900px) {
    .colophon-container {
        margin: 0 32px;
    }

    .colophon-content {
        align-items: center;
        justify-content: center;
        margin-top: 100px; /* Adjusted for smaller screens */
    }

    .section-text span::hover {
        color: #fdfdfd;
        text-decoration: none;
    }

    .colophon-section {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        align-items: center;
        width: 100%;
        max-width: 600px;
        font-size: 24px;
        margin: 0;
    }

    .inspiration-list a {
        text-decoration: none;
        color: inherit
    }
    

    .quote-title {
        display: none;
    }
}

@media screen and (max-width: 490px) {
    .colophon-content {
        margin-top: 80px; /* Further adjusted for mobile */
    }
    
    .section-title {
        font-size: 24px;
    }

    .section-text, 
    .inspiration-list,
    .quote {
        font-size: 0.925rem;
    }

    .quote-title {
        display: none;
    }
}