/* DEEP DESIGN THINKING - SWISS PUNK / MINIMALIST */

:root {
    --swiss-white: #ffffff;
    --swiss-alabaster: #fafafa;
    --swiss-black: #111111;
    --swiss-dark-grey: #444444;
    --swiss-accent: #2563eb;
    /* Luminous Blue */
}

/* 1. Global Reset overrides for Profile */
.profile-section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 0.85rem;
    color: var(--swiss-dark-grey);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--swiss-black);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* 2. Sticky Sidebar (The Narrative) */
.bio-card {
    background: transparent;
    border: none;
    padding: 0;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* 3. Portfolio Grid (The Gallery) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* 4. Radical Card - Frameless/Brutalist */
.pf-card-radical {
    background: transparent;
    border: none;
    overflow: visible;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.pf-card-radical:hover {
    transform: translateY(-5px);
}

.pf-card-radical .img-frame {
    border-radius: 0;
    /* Sharp Edges as per rule */
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    margin-bottom: 15px;
}

.pf-card-radical .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pf-card-radical:hover .img-frame img {
    transform: scale(1.05);
}

/* Badges floating loosely */
.pf-badge-float {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--swiss-black);
    color: var(--swiss-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

/* Typography Heavy Info */
.pf-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: var(--swiss-black);
    letter-spacing: -0.03em;
}

.pf-info p {
    font-size: 0.95rem;
    color: var(--swiss-dark-grey);
    margin: 0;
    line-height: 1.4;
}

.pf-meta {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.85rem;
    color: #888;
}

.price-tag {
    font-weight: 700;
    color: var(--swiss-black);
}

/* Socials - Big & Bold */
.social-radical a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    /* Keep circular for socials as conventional specific affordance */
    color: var(--swiss-black);
    transition: all 0.2s;
    font-size: 1.2rem;
}

.social-radical a:hover {
    background: var(--swiss-black);
    color: var(--swiss-white);
    border-color: var(--swiss-black);
}

/* Achievements */
.badge-minimal {
    border: 1px solid var(--swiss-black);
    background: transparent;
    color: var(--swiss-black);
    font-weight: 600;
    padding: 6px 16px;
    font-size: 0.8rem;
    border-radius: 99px;
}

/* Mobile Refinements */
@media (max-width: 768px) {
    .glass {
        padding: 1.5rem !important;
        border-radius: 4px !important;
    }

    .profile-header-main {
        text-align: left;
    }

    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }
}