/* Base Styles */
:root {
    --bg-light: #ffffff;
    --text-light: #1a1a1a;
    --gray-light: #6b7280;
    --bg-dark: #000000;
    --text-dark: #f3f4f6;
    --gray-dark: #9ca3af;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    transition: var(--transition);
}

/* Light Theme */
body.light {
    background-color: var(--bg-light);
    color: var(--text-light);
}

/* Dark Theme */
body.dark {
    background-color: var(--bg-dark);
    color: var(--text-dark);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo-container {
    text-align: center;
    max-width: 20rem;
    margin: 0 auto;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.5rem; /* Reduced from 2rem to 0.5rem */
}

.tagline {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-top: 1rem; /* Reduced from 2rem to 1rem */
}

body.dark .tagline {
    color: var(--gray-dark);
}

/* Dock */
.dock {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 50;
    pointer-events: none;
}

.dock-container {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    pointer-events: auto;
}

body.dark .dock-container {
    background-color: rgba(0, 0, 0, 0.8);
}

.dock-item {
    color: var(--gray-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.dock-item:hover {
    color: var(--text-light);
    transform: scale(1.25);
}

body.dark .dock-item {
    color: var(--gray-dark);
}

body.dark .dock-item:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 640px) {
    .dock-container {
        gap: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .dock-item {
        width: 2.5rem;
        height: 2.5rem;
    }
}
