/* --- OPTION 3: BRIGHT BRAND ALIGNMENT --- */
:root {
    /* Exact brand colors pulled from your screenshots */
    --brand-purple: #d500f9;
    /* Studio CTA */
    --brand-cyan: #3eb1eb;
    /* Design Hero */
    --brand-yellow: #ffed00;
    /* Logo/Accents */
    --brand-dark: #1a1a1a;
    /* Text */
    --brand-footer: #004c66;
    /* Design Site Footer */
    --bg-light: #ffffff;
    --bg-offwhite: #f4f6f8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-dark);
    min-height: 100vh;
    background-color: var(--bg-light);
    /* Very subtle noise texture for tactile feel, but keeping it BRIGHT */
    background-image:
        radial-gradient(#e5e5e5 1px, transparent 1px);
    background-size: 20px 20px;
    /* Add padding to bottom on mobile so content isn't hidden behind nav */
    padding-bottom: 90px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* --- PROFILE SECTION --- */
.profile-header {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* A subtle gradient top border to tie in the brand */
    border-top: 5px solid;
    border-image: linear-gradient(to right, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787, #dd00aa) 1;
}

.profile-img-container {
    width: 200px;
    height: 150px;
    margin: 0 auto 1rem;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0%;
    border: 3px solid #fff;
    background: #fff;
    padding: .25em 1.5em;
}

.brand-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.profile-bio {
    font-size: 0.95rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* --- STICKY LINKS (Desktop/Tablet) --- */
.sticky-section {
    padding: 1.5rem 0;
    background: var(--bg-offwhite);
}

.sticky-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.sticky-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-studios {
  background-image: linear-gradient(195deg, rgb(99.4172932331, 0, 107.5), rgb(170.1654135338, 0, 184));
  color: #EEEEEE;
}

.btn-studios:hover {
  color: #FFFFFF;
}

.btn-design {
  background-image: linear-gradient(195deg, rgb(3, 71, 106), rgb(5, 141, 191));
  color: #EEEEEE;
}

.btn-design:hover {
  color: #FFFFFF;
}

.btn:hover {
  filter: saturate(60%);
}
.sticky-link i {
    margin-right: 8px;
    font-size: 1.5rem;
}

/* --- MOBILE BOTTOM NAV (Thumb Zone) --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    padding: 18px 10px 30px;
    /* Extra bottom padding for iOS home indicator */
    z-index: 1050;
    /* Above everything */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.nav-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    transition: color 0.2s;
}

.nav-item-mobile i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: transform 0.2s;
}

.nav-item-mobile:active i {
    transform: scale(0.9);
}

/* Active states for mobile nav */
.nav-item-mobile.studio-link:hover i,
.nav-item-mobile.studio-link:active i {
    color: var(--brand-purple);
}

.nav-item-mobile.shop-link:hover i,
.nav-item-mobile.shop-link:active i {
    color: var(--brand-cyan);
}

.nav-item-mobile.evo-link:hover i,
.nav-item-mobile.evo-link:active i {
    color: var(--brand-dark);
}


/* --- FILTER BAR --- */
.filter-container {
    background: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.filter-btn:hover {
    color: var(--brand-dark);
}

.filter-btn.active {
    color: var(--brand-dark);
    border-bottom-color: var(--brand-purple);
}

/* --- GRID LAYOUT --- */
.grid-section {
    padding: 2rem 15px;
    background: #fff;
}

.grid-container {
    max-width: 700px;
    margin: 0 auto;
}

.grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #f0f0f0;
    transition: all 0.2s ease;
}

.grid-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Reverted to center for mixed content (shirts, photos, graphics) */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Removed inner image scale to focus on the block grow effect */

/* Minimalist overlay on hover */
.grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column; /* Stack text vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .8rem;
    opacity: 0;
    transition: opacity 0.2s;
    /* Ensure text is white and readable */
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-icon {
    color: #fff;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.2s;
}

.grid-item:hover .grid-icon {
    transform: scale(1.2);
}

/* --- FOOTER --- */
/* Dark footer like your Shop site */
footer {
    background: var(--brand-footer);
    color: #fff;
    padding: 3rem 0;
    margin-top: 0;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.2s;
    color: #fff;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--brand-cyan);
    color: #fff;
}

/* --- UTILS --- */
.hidden {
    display: none !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeUp 0.4s ease forwards;
}