/* --- Global Palette: Retro-Futurist Solar --- */
:root {
    --color-pink-bg: #F4F1DE;      /* Warm Architectural Cream */
    --color-blue: #3D405B;         /* Deep Slate Blue (Primary Ink) */
    --color-yellow: #F2CC8F;       /* Muted Champagne Gold */
    --color-purple: #E07A5F;       /* Terracotta Orange (Accent) */
    --color-white: #FFFFFF;        /* Pure White */
    --color-black: #3D405B;        /* Consistent Slate for Body */
    --border-thick: 5px solid var(--color-blue);
    --font-90s-main: 'Bebas Neue', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;
    /* NEW PROFESSIONAL FONTS */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* IMPORT NEW FONTS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&family=Space+Grotesk:wght@600;700&display=swap');

/* --- RESET & BACKGROUND --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
.hidden { display: none !important; }

* {
    /* Updated to a reliable orange cursor link */
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur117.cur'), auto !important;
}

/* Ensure interactive elements still show the pointer version */
a, button, .nav-link, .discrete-power-btn, .music-toggle {
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), pointer !important;
}

body {
    background-color: var(--color-pink-bg);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Subtle stardust texture */
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    background-attachment: fixed;
}

/* --- THE UNIQUE BG GLOW --- */
.bg-glow {
    position: fixed;
    top: 0; 
    left: 0;
    width: 600px;
    height: 600px;
    /* Soft Terracotta glow */
    background: radial-gradient(circle, rgba(224, 122, 95, 0.15) 0%, rgba(244, 241, 222, 0) 70%);
    border-radius: 50%;
    pointer-events: none; /* Crucial: lets the cursor "click through" the glow */
    z-index: -1; /* Keeps it behind your content */
    filter: blur(80px);
    will-change: transform;
}

/* --- FIX: PREVENT MOBILE NAV FROM SHOWING ON DESKTOP --- */
.mobile-header, .side-drawer, .hamburger-menu {
    display: none; 
}

/* --- UPDATED: CUTE CIRCULAR MUSIC TOGGLE --- */
.music-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 64, 91, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    /* Keeps the button pulsing while music is playing */
    animation: music-pulse 2s infinite ease-in-out;
}

/* The Mute Line (Strike-through) */
.music-toggle::after {
    content: '';
    position: absolute;
    width: 0%; 
    height: 3px;
    background: var(--color-purple); /* The color of the strike-through line */
    transform: rotate(45deg);
    transition: width 0.3s ease-in-out;
    border-radius: 5px;
    z-index: 10;
}

/* When the music is stopped, this class makes the line appear */
.music-toggle.muted::after {
    width: 70% !important;
}

/* Stop the pulse animation when muted to save "energy" look */
.music-toggle.muted {
    animation: none;
    background: rgba(255, 255, 255, 0.1); /* Slightly dimmer */
}

@keyframes music-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(224, 122, 95, 0); }
    100% { transform: scale(1); }
}

.music-toggle:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* --- GLASSMORPHISM UTILITY --- */
.glass-style {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- INTERACTIVE HOVER STATES --- */
a, button, .nav-link, .discrete-power-btn, .hamburger-menu {
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), pointer !important;
    transition: 0.2s ease;
}

a:hover, button:hover, .nav-link:hover, .discrete-power-btn:hover {
    filter: brightness(1.1);
    color: var(--color-purple);
}

/* --- UPDATED: DESKTOP NAVBAR (CENTERED) --- */
.y2k-navbar-desktop {
    position: fixed; 
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%; 
    max-width: 850px; 
    height: 65px;
    border-radius: 50px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 0 40px; 
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(61, 64, 91, 0.1);
    box-shadow: 0 8px 32px 0 rgba(61, 64, 91, 0.05);
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.2s ease-out;
}

/* Ensure centering is maintained when visible */
.y2k-navbar-desktop.landing-visible {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.logo { font-family: var(--font-orbitron); color: var(--color-blue); font-weight: bold; }
.nav-links-wrapper { display: flex; align-items: center; }
.nav-link { margin-left: 20px; text-decoration: none; color: var(--color-blue); font-family: var(--font-orbitron); font-weight: bold; font-size: 0.9rem; }

/* --- BASE NAV LINK ADJUSTMENT --- */
.nav-link {
    position: relative; /* Required for the line to position itself to the link */
    padding: 5px 0;    /* Adds a little vertical hit area */
    transition: color 0.3s ease;
}

/* --- THE DISCRETE LINE UNDER CONTENT --- */
.nav-link.active {
    color: var(--color-purple) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;      /* Positioned cleanly under the text */
    left: 0;
    width: 100%;       /* Spans the full width of the word */
    height: 3px;       /* Discrete thickness */
    background: var(--color-purple);
    border-radius: 4px;
    
    /* THE MAGIC: Grow from center logic */
    transform-origin: center; 
    animation: growFromCenter 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    
    /* Subtle neon glow */
    box-shadow: 0 0 12px rgba(224, 122, 95, 0.4);
}

@keyframes growFromCenter {
    from {
        transform: scaleX(0); /* Starts at 0 width in the middle */
        opacity: 0;
    }
    to {
        transform: scaleX(1); /* Expands to full width */
        opacity: 1;
    }
}


/* --- RESPONSIVE TV --- */
.hero-split-container { 
    display: flex;
    flex-direction: row;
    align-items: center;      
    justify-content: center;   
    min-height: 100vh;
    padding: 100px 5% 50px;
    gap: 60px; 
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-left-panel { flex: 1; max-width: 600px; display: flex; flex-direction: column; align-items: flex-start; }
.hero-right-panel { flex: 1; max-width: 500px; display: flex; justify-content: center; align-items: center; min-width: 300px; }

.custom-tv-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px; 
    min-width: 320px; 
    aspect-ratio: 480 / 380;
    display: flex; justify-content: center; align-items: center;
}

.tv-frame-overlay {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 10; pointer-events: none; object-fit: contain;
}

#tv-screen { 
    position: absolute;
    width: 76.5%; 
    height: 73%; 
    left: 8.8%; 
    top: 10.5%;
    background: #2b2d42; 
    transition: background 0.3s; 
    overflow: hidden;
    border-radius: 5px;
    z-index: 5;
}

@keyframes screen-flicker {
    0% { opacity: 0; transform: scaleY(0.01) scaleX(0); }
    50% { opacity: 1; transform: scaleY(0.01) scaleX(1); }
    100% { opacity: 1; transform: scaleY(1) scaleX(1); }
}

#tv-screen.screen-on { 
    background: white; 
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2); 
    animation: screen-flicker 0.2s ease-out;
}

.discrete-power-btn {
    position: absolute; z-index: 20;
    bottom: 12.5%; right: 11.5%;
    width: 3.5%; aspect-ratio: 1/1;
    border-radius: 50%; border: 1px solid rgba(0,0,0,0.3);
    background: #333;
    box-shadow: inset 0 2px 2px rgba(255,255,255,0.1);
}

.discrete-power-btn.on { 
    background: var(--color-purple); 
    box-shadow: 0 0 10px var(--color-purple), inset 0 1px 2px white; 
}

.glass-glare { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 50%); pointer-events: none; z-index: 15; }
.slideshow-container { width: 100%; height: 100%; opacity: 0; transition: 0.5s; }
.screen-on .slideshow-container { opacity: 1; }
.slide { position: absolute; width: 100%; height: 100%; object-fit: cover; display: none; }
.slide.active { display: block; }
.crt-scanlines { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%); background-size: 100% 4px; z-index: 12; }
.crt-static { position: absolute; inset: 0; pointer-events: none; background: url('https://media.giphy.com/media/oEI9uWUicT800/giphy.gif'); opacity: 0.06; z-index: 11; }

/* --- PROJECTS GRID SECTION --- */
/* Increased the min-width from 220px to 300px for bigger cards */
/* 1. Grid & Layout - Kept your larger sizes */
.projects-grid {
    display: grid;
    /* Keeps cards large and responsive */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
}

.project-card {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(61, 64, 91, 0.1) !important;
    border-radius: 20px;
    padding: 25px; 
    box-shadow: 0 10px 30px rgba(61, 64, 91, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    min-height: 350px; /* Increased for better visual weight */
    text-decoration: none !important; 
    cursor: pointer; 
    position: relative; 
    color: inherit; 
    overflow: hidden; /* Keeps zoom effects contained */
}

.project-card:hover {
    transform: translateY(-10px);
    background: var(--color-white) !important;
    box-shadow: 0 20px 40px rgba(61, 64, 91, 0.1);
    /* Adding a subtle blue border on hover to define the "link" feel */
    border-color: var(--color-blue) !important;
}

/* Consistent Image Sizing */
.project-image-placeholder {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    background: rgba(61, 64, 91, 0.05);
    border: 0.01px solid var(--color-blue);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden; /* Needed for image zoom */
}

/* Style for actual images inside the placeholder/container */
.project-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes all images fill the space without stretching */
    transition: transform 0.6s ease;
}

.project-card:hover .project-image-placeholder img {
    transform: scale(1.01); /* Subtle zoom on hover */
}

.project-card h3 {
    font-family: var(--font-orbitron);
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    display: flex; /* Changed to flex for better alignment */
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

/* The Diagonal Arrow (Mwema ↗) */
.project-card h3::after {
    content: '↗';
    font-size: 1.1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.project-card:hover h3::after {
    transform: translate(4px, -4px);
    opacity: 1;
}

.project-description {
    /* Using Inter for the body text as requested */
    font-family: 'Inter', sans-serif !important; 
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-black);
    text-decoration: none !important;
    margin-top: 5px;
}

/* --- MOBILE & TABLET OVERRIDES --- */
@media (max-width: 1024px) {
    .y2k-navbar-desktop { display: none !important; 
                         z-index: 1000;
}
    
    .mobile-header { 
        display: flex; 
        position: fixed; top: 0; left: 0; width: 100%; height: 70px;
        padding: 0 25px; z-index: 2001; align-items: center; justify-content: space-between;
        background: var(--color-pink-bg);
        border-bottom: 2px solid var(--color-blue);
    }

    .hamburger-menu {
        display: flex !important;
        flex-direction: column; justify-content: space-between;
        width: 30px; height: 20px; z-index: 2002; background: none; border: none;
    }

    .hamburger-menu span { display: block; height: 4px; width: 100%; background: var(--color-blue); border-radius: 10px; transition: 0.3s ease; }
    .hamburger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.open span:nth-child(2) { opacity: 0; }
    .hamburger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .side-drawer {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: -300px;
        width: 280px; height: 100vh;
        z-index: 1500; padding: 100px 30px;
        background: var(--color-white);
        transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .side-drawer.open { right: 0; }
    .drawer-links { display: flex; flex-direction: column; gap: 25px; }
    .drawer-links a { text-decoration: none; color: var(--color-blue); font-family: var(--font-orbitron); font-weight: bold; font-size: 1.2rem; }

    .hero-split-container { flex-direction: column; text-align: center; padding-top: 120px; gap: 30px; }
    .hero-left-panel { align-items: center; }
    .nineties-main-title { font-size: 3.5rem; }
    .custom-tv-wrapper { width: 95%; max-width: 440px; }
}

/* --- SKILLS CAROUSEL SECTION --- */
.skills-carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 0 10px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-window {
    width: 100%;
    overflow: hidden;
    padding: 20px 5px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 30px;
}

.skill-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(61, 64, 91, 0.1) !important;
    padding: 30px;
    border-radius: 20px;
    text-align: center; 
    box-shadow: 0 10px 30px rgba(61, 64, 91, 0.05);
}

.card-header {
    font-family: var(--font-orbitron);
    font-weight: bold;
    color: var(--color-blue);
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-bottom: 2px dashed var(--color-purple);
    padding-bottom: 10px;
}


.icon-horizontal-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 10px 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    flex: 1;
}

.icon-item i {
    font-size: 3rem;
    color: var(--color-blue);
    transition: all 0.3s ease;
}

.icon-item span {
    font-family: var(--font-orbitron);
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--color-purple);
    text-transform: uppercase;
}

.icon-item:hover { transform: translateY(-8px); }
.icon-item:hover i { color: var(--color-purple); filter: drop-shadow(0 0 10px var(--color-yellow)); }


.dots-container { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.dot { height: 14px; width: 14px; background-color: transparent; border: 2px solid var(--color-blue); border-radius: 50%; display: inline-block; transition: all 0.3s ease; }
.dot.active { background-color: var(--color-purple); border-color: var(--color-purple); transform: scale(1.3); box-shadow: 0 0 8px var(--color-purple); }

.carousel-btn {
    background: var(--color-white);
    border: 3px solid var(--color-blue);
    color: var(--color-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 0 var(--color-yellow);
}

.carousel-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--color-purple); }
.carousel-btn.prev { position: absolute; left: -20px; }
.carousel-btn.next { position: absolute; right: -20px; }


.nineties-main-title { font-family: var(--font-90s-main); font-size: 5.5rem; line-height: 0.9; color: var(--color-blue); margin-bottom: 15px; }
.outline-text { -webkit-text-stroke: 2px var(--color-blue); color: transparent; background: white; padding: 0 10px; }
.y2k-badge { background: var(--color-purple); color: white; border: 3px solid var(--color-blue); padding: 5px 15px; font-family: var(--font-orbitron); transform: rotate(-2deg); margin-bottom: 20px; width: fit-content;}
.nineties-description { max-width: 450px; line-height: 1.6; color: var(--color-blue); font-weight: 500; font-size: 1.1rem; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; color: var(--color-blue); text-align: center; width: 100%; }

.content-section { 
    padding: 80px 50px; 
    margin: 40px auto; 
    max-width: 1000px; 
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; 
    box-shadow: none !important; 
}

.y2k-footer {
    text-align: center;
    padding: 40px 20px;
    font-family: var(--font-orbitron);
    color: var(--color-blue);
    border-top: 2px dashed var(--color-blue);
    margin-top: 60px;
}


#loader-screen { 
    position: fixed; 
    inset: 0; 
    background: transparent; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}
#loader-screen.fade-out { opacity: 0; visibility: hidden; }

.loader-content {
    background: white;
    border: var(--border-thick);
    padding: 40px;
    box-shadow: 10px 10px 0 var(--color-purple);
    width: 420px;           
    height: 320px;          
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loader-text { 
    font-family: var(--font-orbitron); 
    font-size: 1.3rem;      
    font-weight: bold; 
    margin-bottom: 25px; 
    color: var(--color-blue); 
    letter-spacing: 1px;
    width: 100%;            
    text-align: center;
}

.loader-bar-container { 
    width: 300px; /* Fixed width so it stays put! */
    height: 10px; 
    background: rgba(0, 0, 0, 0.05); 
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}


#loader-bar { 
    height: 100%; 
    width: 0%; 
    /* NEW GRADIENT: Cleaner, brighter, and moving */
    background: linear-gradient(
        90deg, 
        #E07A5F 0%, 
        #F2CC8F 50%, 
        #E07A5F 100%
    );
    background-size: 200% 100%;
    animation: liquid-flow 1.5s infinite linear;
    border-radius: 20px;
    transition: width 0.4s ease;
}


@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

#progress-percent { 
    margin-top: 15px; 
    font-family: var(--font-orbitron); 
    font-weight: bold; 
    color: var(--color-blue); 
    font-size: 1rem;         /* LARGER PERCENTAGE */
    text-align:center;
}
/* --- SMOOTH ENTRANCE HELPERS --- */
.landing-visible { opacity: 1 !important; transform: translateY(0) !important; }



#about {
    padding: 80px 20px;
}


.about-clean-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.accent-line {
    width: 40px;
    height: 3px;
    background: var(--color-purple);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lead-text {
    font-family: var(--font-body);
    font-size: 1.4rem; /* Larger and impactful */
    line-height: 1.6;
    color: var(--color-blue);
    font-weight: 600;
}

.secondary-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-blue);
    opacity: 0.85; /* Slightly softer for secondary info */
}

.text-highlight {
    color: var(--color-purple);
    border-bottom: 1px solid var(--color-purple);
}

.about-footer-simple {
    margin-top: 40px;
    font-family: var(--font-orbitron);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-blue);
    opacity: 0.4;
}

@keyframes status-pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.bio-card .highlight {
    color: var(--color-purple);
    font-weight: bold;
    font-family: var(--font-orbitron);
}

.bio-footer-meta {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed var(--color-blue);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-orbitron);
    font-size: 0.65rem;
    opacity: 0.7;
    color: var(--color-blue);
}

/* --- CONTACT SECTION HUB --- */
.contact-hub-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.cta-mail-btn {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 20px 45px;
    font-family: var(--font-orbitron);
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 2px 2px 0 var(--color-purple);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-mail-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0 var(--color-purple);
    background: var(--color-blue);
}

.social-tiles-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-tile {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--color-blue);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-tile:hover {
    transform: translateY(-8px) rotate(5deg);
    background: var(--color-white);
    color: var(--color-purple);
    border-color: var(--color-purple);
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.2);
}

.contact-subtext {
    font-family: var(--font-orbitron);
    font-size: 0.8rem;
    color: var(--color-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}