:root {
    --color-black: #000000;
    --color-dark-gray: #0a0a0a;
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-white: #ffffff;
    --color-text-primary: #e5e7eb; /* Gray-200 */
    --color-text-secondary: #9ca3af; /* Gray-400 */
    --color-violet-400: #a78bfa;
    --color-violet-500: #8b5cf6;
    --color-violet-600: #7c3aed;
    --color-violet-700: #6d28d9;
    --color-fuchsia-400: #e879f9;
    --color-fuchsia-500: #d946ef;
    --color-cyan: #22d3ee;
    --color-yellow: #facc15;
    --color-green: #10b981;
    --color-blue: #60a5fa;

    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* Base Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, background-color 0.3s;
}

/* Typography and Gradients */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, var(--color-violet-400), var(--color-fuchsia-400));
}

.section-padding {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--color-black);
}

.section-darker {
    background-color: var(--color-dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-violet-500);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
}

/* --- Scroll Progress --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-violet-500), var(--color-fuchsia-500));
    width: 0;
    z-index: 100;
    transform-origin: left;
}

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease-out;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, var(--color-violet-400), var(--color-fuchsia-400));
    z-index: 51;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--color-violet-500);
    width: 0;
    transition: width 0.3s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-white);
}

.hire-me-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.hire-me-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    padding: 0.5rem;
    cursor: pointer;
    z-index: 51;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 49;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.mobile-menu-overlay.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.mobile-link:hover {
    color: var(--color-violet-400);
}

.mobile-hire-btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background-color: var(--color-violet-600);
    color: var(--color-white);
    font-weight: 700;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

.mobile-hire-btn:hover {
    background-color: var(--color-violet-700);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent 50%);
}

/* Background effects (Simplified) */
.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
    z-index: 0;
}

.hero-background::before {
    top: 25%;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background-color: rgba(124, 58, 237, 0.2);
    animation: pulse 4s infinite ease-in-out;
}

.hero-background::after {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(237, 58, 237, 0.1);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-violet-400);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.main-cta-btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background-color: var(--color-violet-600);
    color: var(--color-white);
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.main-cta-btn:hover {
    background-color: var(--color-violet-700);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-btn {
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--color-white);
    transition: all 0.2s;
}

.social-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Avatar Area */
.avatar-area {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.avatar-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out; /* For tilt effect */
}

/* --- NEW IMAGE STYLES --- */
.data-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media (min-width: 768px) {
    .data-image-wrapper {
        width: 450px;
        height: 450px;
    }
}

.data-image {
    width: 70%; /* Scale down a bit to fit the context */
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(124, 58, 237, 0.5));
}
/* --- END NEW IMAGE STYLES --- */


.avatar-glow {
    position: absolute;
    inset: 0;
    background-color: rgba(139, 92, 246, 0.3);
    filter: blur(60px);
    border-radius: 9999px;
    z-index: -1;
}

.avatar-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    background-color: rgba(139, 92, 246, 0.05);
    border-radius: 9999px;
    transform: translateZ(-50px);
    z-index: -2;
}


/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(17, 24, 39, 0.9); /* Gray-900 */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 20;
    transform: translateZ(var(--depth));
    animation: float 4s infinite ease-in-out var(--delay);
}

@keyframes float {
    0% { transform: translateZ(var(--depth)) translateY(0px); }
    50% { transform: translateZ(var(--depth)) translateY(-20px); }
    100% { transform: translateZ(var(--depth)) translateY(0px); }
}

.badge-icon-bg {
    padding: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.badge-text {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.icon-cyan { color: var(--color-cyan); }
.icon-yellow { color: var(--color-yellow); }
.icon-green { color: var(--color-green); }
.icon-blue { color: var(--color-blue); }

/* Adjusted badge positions relative to the center image */
.badge-python { top: 15%; left: 5%; }
.badge-sql { top: 15%; right: 5%; }
.badge-powerbi { bottom: 20%; left: 0%; }
.badge-excel { bottom: 20%; right: 0%; }


/* Scroll Down Icon */
.scroll-down-icon {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    margin: 0 2rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.marquee-item span {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--color-violet-500);
    border-radius: 9999px;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About Section --- */
.about-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* --- Skills Section --- */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.skills-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.heading-line {
    width: 2rem;
    height: 0.25rem;
    border-radius: 9999px;
}

.violet-line {
    background-color: var(--color-violet-500);
}

.fuchsia-line {
    background-color: var(--color-fuchsia-500);
}

.skill-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .skill-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.skill-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, var(--color-gray-900), var(--color-dark-gray));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: default;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
}

.skill-card-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--color-violet-400);
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.skill-card:hover .skill-card-icon {
    background-color: var(--color-violet-500);
    color: var(--color-white);
}

.skill-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.skill-card-details {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.skill-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: all 0.2s;
    cursor: default;
}

.skill-tag:hover {
    transform: scale(1.05);
    background-color: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

/* --- Experience Section --- */
.timeline-wrapper {
    max-width: 56rem;
    margin: 4rem auto 0 auto;
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 1rem; /* Adjust for mobile padding */
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 92, 246, 0.5) 10%, rgba(139, 92, 246, 0.5) 90%, transparent 100%);
}

@media (min-width: 768px) {
    .timeline-wrapper::before {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    align-items: flex-start;
}

.timeline-item-inner {
    flex: 1;
    padding-left: 4rem; /* For mobile spacing */
    transition: all 0.5s;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: 1rem;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.timeline-dot-inner {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--color-violet-500);
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    z-index: 10;
}

.timeline-dot-inner::after {
    content: '';
    position: absolute;
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 5;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Desktop Alignment */
@media (min-width: 768px) {
    .timeline-item {
        margin-bottom: 7rem;
    }
    
    .timeline-item-inner {
        padding-left: 0;
        padding-right: 2rem;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-item-inner {
        padding-left: 2rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .timeline-item .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-item-inner {
        /* This is the item on the left */
        margin-right: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-item-inner {
        /* This is the item on the right */
        margin-left: 2rem;
    }
}

.timeline-period {
    color: var(--color-violet-400);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-role {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.timeline-description {
    list-style: none;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.8;
}

.timeline-description li {
    position: relative;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .timeline-item:nth-child(even) .timeline-description {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-item:nth-child(odd) .timeline-description {
        align-items: flex-end;
    }
}

/* --- Projects Section --- */
.section-projects {
    position: relative;
    overflow: hidden;
}

.section-projects::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background-color: rgba(79, 70, 229, 0.05); /* Violet-900/5 approximation */
    filter: blur(40px);
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.project-card {
    position: relative;
    border-radius: 1rem;
    background-color: rgba(17, 24, 39, 0.5); /* Gray-900/50 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    transform-style: preserve-3d;
}

.project-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.1);
    transform: scale(1.02);
}

.project-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    background-color: var(--color-gray-800);
    transform: translateZ(20px);
}

.project-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-gray-900), transparent 50%);
    z-index: 10;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    color: var(--color-white);
}

.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    transform: translateZ(30px);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.project-card:hover .project-title {
    color: var(--color-violet-400);
}

.project-description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.6;
}

.project-links {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.project-link:hover {
    color: var(--color-white);
}

.external-link-icon {
    margin-left: auto;
    color: var(--color-violet-500);
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .external-link-icon {
    opacity: 1;
}

/* --- Contact Section --- */
.section-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-content {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text {
    color: var(--color-text-secondary);
    max-width: 40rem;
    margin: 0 auto 2.5rem auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.contact-cta {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.mail-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    margin-left: -0.25rem;
    transition: transform 0.3s;
}

.contact-cta:hover .mail-icon {
    transform: rotate(12deg);
}

/* Footer */
.footer-bottom {
    width: 100%;
    max-width: 64rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.copyright {
    color: #4b5563; /* Gray-600 */
    font-size: 0.875rem;
    order: 3;
}

@media (min-width: 768px) {
    .copyright {
        order: 2;
    }
}

.footer-mail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s;
    order: 2;
}

.footer-mail:hover {
    color: var(--color-violet-400);
}

@media (min-width: 768px) {
    .footer-mail {
        order: 3;
    }
}

.mail-icon-small {
    width: 1rem;
    height: 1rem;
}

.footer-bottom .social-icons {
    order: 1;
}

.desktop-only {
    display: none;
}
@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
    }
}