/* ===========================================
   LEGAL PERFORMERS - TECH-FORWARD DESIGN
   =========================================== */

/* Variables globales */
:root {
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Primary Brand Colors */
    --primary-color: #5F1937;
    --primary-light: #8B3A5C;
    --primary-dark: #3D0F24;

    /* Dynamic Gradients */
    --gradient-primary: linear-gradient(135deg, #5F1937 0%, #8B3A5C 50%, #B86B8F 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(95, 25, 55, 0.1) 0%, rgba(139, 58, 92, 0.05) 100%);

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-strong: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

    /* Text Colors */
    --text-color: #1a1a2e;
    --text-muted: #4a4a5a;

    /* Layout */
    --max-width: 1200px;
    --container-padding: 2rem;
    --card-padding: 2rem;
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --bg-light: #f8f9fa;
    --hover-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    --section-padding: 4rem;

    /* Glow effects */
    --glow-primary: 0 0 40px rgba(95, 25, 55, 0.3);

    /* Animation easings */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .cta-button, .event-link {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

h1, h2, h3, h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Layout */
.header-container,
.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================================
   HEADER - STICKY GLASS EFFECT
   =========================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease-out);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled img {
    height: 36px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header img {
    height: 45px;
    object-fit: contain;
    transition: height 0.3s var(--ease-out);
}

/* Event Link with Pulse Animation */
.event-link {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px rgba(95, 25, 55, 0.25);
}

.event-link::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    background: var(--primary-color);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.08); opacity: 0.25; }
}

.event-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(95, 25, 55, 0.35);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-out);
    padding: 0.5rem;
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--primary-color);
    background: rgba(95, 25, 55, 0.08);
    transform: translateY(-2px);
}

/* ===========================================
   HERO SECTION - ANIMATED BACKGROUND
   =========================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
}

/* Animated Mesh Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(95, 25, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(139, 58, 92, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(184, 107, 143, 0.04) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-3%, 3%) rotate(0.5deg); }
    50% { transform: translate(3%, -3%) rotate(-0.5deg); }
    75% { transform: translate(-2%, -2%) rotate(0.25deg); }
}

/* Floating Orb */
.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(95, 25, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 5%;
    right: 5%;
    filter: blur(60px);
    animation: floatOrb 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

/* Floating Shapes Container */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.06), transparent);
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 25%;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 40px) rotate(30deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(20px, -25px); opacity: 0.8; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-content > div:first-child {
    max-width: 66.66%;
}

/* Hero Tag Badge */
.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(95, 25, 55, 0.08);
    border: 1px solid rgba(95, 25, 55, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #5F1937 0%, #8B3A5C 50%, #5F1937 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-content h1 .highlight {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===========================================
   HIGHLIGHT CLASS
   =========================================== */
.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

/* ===========================================
   SECTIONS
   =========================================== */
.cards-section,
.projects-section,
.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.cards-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f1f3 100%);
    padding-bottom: 1rem;
}

.projects-section {
    background: linear-gradient(180deg, #f0f1f3 0%, var(--bg-light) 100%);
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.contact-section {
    background: var(--bg-light);
    padding-top: 2rem;
}

/* ===========================================
   GLASSMORPHISM CARDS
   =========================================== */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Gradient border on hover */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(95, 25, 55, 0.4), transparent 50%, rgba(95, 25, 55, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(95, 25, 55, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card:hover::before {
    opacity: 1;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Main cards grid */
.main-cards {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--primary-color);
}

/* Comment grid */
.comment-grid {
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 2rem;
}

.comment-grid p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.comment-grid h3 {
    margin: 0;
}

.comment-grid > div:last-child {
    text-align: center;
    border-left: 1px solid rgba(95, 25, 55, 0.1);
    padding-left: 1.5rem;
}

/* Highlight underline animation in cards */
.card p .highlight {
    position: relative;
    display: inline;
}

.card p .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out);
}

.card:hover p .highlight::after {
    width: 100%;
}

/* ===========================================
   PROJECTS SECTION
   =========================================== */
.section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* Partnership */
.partnership {
    font-style: italic;
    color: #666;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.95rem;
}

.partnership a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
}

.partnership a:hover {
    text-decoration: underline;
}

.partner-logo {
    display: inline-block;
    max-width: 120px;
}

/* Project Visual */
.project-visual {
    margin-top: 1.5rem;
}

.screenshots-container {
    width: 100%;
    max-width: 800px;
    height: 250px;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.screenshots-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(95, 25, 55, 0.08) 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.card:hover .screenshots-container::after {
    opacity: 1;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s var(--ease-out);
}

.card:hover .screenshot {
    transform: scale(1.02);
}

/* ===========================================
   CTA BUTTONS - SHINE EFFECT
   =========================================== */
.cta-button {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 15px rgba(95, 25, 55, 0.3);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

/* Shine sweep effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(95, 25, 55, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(95, 25, 55, 0.3);
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-content {
    text-align: center;
}

.contact {
    text-align: center;
    padding: 2rem 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   MODAL - SLIDE IN ANIMATION
   =========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem var(--container-padding);
}

.modal-card {
    position: relative;
    max-width: 600px;
    margin: 5vh auto;
    animation: modalSlideIn 0.4s var(--ease-out);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.modal-close:hover {
    color: white;
    background: var(--primary-color);
    transform: rotate(90deg);
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

.contact-person {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-light) 0%, #e9ecef 100%);
    padding: 2.5rem 0;
    margin-top: 0;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */
.animate-hidden {
    opacity: 0;
    will-change: transform, opacity;
}

.animate-in {
    animation-fill-mode: forwards;
    animation-timing-function: var(--ease-out);
}

.animate-in[data-animate="fade-up"] {
    animation: fadeUp 0.8s var(--ease-out) forwards;
    animation-delay: var(--stagger-delay, 0s);
}

.animate-in[data-animate="fade-left"] {
    animation: fadeLeft 0.8s var(--ease-out) forwards;
    animation-delay: var(--stagger-delay, 0s);
}

.animate-in[data-animate="fade-right"] {
    animation: fadeRight 0.8s var(--ease-out) forwards;
    animation-delay: var(--stagger-delay, 0s);
}

.animate-in[data-animate="scale-up"] {
    animation: scaleUp 0.8s var(--ease-out) forwards;
    animation-delay: var(--stagger-delay, 0s);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================================
   ACCESSIBILITY - REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-hidden {
        opacity: 1;
    }

    .hero::before,
    .hero::after,
    .shape {
        animation: none;
    }
}

/* Backdrop-filter Fallback */
@supports not (backdrop-filter: blur(20px)) {
    .card {
        background: white;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }

    .modal {
        background-color: rgba(0, 0, 0, 0.6);
    }
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 .highlight {
        font-size: 2.8rem;
    }

    .main-cards {
        grid-template-columns: 1fr;
    }

    .projects-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --card-padding: 1.5rem;
        --section-padding: 2.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-content h1 .highlight {
        font-size: 2.2rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-content > div:first-child {
        max-width: 100%;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Hero effects - simplified on mobile */
    .hero::after {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }

    /* Header mobile */
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
    }

    .site-header {
        padding: 0.5rem 0;
    }

    .site-header img {
        height: 36px;
        margin-bottom: 0.3rem;
    }

    .event-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-left: 0;
        margin-bottom: 0.3rem;
    }

    .social-links {
        margin-bottom: 0.2rem;
    }

    /* Cards mobile */
    .main-cards {
        display: block;
        width: 100%;
    }

    .main-cards .card {
        margin-bottom: 1.5rem;
    }

    .comment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comment-grid > div:last-child {
        border-left: none;
        border-top: 1px solid rgba(95, 25, 55, 0.1);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Carousel mobile */
    .screenshots-container {
        height: 250px;
    }
}

/* ===========================================
   PROJECTS GRID
   =========================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.projects-grid .card {
    display: flex;
    flex-direction: column;
}

.projects-grid .card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.projects-grid .card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.projects-grid .project-visual {
    margin-top: auto;
}

.coming-soon-tag {
    display: inline-block;
    background: var(--glass-bg-strong);
    color: var(--primary-color);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: default;
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
