/* ============================================
   Hayden Eubanks Portfolio — Custom Styles
   Dark theme: navy-black + cyan/violet accents
   Extends Tailwind CSS (loaded via CDN)
   ============================================ */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --accent-cyan: #06b6d4;
    --accent-violet: #8b5cf6;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --success: #22c55e;
    --deactivated: #ef4444;
    --gradient-accent: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-accent-hover: linear-gradient(135deg, #0891b2, #7c3aed);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.3);
    --glow-violet: 0 0 20px rgba(139, 92, 246, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Gradient Border ---- */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* ---- Navigation ---- */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

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

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

/* ---- Hero ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite alternate;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@keyframes heroPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ---- Typing Cursor ---- */
.typing-cursor {
    animation: blink 1s step-end infinite;
    color: var(--accent-cyan);
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Section ---- */
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading-underline {
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    margin-bottom: 3rem;
}

/* ---- Profile Image Glow ---- */
.profile-glow {
    border-radius: 12px;
    box-shadow: var(--glow-cyan);
    border: 2px solid rgba(6, 182, 212, 0.3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 14rem;
    height: 14rem;
    object-fit: cover;
}

.profile-glow:hover {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
    border-color: rgba(6, 182, 212, 0.6);
}

/* ---- Skill Card ---- */
.skill-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

.skill-card.primary {
    border-color: rgba(6, 182, 212, 0.2);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
}

/* ---- Project Card ---- */
.project-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-cyan);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-live {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-live .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.status-deactivated {
    background: rgba(239, 68, 68, 0.1);
    color: var(--deactivated);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.tech-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

/* ---- CTA Button ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gradient-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.timeline-item.current::before {
    background: var(--success);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Project Detail Page ---- */
.project-hero {
    padding-top: 120px;
    padding-bottom: 3rem;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.05), transparent);
}

.deactivated-banner {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--deactivated);
    font-weight: 500;
}

.callout-box {
    background: rgba(6, 182, 212, 0.05);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

/* ---- Footer ---- */
.footer-gradient {
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 1.5rem;
    margin-top: 5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

/* ---- Mobile Nav ---- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .section-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .skill-card {
        padding: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Performance ---- */
/* content-visibility: auto removed — it conflicts with .reveal scroll
   animations by deferring render until a section enters the viewport,
   causing the reveal transition to race with the first paint and
   producing janky / invisible animations plus CLS from the intrinsic
   size estimate. .reveal already handles progressive disclosure. */

/* ---- Accessibility: respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   Component Styles
   Semantic CSS classes for each PHP component.
   ============================================ */

/* ---- Layout ---- */
.section-content {
    padding: 6rem 1.5rem;
}

.container-lg {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.container-md {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.container-sm {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Color Accents ---- */
.accent-cyan { color: var(--accent-cyan); }
.accent-violet { color: var(--accent-violet); }
.accent-yellow { color: #facc15; }

/* ---- Nav Component ---- */
.nav-inner {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

.nav-mobile-toggle {
    display: block;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-mobile-toggle:hover {
    color: var(--accent-cyan);
}

@media (min-width: 768px) {
    .nav-mobile-toggle { display: none; }
}

.nav-toggle-icon {
    font-size: 1.25rem;
}

.mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-close-btn:hover {
    color: var(--text-primary);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    color: rgb(203, 213, 225);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-cyan);
}

/* ---- Hero Component ---- */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.hero-tagline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-cta-group { flex-direction: row; }
}

.scroll-indicator-icon {
    color: rgb(71, 85, 105);
    font-size: 1.25rem;
}

/* ---- Section Heading Component ---- */
.section-heading-wrap {
    margin-bottom: 4rem;
}

.section-heading-wrap.centered {
    text-align: center;
}

.section-heading-wrap.centered .section-heading-underline {
    margin-left: auto;
    margin-right: auto;
}

.section-heading-subtitle {
    color: var(--text-secondary);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ---- About Component ---- */
.about-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-layout { flex-direction: row; }
}

.about-image-wrap {
    flex-shrink: 0;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgb(30, 41, 59);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: rgb(203, 213, 225);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-text strong {
    color: rgb(226, 232, 240);
}

/* ---- Skills Component ---- */
.skills-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.skill-card-icon {
    font-size: 1.5rem;
}

.skill-card-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.skill-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.skill-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chevron-icon {
    font-size: 0.75rem;
}

/* ---- Tag Bar Component ---- */
.tag-bar-title {
    text-align: center;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tag-bar-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag-bar-spacer {
    margin-top: 2.5rem;
}

/* ---- Skill Tag ---- */
.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0.5rem;
    color: rgb(203, 213, 225);
    font-size: 0.875rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: border-color 0.3s ease;
}

.skill-tag.cyan:hover { border-color: rgba(6, 182, 212, 0.3); }
.skill-tag.violet:hover { border-color: rgba(139, 92, 246, 0.3); }

/* ---- Projects Component ---- */
.projects-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-card-link.live { color: var(--accent-cyan); }
.project-card-link.archived { color: var(--text-muted); }

/* ---- Timeline Component ---- */
.timeline-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-org {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.timeline-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.timeline-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.timeline-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.timeline-chevron {
    font-size: 0.75rem;
    margin-top: 0.375rem;
}

/* ---- Education Component ---- */
.education-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .education-grid { grid-template-columns: repeat(2, 1fr); }
}

.education-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.education-card-icon {
    font-size: 1.5rem;
}

.education-card-title {
    font-weight: 600;
}

.education-line-detail {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.education-line-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.education-line-detail-sm {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ---- Contact Component ---- */
.contact-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-cta-group { flex-direction: row; }
}

/* ---- Footer Component ---- */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content { flex-direction: row; }
}

.footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info { text-align: left; }
}

.footer-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(30, 41, 59);
    text-align: center;
}

.footer-copyright {
    color: rgb(71, 85, 105);
    font-size: 0.875rem;
}
