:root {
    /* Warmer Theme - Stone / Amber */
    --bg-color: #1c1917;
    /* Stone 900 */
    --text-color: #f5f5f4;
    /* Stone 100 */
    --primary-color: #fb923c;
    /* Orange 400 */
    --nav-height: 80px;
    --transition: all 0.3s ease;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

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

/* Background */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.08), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    padding: 0 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    opacity: 0.9;
}

.logo .dot {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: var(--nav-height);
    /* Offset fixed header */
}

.icon-container {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.icon-social {
    width: 32px;
    height: 32px;
    color: #78716c;
    /* Stone 500 - Muted default */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.icon-social:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Footer */
.minimal-footer {
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: #44403c;
    text-align: center;
}