/* workshow-indi.css */
:root {
    --primary-color: #ee2a26;
    --secondary-color: #1D1D1D;
    --background-color: #F4F4F9;
    --text-color: #1D1D1D;
    --accent-color: #FFFFFF;
    --font-primary: 'Montserrat';
    --font-secondary: 'FC Vision';
    --spacing-lg: 80px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--accent-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- 1. Navbar --- */
/* Styles handled by global style.css */

/* --- 2. Hero Section (90vh - Desktop First) --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--background-color);
    background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--accent-color);
    display: inline-block;
    padding: 8px 24px;
    border: 3px solid var(--secondary-color);
    box-shadow: 6px 6px 0 var(--primary-color);
    margin-bottom: 30px;
    transform: rotate(-1deg);
}

.hero-title {

    font-weight: 700;
    color: var(--accent-color);
    text-shadow:
        5px 5px 0 var(--secondary-color),
        -2px -2px 0 var(--secondary-color),
        2px -2px 0 var(--secondary-color),
        -2px 2px 0 var(--secondary-color),
        2px 2px 0 var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .title-main {
    font-size: 12rem;
}

.hero-title .title-sub {
    font-size: 4rem;
}

.hero-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    background: var(--primary-color);
    padding: 10px 40px;
    display: inline-block;
    transform: rotate(2deg);
    border: 3px solid var(--secondary-color);
}

/* Decorative Elements */
.deco {
    position: absolute;
    pointer-events: none;
}

.deco.fork {
    top: 15%;
    left: 10%;
    width: 80px;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.2));
}

.deco.knife {
    bottom: 15%;
    right: 10%;
    width: 100px;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.2));
}

/* --- 3. Concept Section --- */
.concept {
    padding: var(--spacing-lg) 0;
    background: var(--primary-color);
    color: var(--accent-color);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--secondary-color);
    border: 4px solid var(--secondary-color);
    box-shadow: 12px 12px 0 var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 4rem;
}

.concept-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-color);
}

/* Refined Star Shape */
.concept-text h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    /* Matching image: black star */
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    margin-right: 15px;
}

.concept-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    color: var(--accent-color);
}

.thumbnail-gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.thumb {
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--background-color);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: transform 0.2s;
    overflow: hidden;
}

.thumb:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 0 var(--accent-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- 4. Project Info Card (Receipt Style) --- */
/* --- 4. Project Info Card (Receipt Style) --- */
.project-info {
    padding: 100px 0;
    background: var(--secondary-color);
    background-image: repeating-linear-gradient(45deg, var(--secondary-color) 0, var(--secondary-color) 2px, var(--secondary-color) 2px, var(--secondary-color) 20px);
    display: block;
    position: relative;
    overflow: hidden;
    /* Ensure chopsticks don't overflow layout */
}

/* Red Chopsticks Decoration */
.project-info::before,
.project-info::after {
    content: '';
    position: absolute;
    height: 15px;
    background: var(--primary-color);
    width: 120%;
    left: -10%;
    transform: rotate(2deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.project-info::before {
    top: 15%;
    z-index: 3;
}

.project-info::after {
    top: 18%;
    /* Second chopstick slightly lower */
    width: 120%;
    transform: rotate(1deg);
    z-index: 0;
}

.receipt-card {
    max-width: 900px;
    /* Increased from 600px */
    width: 100%;
    margin: 0 auto;
    padding: 80px 100px 100px 100px;
    /* Increased padding */
    background-image: url('../../assets/decoration/paper.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    background-color: transparent;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    min-height: 800px;
}

/* Watermark */
.reciept-project-info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('../../assets/decoration/Logomark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.reciept-project-info {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Receipt Header Styles */
.receipt-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.receipt-title {
    font-size: 4rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.receipt-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

.receipt-divider {
    height: 3px;
    background: var(--secondary-color);
    width: 100%;
    border-radius: 50% 50% 50% 50% / 2px 1px 2px 1px;
    /* Slight organic shape */
    margin: 0 auto;
    position: relative;
}

/* "Rough" line effect */
.receipt-divider::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transform: rotate(0.1deg);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    border-bottom: none;
    /* Remove dashed line */
    padding-bottom: 0;
}

.info-row:last-child {
    border: none;
}

.info-label {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content {
    font-size: 1rem;
    color: #555;
    max-width: 350px;
    line-height: 1.6;
}

.info-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Star icon for numbers */
.info-num::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
}

.tool-icons {
    display: flex;
    gap: 10px;
}

.tool {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: default;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool:hover {
    transform: translateY(-5px);
}

.tool img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* --- 5. Design Process --- */
.process {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: var(--accent-color);
}

.section-label {
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 30px;
    display: inline-block;
    transform: skew(-10deg);
    margin-bottom: 60px;
    border: 3px solid var(--secondary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.process-item {
    aspect-ratio: 4/3;
    background: var(--background-color);
    border: 3px solid var(--secondary-color);
    position: relative;
}

.process-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--secondary-color);
    z-index: -1;
}

/* --- 6. Creator Card --- */
.creator {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 20%);
}

.creator-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 400px;
    text-align: center;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-dark);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    width: 100%;
    height: 320px;
    background-color: #DCE0E5;
    /* Placeholder grey */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-link-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--text-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-link-btn:hover {
    transform: scale(1.1);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.concept {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    /* Star hidden */
    animation-fill-mode: forwards;
}

.project-info {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.creator {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.card-content {
    padding: 30px 20px;
    background: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.creator-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.creator-role {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: capitalize;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--text-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 4px;
    transition: transform 0.2s;
    /* Optional: transform: skew(-5deg); if desired */
}

.social-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
}

/* --- 7. Footer --- */
.footer {
    background: var(--secondary-color);
    color: #888;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}
/* Responsive Overrides (Appended by Antigravity) */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    .hero-title .title-main {
        font-size: clamp(3rem, 10vw, 5rem);
        line-height: 1.1;
    }
    .hero-title .title-sub {
        font-size: clamp(1.2rem, 5vw, 2.5rem);
    }
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .receipt-card {
        padding: 40px 20px 60px 20px;
        min-height: auto;
        background-size: cover;
    }
    .receipt-title {
        font-size: 2.5rem;
    }
    .info-row {
        flex-direction: column;
        gap: 10px;
    }
    .info-num {
        align-self: flex-start;
        margin-top: 5px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .creator {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .creator-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .hero-title .title-main {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}


































/* --- HERO REFINEMENTS --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../../assets/decoration/Project_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: none;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    background: var(--secondary-color);
    display: inline-block;
    padding: 8px 30px;
    border: none;
    box-shadow: 6px 6px 0 var(--primary-color);
    border-radius: 5px;
    transform: rotate(-1deg);
    margin-bottom: 30px;
    position: relative;
}
.hero-subtitle::before { display: none; }
.hero-subtitle::after { display: none; }
.hero-title {
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title .title-main {
    -webkit-text-stroke: 0;
    text-shadow: 
        /* 4px outline using text-shadow */
        -4px -4px 0 var(--secondary-color),
         0   -4px 0 var(--secondary-color),
         4px -4px 0 var(--secondary-color),
         4px  0   0 var(--secondary-color),
         4px  4px 0 var(--secondary-color),
         0    4px 0 var(--secondary-color),
        -4px  4px 0 var(--secondary-color),
        -4px  0   0 var(--secondary-color),
        
        /* 3D Extrusion on top of outline */
        1px 1px 0 var(--secondary-color),
        2px 2px 0 var(--secondary-color),
        3px 3px 0 var(--secondary-color),
        4px 4px 0 var(--secondary-color),
        5px 5px 0 var(--secondary-color),
        6px 6px 0 var(--secondary-color),
        7px 7px 0 var(--secondary-color),
        8px 8px 0 var(--secondary-color),
        9px 9px 0 var(--secondary-color),
        10px 10px 0 var(--secondary-color),
        11px 11px 0 var(--secondary-color),
        12px 12px 0 var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}
.hero-title .title-sub {
    -webkit-text-stroke: 0;
    text-shadow: 2px 2px 0 var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    letter-spacing: 0;
    font-weight: 600;
    display: block;
}
.hero-label {
    transform: none;
    border-radius: 5px;
    border: none;
    box-shadow: 4px 4px 0 var(--secondary-color);
}

/* --- CONCEPT REFINEMENTS --- */
.concept {
    padding: var(--spacing-lg) 0;
    background: var(--primary-color);
    color: var(--accent-color);
}
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--background-color);
    border: none;
    border-radius: 10px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 4rem;
}
.concept-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 8px 25px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
}
.concept-text h2::before {
    display: none;
}
.thumbnail-gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}
.thumb {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    overflow: hidden;
}

/* --- RECEIPT REFINEMENTS --- */
.project-info {
    padding: 100px 0;
    background: var(--primary-color);
    background-image: none;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.project-info::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1200px;
    background: var(--secondary-color);
    clip-path: polygon(
        50% 0%, 61% 15%, 85% 5%, 75% 25%, 100% 40%, 
        80% 55%, 95% 80%, 70% 75%, 60% 100%, 45% 85%, 
        20% 95%, 30% 70%, 0% 60%, 25% 45%, 10% 20%, 35% 25%
    );
    z-index: 0;
}
.project-info::after {
    display: none;
}
.reciept-project-info img[alt="Stamp"] {
    bottom: -100px !important;
    right: -50px !important;
}
.receipt-card {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 100px 100px 100px;
    
    background-image: url('../../assets/decoration/paper.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    min-height: 800px;
}
.receipt-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}
.receipt-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: none;
    -webkit-text-stroke: 0;
}
.receipt-divider {
    height: 2px;
    background: #ccc;
    width: 100%;
    margin: 30px auto;
}
.receipt-divider::before { display: none; }

.info-num {
    font-size: 0;
}
.info-num::before {
    content: '+ ';
    display: inline;
    background: none;
    clip-path: none;
    width: auto; height: auto;
    font-size: 1.5rem;
    font-family: var(--font-primary);
}
.info-row {
    display: flex;
    flex-direction: column-reverse;
}
.info-row:nth-child(3) .info-num::after { content: "01"; font-size: 1.5rem; }
.info-row:nth-child(4) .info-num::after { content: "02"; font-size: 1.5rem; }
.info-row:nth-child(5) .info-num::after { content: "03"; font-size: 1.5rem; }
.info-row:nth-child(6) .info-num::after { content: "04"; font-size: 1.5rem; }

@media (max-width: 768px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .project-info {
        padding: 60px 20px;
    }
    .receipt-card {
        padding: 50px 30px 60px 30px;
        min-height: auto;
    }
    .receipt-title {
        font-size: 2.2rem;
    }
    .project-info::before {
        width: 150%;
        height: 100%;
        clip-path: polygon(
            50% 0%, 71% 10%, 95% 5%, 85% 20%, 100% 35%, 
            80% 50%, 95% 75%, 70% 70%, 65% 100%, 45% 85%, 
            15% 95%, 25% 70%, 0% 60%, 25% 45%, 10% 20%, 35% 25%
        );
    }
}
/* --- PROCESS REFINEMENTS --- */
.process {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: var(--primary-color);
}
.section-label {
    background: var(--primary-dark);
    color: var(--accent-color);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 12px 35px;
    display: inline-block;
    transform: none;
    margin-bottom: 60px;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.15);
}
.process-item {
    aspect-ratio: 4/3;
    background: none;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.process-item::after { display: none; }

/* --- CREATOR REFINEMENTS --- */
.creator {
    padding: 100px 0;
    padding-top: 150px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    background: #282828 !important;
    position: relative;
    overflow: hidden;
}
.creator::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 100%;
    height: 120px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}
.creator-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    width: 400px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.creator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card-image-container {
    width: 100%;
    height: 320px;
    background-color: var(--primary-color); 
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image-container img {
    border-radius: 0; 
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content {
    padding: 30px 40px;
    background: var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.creator-name {
    font-size: 1.2rem;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}
.socials .social-btn {
    width: 40px; height: 40px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}
.socials .social-btn:last-child {
    flex: 1 1 100%;
    width: 100%;
    height: 45px;
    margin-top: 10px;
    background: var(--secondary-color);
}
.socials .social-btn:last-child i {
    display: none;
}
.socials .social-btn:last-child::after {
    content: "View Portfolio";
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
