@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #2f3e46;
    --accent-color: #4f46e5;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #ffffff;
    --link-color: #4f46e5;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* --- Neural Network Background --- */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #ffffff;
    /* Base background color */
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

@keyframes pulseGrid {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* --- Main Layout --- */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    z-index: 1;
}

/* Left Content */
.content-side {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    margin-bottom: 2rem;
}

.brand-logo img {
    height: 40px;
    /* Adjust size as needed */
    width: auto;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

p.description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.update-notice {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    /* Dark slate for text */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.update-notice::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    /* Amber for 'in progress' */
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.contact-area {
    margin-top: 1rem;
}

.mail-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.mail-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.mail-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-icon {
    color: #94a3b8;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Specific Brand Colors on Hover */
.social-icon.linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
}

.social-icon.twitter:hover {
    color: #000000;
    border-color: #000000;
}

/* X is black */
.social-icon.instagram:hover {
    color: #e4405f;
    border-color: #e4405f;
}

.social-icon.youtube:hover {
    color: #ff0000;
    border-color: #ff0000;
}

/* Right Visuals */
.visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Removed border-radius and shadow to avoid boxing the image if we want it to blend */
    /* border-radius: 24px; */
    /* overflow: hidden; */
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); */
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover {
    transform: translateY(-5px);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    /* This blends the white background of the image with the page background */
    mix-blend-mode: multiply;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .content-side {
        padding-right: 0;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    p.description {
        margin: 0 auto 2rem;
    }

    .visual-side {
        padding: 0 1rem;
    }
}