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

:root {
    --slate-blue: #6b7c8e;
    --dark-gray: #4a5568;
    --text-dark: #2d3748;
    --linkedin: #0077b5;
    --twitter: #1da1f2;
    --instagram: #e4405f;
    --phone: #f5a623;
    --email: #2ecc71;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--slate-blue);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Main Container - Two Column Layout */
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    background-color: var(--slate-blue);
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    color: var(--text-dark);
}

header h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.identity {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.pronouns {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 50px;
    font-weight: 400;
}

.pronouns strong {
    font-weight: 700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.linkedin {
    background-color: var(--linkedin);
}

.twitter {
    background-color: var(--twitter);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.phone {
    background-color: var(--phone);
}

.email {
    background-color: var(--email);
}

/* Right Section */
.right-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.consulting-link {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.consulting-link:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

.consulting-link img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .left-section {
        padding: 60px 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .right-section {
        padding: 40px;
    }

    header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 40px 30px;
    }

    header h1 {
        font-size: 2.5rem;
    }

    .identity {
        font-size: 1.1rem;
    }

    .pronouns {
        font-size: 1rem;
    }

    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .social-links {
        gap: 15px;
    }

    .overlay {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .overlay {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Snowflakes */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
    color: white;
    font-size: 1em;
}

@keyframes snowflakes-fall {
    0% {
        top: -10%;
    }
    100% {
        top: 100%;
    }
}

@keyframes snowflakes-shake {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(80px);
    }
}

.snowflake:nth-of-type(0) {
    left: 1%;
    animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(1) {
    left: 10%;
    animation-delay: 1s, 1s;
}
.snowflake:nth-of-type(2) {
    left: 20%;
    animation-delay: 6s, 0.5s;
}
.snowflake:nth-of-type(3) {
    left: 30%;
    animation-delay: 4s, 2s;
}
.snowflake:nth-of-type(4) {
    left: 40%;
    animation-delay: 2s, 2s;
}
.snowflake:nth-of-type(5) {
    left: 50%;
    animation-delay: 8s, 3s;
}
.snowflake:nth-of-type(6) {
    left: 60%;
    animation-delay: 6s, 2s;
}
.snowflake:nth-of-type(7) {
    left: 70%;
    animation-delay: 2.5s, 1s;
}
.snowflake:nth-of-type(8) {
    left: 80%;
    animation-delay: 1s, 0s;
}
.snowflake:nth-of-type(9) {
    left: 90%;
    animation-delay: 3s, 1.5s;
}
.snowflake:nth-of-type(10) {
    left: 25%;
    animation-delay: 2s, 0s;
}
.snowflake:nth-of-type(11) {
    left: 65%;
    animation-delay: 4s, 2.5s;
}
