body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    background: #dedede;
    color: #604633;
    letter-spacing: 0.3px;
}

/* Links */
a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;  
    text-transform: uppercase;
}
a:hover {
    text-decoration: none;
    opacity: 0.8;
}

nav {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 24px 40px;
}

/* Typography */
.large-text {
    font-size: 1.5rem;
    line-height: 1.5;
}
.small-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.credits {
    font-size: 0.85rem;
    line-height: 1.8;
}

.credit-role {
    text-transform: uppercase;
}

/* Logo */
.logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 0;
    color: #d19bb0;
    transition: opacity 0.2s ease;
}

.logo-container svg {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.logo-container svg path {
    fill: currentColor;
}

.logo-spacer {
    height: 100vh;
}

/* Homepage Layout */
.content {
    display: flex;
    gap: 60px;
    padding: 40px;
}
.picture {
    flex: 1;
}
.picture img {
    width: 100%;
    height: auto;
    display: block;
}
.description {
    flex: 1;
}

/* Table */
.table-wrapper {
    padding: 0 40px 80px 40px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
thead {
    border-bottom: 1px solid #604633;
}
th {
    text-align: left;
    padding: 14px 8px;
    font-weight: 200;
}
td {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
tbody tr:hover {
    background: rgba(116, 116, 116, 0.1);
}

.past-date {
    opacity: 0.4;
}

/* Footer */
footer {
    background: #3d2e24;
    color: #fff;
    padding: 60px 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* About Page */
.about-content {
    width: 60%;
    margin: 0 auto 120px auto;
}

.page-about .logo-container {
    opacity: 0.25;
}

.content,
.table-wrapper,
footer,
.about-content {
    position: relative;
    z-index: 1;
    /*background: #d4d4d4;*/
}


/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    .logo-container svg {
        width: 90%;
    }
    .content {
        flex-direction: column;
        padding: 20px;
        gap: 40px;
    }
    .table-wrapper {
        padding: 0 20px 60px 20px;
    }
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
        width: 100%;
    }
    thead {
        display: none;
    }
    tr {
        padding: 18px 0;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    td {
        border: none;
        padding: 4px 0;
    }
    td:nth-child(1),
    td:nth-child(2) {
        display: inline-block;
        margin-right: 12px;
    }
    td:nth-child(3),
    td:nth-child(4) {
        display: block;
    }
    td:nth-child(5) {
        margin-top: 6px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-content {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .description.large-text {
        font-size: 1.1rem;
    }
}