/* Global image styles */
img {
    border-radius: 0 !important;
}

/* About page hero section */
.about-hero {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0 1rem 0;
    border: none;
    table-layout: fixed;
}

.about-hero td {
    vertical-align: top;
    padding: 0;
    border: none;
}

.about-hero .about-text {
    width: 66.67%;
}

.about-hero .about-text p {
    margin-bottom: 1rem;
}

.about-hero .about-text ul {
    margin-bottom: 1rem;
}

/* Contact page styles */
.contact-list {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    text-align: center;
    line-height: 1.5;
}

.contact-text {
    padding-left: 1rem;
    line-height: 1.5;
}

.contact-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text a {
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Make it responsive */
@media (max-width: 768px) {
    .about-hero, .about-hero tbody, .about-hero tr {
        display: block;
    }
    
    .about-hero td {
        display: block;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .about-hero .about-image {
        margin: 0 auto 2rem auto;
        max-width: 300px;
    }
}

/* Override theme colors */
:root {
    --primary-color: #ff8c00;  /* Dark orange */
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #ff8c00;  /* Dark orange */
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --primary-color: #ff8c00;  /* Dark orange */
    }
}

/* Force link colors */
body.terminal a {
    color: var(--primary-color) !important;
}

body.terminal a:hover {
    background-color: var(--primary-color) !important;
    color: var(--invert-font-color) !important;
} 