/*
Theme Name: Vivek Vijayvargia
Theme URI: https://vivekvijayvargia.com/
Author: Vivek Vijayvargia
Description: Bridging finance, strategy, and execution.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Vivek Vijayvargia
*/

html, body {
    height: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffb199 0%, #ff7eb3 25%, #ff758c 50%, #ffd67a 75%, #b06ab3 100%);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    padding: 40px;
    box-sizing: border-box;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

h1.site-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    letter-spacing: 4px;
    margin: 0 0 0.4rem 0;
    font-weight: 700;
}

p.site-desc {
    margin: 0 0 1.6rem 0;
    font-size: clamp(1rem, 2.4vw, 1.3rem);
    opacity: 0.95;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255,255,255,0.12);
}

.footer-note {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive spacing */
@media (max-width: 520px) {
    .social-icons a { width: 48px; height: 48px; font-size: 18px; }
}
