/* CSS Variables */
:root {
    /* Colors */
    --color-bg: #1a1d2e;
    --color-text: #FFFFFF;
    --color-violet: #9446FF;
    --color-violet-hover: #6A1FD0;
    --color-violet-18: rgba(146, 69, 255, 0.18);
    --color-btn-text: #FFFFFF;
    --color-shadow: rgba(0, 0, 0, 0.18);
    --color-body: var(--color-text);
    --color-name: var(--color-text);
    --icon-filter: none;

    /* Typography */
    --font-family: 'Montserrat', sans-serif;
}

@media (prefers-color-scheme: light) {
    :root {
        --color-bg: #f5f3f9;
        --color-text: #1a1d2e;
        --color-violet: #7B2FE0;
        --color-violet-hover: #6A1FD0;
        --color-violet-18: rgba(123, 47, 224, 0.18);
        --color-btn-text: #FFFFFF;
        --color-shadow: rgba(0, 0, 0, 0.08);
        --color-body: #2b282f;
        --color-name: #7B2FE0;
        --icon-filter: brightness(0.3) saturate(1.2);
    }
}

/* Force dark theme override */
[data-theme="dark"] {
    --color-bg: #2a144a;
    --color-text: #FFFFFF;
    --color-violet: #9446FF;
    --color-violet-hover: #6A1FD0;
    --color-violet-18: rgba(146, 69, 255, 0.18);
    --color-btn-text: #FFFFFF;
    --color-shadow: rgba(0, 0, 0, 0.18);
    --color-body: #fafafa;
    --color-name: #fafafa;
    --icon-filter: none;
}

/* Force light theme override */
[data-theme="light"] {
    --color-bg: #e5e2ed;
    --color-text: #2e1a4d;
    --color-violet: #7B2FE0;
    --color-violet-hover: #6A1FD0;
    --color-violet-18: rgba(123, 47, 224, 0.18);
    --color-btn-text: #FFFFFF;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-body: #636366;
    --color-name: #7B2FE0;
    --icon-filter: brightness(0.3) saturate(1.2);
}

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

body {
    font-family: var(--font-family);
    color: var(--color-text);
    overflow-x: hidden;
    background: var(--color-bg);
}

/* ======================================
   MOBILE-FIRST BASE STYLES
   ====================================== */

/* Container */
.container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 72px 24px;
}


/* Main Content */
.main-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Eyebrow - Mobile Layout */
.eyebrow {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.name-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-name);
    margin-right: 20px;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.icons {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    filter: var(--icon-filter);
}
.notfound {
    max-width: 72px;
    padding: 0 0 8px 0;
    opacity: .7;
}
/* Tagline */
.tagline {
    width: 100%;
}

.tagline p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-body);
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    width: 100%;
}

.cta-button {
    text-decoration: none;
    background: var(--color-violet);
    color: var(--color-btn-text);
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow:
        0px 0.602px 0.602px -1.25px var(--color-shadow),
        0px 2.289px 2.289px -2.5px var(--color-shadow),
        0px 10px 10px -3.75px var(--color-shadow);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--color-violet-hover);
    box-shadow:
        0px 0.8px 0.8px -1.25px var(--color-shadow),
        0px 3px 3px -2.5px var(--color-shadow),
        0px 12px 12px -3.75px var(--color-shadow);
}

.cta-button:active {
    transform: translateY(0);
}

.linkedin-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-violet);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* ======================================
   THEME TOGGLE
   ====================================== */

.theme-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-violet-18);
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.theme-toggle:hover {
    opacity: 1;
    border-color: var(--color-violet);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

/* Show sun in light mode (user can switch to dark) */
@media (prefers-color-scheme: light) {
    .theme-toggle .icon-sun {
        display: block;
    }
    .theme-toggle .icon-moon {
        display: none;
    }
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}
[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
    display: block;
}
[data-theme="light"] .theme-toggle .icon-moon {
    display: none;
}
