/* myPHP.se — Simple Login System styles */
body {
    font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 0;
}

.tm-brand-container {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.25rem;
    max-width: 400px;
}

.tm-brand-description {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.tm-brand-description big {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
}

.tm-brand-description small {
    font-size: 1rem;
    color: #e0e7ff;
    display: block;
    margin-top: 0.2rem;
}

.code {
    background: #f1f5f9;
    border-left: 4px solid #3b82f6;
    padding: 1.2rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 1.2rem 0;
}

.code pre {
    margin: 0;
    color: #0f172a;
}

.code i {
    font-style: normal;
}

.zip-download a {
    text-decoration: none;
    font-weight: 500;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid #cbd5e1;
    transition: background 0.2s;
}

.zip-download a:hover {
    background: #e2e8f0;
}

.zip-download img {
    width: 32px;
    height: 32px;
}

section#tmPortfolio {
    padding: 2rem 0 3rem;
}

.header-bg {
    background-image: url('../img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

@media (max-width: 576px) {
    .header-bg {
        padding-left: 1rem;
        min-height: 140px;
    }
    .tm-brand-description big {
        font-size: 1.8rem;
    }
}

.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 0.5rem;
}

h2 small {
    font-size: 1rem;
    font-weight: 400;
    color: #475569;
}

.footer-placeholder {
    margin-top: 2rem;
    border-top: 1px solid #cbd5e1;
    padding-top: 1.5rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

.small-note {
    font-size: 0.9rem;
    color: #334155;
}