body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #15140b;
    margin: 0;
    padding: 0;
}

.snHeader {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #2C292C;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-sn {
    height: 50px;
    width: 50px;
    border-radius: 10px;
}

/* === Portfolio Title – refined to match your dark theme === */
.portfolio-title {
    /* full width & height */
    width: 100%;
    min-height: 0.2vh; /* fills the full viewport height */
    margin: 0;
    padding: 20px 40px; /* adjust padding to taste */

    /* full-page glassy background */
    background: transparent;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.45),
            0 2px 0 rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: saturate(120%) blur(6px);

    /* layout / centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* motion */
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.portfolio-title:hover {
    transform: translateY(-2px);
    box-shadow:
            0 22px 48px rgba(0, 0, 0, 0.55),
            0 2px 0 rgba(255, 255, 255, 0.04) inset;
}


.portfolio-title h1 {
    /* same typeface as body; just sizing/weight */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: .4px;
    color: #F1F1F1;
    margin: 0 0 10px;
}

.portfolio-title p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: rgba(240, 240, 240, 0.82);
    margin: 0 auto;
    max-width: 640px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .portfolio-title,
    .portfolio-title:hover {
        transition: none;
        transform: none;
    }
}

/* Optional: tighter spacing on small screens */
@media (max-width: 640px) {
    .portfolio-title { margin-top: 40px; padding: 32px 20px; }
}
