/* Custom styles for Tasneem Portfolio */

body {
    font-family: 'Arial', sans-serif;
    background-color: #050505;
    color: #f4f4f4;
}

.hero-section {
    position: relative;
    background: radial-gradient(circle at 20% 15%, rgba(255, 105, 180, 0.24), transparent 12%),
        linear-gradient(180deg, #050505 0%, #09090d 35%, #0e0f15 100%);
    color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(25deg, rgba(255, 105, 180, 0.35) 0, rgba(255, 105, 180, 0.35) 1px, transparent 1px, transparent 100px),
        repeating-linear-gradient(115deg, rgba(255, 20, 147, 0.28) 0, rgba(255, 20, 147, 0.28) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(165deg, rgba(255, 105, 180, 0.30) 0, rgba(255, 105, 180, 0.30) 1px, transparent 1px, transparent 110px),
        radial-gradient(circle at 12% 22%, rgba(255, 20, 147, 0.45), transparent 0.35rem),
        radial-gradient(circle at 32% 45%, rgba(255, 105, 180, 0.35), transparent 0.45rem),
        radial-gradient(circle at 74% 28%, rgba(255, 20, 147, 0.40), transparent 0.35rem),
        radial-gradient(circle at 82% 70%, rgba(255, 105, 180, 0.30), transparent 0.45rem),
        radial-gradient(circle at 50% 10%, rgba(255, 105, 180, 0.22), transparent 0.35rem),
        radial-gradient(circle at 24% 72%, rgba(255, 20, 147, 0.22), transparent 0.35rem);
    background-size: 120px 120px, 140px 140px, 170px 170px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    opacity: 0.8;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
    animation: flow 24s linear infinite;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.65), transparent 0.18rem),
        radial-gradient(circle at 25% 42%, rgba(255, 105, 180, 0.55), transparent 0.22rem),
        radial-gradient(circle at 58% 29%, rgba(255, 20, 147, 0.45), transparent 0.25rem),
        radial-gradient(circle at 80% 58%, rgba(255, 105, 180, 0.4), transparent 0.25rem);
    opacity: 1;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
}

@keyframes flow {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    50% {
        background-position: -140px 140px, 120px -100px, 130px 90px, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 105, 180, 0.45);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.02);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.12), transparent 24%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
}

@keyframes drift {
    0% {
        transform: translateX(-6%);
    }

    50% {
        transform: translateX(6%);
    }

    100% {
        transform: translateX(-6%);
    }
}

.about-section,
.projects-section,
.contact-section {
    background-color: #0c0c0f;
    color: #f4f4f4;
}

.card {
    background-color: #111316;
    border: 1px solid rgba(255, 105, 180, 0.16);
    color: #f4f4f4;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.card-title {
    color: #ff69b4;
}

.btn-primary {
    background-color: #ff69b4;
    border-color: #ff69b4;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ff1493;
    border-color: #ff1493;
}

.btn-outline-light {
    border-color: #ff69b4;
    color: #ff69b4;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 105, 180, 0.1);
    border-color: #ff69b4;
    color: #ff69b4;
}

h2 {
    color: #ff69b4;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 1rem;
}

.tool-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #111316;
    border: 1px solid rgba(255, 105, 180, 0.12);
    padding: 14px 16px;
    border-radius: 16px;
}

.tool-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.tool-logo--google {
    background: #4285f4;
}

.tool-logo--figma {
    background: #ff7262;
}

.tool-logo--adobe {
    background: #ff0000;
}

.tool-logo--canva {
    background: #00c4cc;
}

.tool-logo--miro {
    background: #ffca28;
    color: #000;
}

.tool-logo--asana {
    background: #ff4500;
}

.tool-logo--clickup {
    background: #7b68ee;
}

.tool-logo--jira {
    background: #0052cc;
}

.tool-logo--smartsheet {
    background: #169d49;
}

.tool-logo--visio {
    background: #107c41;
}

.tool-logo--davinci {
    background: #000000;
    border: 1px solid #ffffff;
}

.experience-section .row>[class*="col-"] {
    display: flex;
}

.experience-card {
    background: #111316;
    border: 1px solid rgba(255, 105, 180, 0.16);
    padding: 24px;
    border-radius: 20px;
    min-height: 280px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #f4f4f4;
}

.experience-card h3 {
    margin-bottom: 0.5rem;
    color: #ff69b4;
}

.experience-card p {
    margin-bottom: 1rem;
}

.experience-card ul {
    padding-left: 1rem;
}

.experience-card ul li {
    margin-bottom: 0.65rem;
}

.border-pink {
    border-color: #ff69b4 !important;
}

a {
    color: #ff69b4;
}

a:hover {
    color: #ff1493;
}

.footer-section {
    background: rgba(13, 13, 16, 0.95);
    color: #d8d8d8;
    border-top: 1px solid rgba(255, 105, 180, 0.14);
}

.footer-section p {
    margin-bottom: 0.2rem;
    color: #cfcfcf;
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.55);
}

/* Activate Cat Button */
#activate-cat-btn {
    background-color: #00d4ff;
    border-color: #00d4ff;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

#activate-cat-btn:hover {
    background-color: #00f0ff;
    border-color: #00f0ff;
    transform: scale(1.05);
}

/* Active Walking Cat */
.active-walking-cat {
    position: fixed;
    bottom: 50px;
    left: -350px;
    z-index: 999;
    display: none;
    animation: nyan-walk 15s linear forwards;
    pointer-events: none;
}

@keyframes nyan-walk {
    0% {
        left: -350px;
    }

    100% {
        left: calc(100vw + 50px);
    }
}

/* Walking Cat Animation */
.walking-cat {
    position: fixed;
    bottom: -46px;
    right: 20px;
    width: 500px;
    height: 250px;
    z-index: 1000;
    pointer-events: none;
}

@keyframes walk-across {
    0% {
        left: -50px;
    }

    100% {
        left: calc(100vw + 50px);
    }
}