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


/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */

/* =========================================================
   RUBY GEM
   ========================================================= */

.ruby-gem {
    position: fixed;

    width: 180px;
    height: 150px;

    top: 20%;
    right: 10%;

    transform: rotate(-8deg);

    background:
        linear-gradient(
            135deg,
            #ffb4c7 0%,
            #ff3f70 18%,
            #d90042 42%,
            #8f0028 72%,
            #4d0017 100%
        );

    clip-path: polygon(
        8% 28%,
        28% 4%,
        72% 7%,
        94% 30%,
        78% 75%,
        50% 100%,
        20% 76%
    );

    filter:
        drop-shadow(0 0 8px rgba(255, 35, 85, 0.9))
        drop-shadow(0 0 25px rgba(255, 25, 75, 0.65))
        drop-shadow(0 0 55px rgba(255, 20, 65, 0.4));

    opacity: 0.95;

    animation: gemFloat 7s ease-in-out infinite;

    z-index: -1;
}

/* =========================================================
   GEM FACETS
   ========================================================= */

.gem-facet {
    position: absolute;

    inset: 0;

    clip-path: inherit;

    pointer-events: none;
}

/* Bright upper facet */

.facet-1 {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.85),
            rgba(255,120,155,0.4) 35%,
            transparent 60%
        );

    clip-path: polygon(
        8% 28%,
        28% 4%,
        72% 7%,
        55% 37%,
        25% 45%
    );
}

/* Dark central facet */

.facet-2 {
    background:
        linear-gradient(
            145deg,
            rgba(110,0,30,0.15),
            rgba(70,0,20,0.75)
        );

    clip-path: polygon(
        25% 45%,
        55% 37%,
        78% 75%,
        50% 100%,
        20% 76%
    );
}

/* Bright right facet */

.facet-3 {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.65),
            rgba(255,70,115,0.25),
            transparent
        );

    clip-path: polygon(
        55% 37%,
        72% 7%,
        94% 30%,
        78% 75%
    );
}

/* Left ruby facet */

.facet-4 {
    background:
        linear-gradient(
            160deg,
            #ff9fb7,
            #ed174f 45%,
            #9b002d
        );

    clip-path: polygon(
        8% 28%,
        25% 45%,
        20% 76%,
        8% 28%
    );
}

/* Bottom reflection */

.facet-5 {
    background:
        linear-gradient(
            145deg,
            rgba(255,70,110,0.8),
            rgba(255,255,255,0.25),
            transparent
        );

    clip-path: polygon(
        25% 45%,
        55% 37%,
        78% 75%,
        50% 100%
    );
}

/* =========================================================
   WHITE GEM GLINT
   ========================================================= */

.gem-highlight {
    position: absolute;

    width: 55px;
    height: 18px;

    top: 20px;
    left: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.75);

    transform: rotate(-12deg);

    filter: blur(2px);

    opacity: 0.85;
}

/* Tiny sharp sparkle */

.gem-highlight::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    right: -8px;
    top: 5px;

    background: white;

    clip-path: polygon(
        50% 0%,
        60% 40%,
        100% 50%,
        60% 60%,
        50% 100%,
        40% 60%,
        0% 50%,
        40% 40%
    );

    box-shadow:
        0 0 12px white,
        0 0 25px rgba(255,100,140,0.9);
}

/* =========================================================
   GEM FLOAT
   ========================================================= */

@keyframes gemFloat {

    0%, 100% {
        transform:
            translateY(0)
            rotate(-8deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(-4deg);
    }
}


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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Nunito", Arial, sans-serif;

    color: rgba(255, 220, 225, 0.92);

    background:
        linear-gradient(
            155deg,
            #150003 0%,
            #2a0009 30%,
            #1a000d 65%,
            #0a0002 100%
        );

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ═══════════════════════════════════════
   BACKGROUND PHOTO
═══════════════════════════════════════ */

.background-photo {

    position: fixed;
    inset: 0;

    pointer-events: none;

    background-image:
        url("https://images.unsplash.com/photo-1574709755755-1699988a9c82?w=1600&h=900&fit=crop&auto=format");

    background-size: cover;
    background-position: center;

    opacity: 0.12;

    mix-blend-mode: luminosity;

    z-index: 0;
}


/* ═══════════════════════════════════════
   GLOW ORBS
═══════════════════════════════════════ */

.red-orb {

    position: fixed;

    pointer-events: none;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.5;

    z-index: 1;

    animation:
        orb-drift 11s ease-in-out infinite;
}


.orb-one {

    width: 600px;
    height: 600px;

    top: -140px;
    left: -140px;

    background:
        radial-gradient(
            circle,
            #dc2626,
            #7f1d1d,
            transparent 70%
        );
}


.orb-two {

    width: 480px;
    height: 480px;

    bottom: 0;
    right: -120px;

    background:
        radial-gradient(
            circle,
            #f43f5e,
            #881337,
            transparent 70%
        );

    animation-delay: 4s;
}


.orb-three {

    width: 360px;
    height: 360px;

    top: 38%;
    left: 38%;

    background:
        radial-gradient(
            circle,
            #be123c,
            #500724,
            transparent 70%
        );

    opacity: 0.25;

    animation-delay: 7s;
}


@keyframes orb-drift {

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

    33% {
        transform: translate(18px, -22px) scale(1.05);
    }

    66% {
        transform: translate(-12px, 14px) scale(0.97);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }

}


/* ═══════════════════════════════════════
   BACKGROUND BUBBLES
═══════════════════════════════════════ */

.bg-bubble {

    position: fixed;

    pointer-events: none;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at 32% 26%,
            rgba(255,255,255,0.12) 0%,
            rgba(220,38,38,0.06) 45%,
            transparent 70%
        );

    border: 1px solid rgba(255,200,210,0.18);

    border-top-color:
        rgba(255,240,245,0.4);

    backdrop-filter: blur(2px);

    -webkit-backdrop-filter: blur(2px);

    z-index: 1;
}


.bubble-one {
    width: 320px;
    height: 320px;
    top: 12%;
    right: 6%;
    opacity: 0.8;
}

.bubble-two {
    width: 200px;
    height: 200px;
    top: 55%;
    left: 4%;
    opacity: 0.65;
}

.bubble-three {
    width: 140px;
    height: 140px;
    bottom: 18%;
    right: 22%;
    opacity: 0.55;
}

.bubble-four {
    width: 420px;
    height: 420px;
    bottom: -80px;
    left: -60px;
    opacity: 0.5;
}

.bubble-five {
    width: 100px;
    height: 100px;
    top: 35%;
    right: 32%;
    opacity: 0.45;
}


/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */

.site-header {

    position: relative;

    z-index: 20;

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 28px;

    background:
        rgba(100, 0, 20, 0.5);

    backdrop-filter:
        blur(24px) saturate(250%);

    -webkit-backdrop-filter:
        blur(24px) saturate(250%);

    border-bottom:
        1px solid rgba(220,38,38,0.3);

    border-top:
        1px solid rgba(252,165,165,0.45);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 4px 24px rgba(180,0,20,0.3);
}


/* ═══════════════════════════════════════
   LOGO
═══════════════════════════════════════ */

.logo-area {

    display: flex;

    align-items: center;

    gap: 12px;
}


.logo-wrapper {

    position: relative;

    width: 46px;
    height: 46px;
}


.logo-blob {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            ellipse at 35% 28%,
            rgba(255,255,255,0.3) 0%,
            #dc2626 50%,
            #7f1d1d 100%
        );

    box-shadow:
        0 0 24px rgba(220,38,38,0.65),
        inset 0 2px 0 rgba(255,255,255,0.4);

    animation:
        blob-morph 9s ease-in-out infinite;
}


.logo-blob span {

    position: relative;

    z-index: 2;

    font-family: "Exo 2", sans-serif;

    font-weight: 900;

    color: white;

    font-size: 14px;
}


.logo-text {
    line-height: 1.15;
}


.logo-name {

    font-family: "Exo 2", sans-serif;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 14px;

    color:
        rgba(255,220,225,0.95);
}


.logo-subtitle {

    margin-top: 4px;

    font-size: 10px;

    letter-spacing: 0.08em;

    color:
        rgba(252,165,165,0.55);
}


/* ═══════════════════════════════════════
   ONLINE PILL
═══════════════════════════════════════ */

.online-pill {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 6px 13px;

    border-radius: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.12em;

    background:
        rgba(220,38,38,0.22);

    border:
        3px solid rgba(252,165,165,0.3);

    color: #fca5a5;
}


.online-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #f87171;

    box-shadow:
        0 0 6px #f87171;

    animation:
        liquid-pulse 5s infinite;
}


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */

.main-nav {

    display: flex;

    gap: 4px;
}


.nav-pill {

    position: relative;

    overflow: hidden;

    padding: 8px 15px;

    border-radius: 8px;

    border:
        1px solid transparent;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.1em;

    color:
        rgba(252,165,165,0.7);

    transition:
        all 0.22s ease;
}


.nav-pill::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 52%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.3),
            transparent
        );

    pointer-events: none;
}


.nav-pill.active {

    background:
        linear-gradient(
            135deg,
            rgba(220,38,38,0.72),
            rgba(244,63,94,0.55)
        );

    box-shadow:
        0 0 18px rgba(220,38,38,0.5),
        inset 0 1px 0 rgba(255,255,255,0.45);

    border-color:
        rgba(252,165,165,0.6);

    color: white;
}


.nav-pill:hover {

    background:
        rgba(255,200,210,0.18);

    color: white;

    transform: translateY(-1px);
}


/* ═══════════════════════════════════════
   HOME
═══════════════════════════════════════ */

.home-section {

    position: relative;

    z-index: 10;

    min-height:
        calc(100vh - 130px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding:
        70px 24px 90px;

    text-align: center;
}


/* ═══════════════════════════════════════
   HERO BLOB
═══════════════════════════════════════ */

.hero-blob-wrapper {

    position: relative;

    margin-bottom: 30px;

    width: 176px;
    height: 176px;
}


.hero-blob {

    position: relative;

    width: 176px;
    height: 176px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            ellipse at 34% 28%,
            rgba(255,255,255,0.3) 0%,
            #dc2626 45%,
            #7f1d1d 100%
        );

    box-shadow:
        0 0 70px rgba(220,38,38,0.65),
        0 0 140px rgba(220,38,38,0.22),
        inset 0 3px 0 rgba(255,255,255,0.42);

    animation:
        blob-morph 9s ease-in-out infinite;
}


.hero-gloss {

    position: absolute;

    width: 58%;
    height: 34%;

    top: 13%;
    left: 21%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(255,255,255,0.52),
            rgba(255,255,255,0.04)
        );
}


.hero-blob span {

    position: relative;

    z-index: 2;

    font-family: "Exo 2", sans-serif;

    font-size: 38px;

    font-weight: 900;

    color: white;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);
}


/* ═══════════════════════════════════════
   RIPPLE
═══════════════════════════════════════ */

.ripple-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1.5px solid rgba(252,165,165,0.45);

    pointer-events: none;

    animation:
        ripple 3s ease-out infinite;
}


.hero-ring-one {
    inset: -10px;
}

.hero-ring-two {
    inset: -10px;
    animation-delay: 1.5s;
}


.logo-ring-one {
    inset: -5px;
}

.logo-ring-two {
    inset: -5px;
    animation-delay: 1.2s;
}


@keyframes ripple {

    0% {
        transform: scale(0.85);
        opacity: 0.55;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* ═══════════════════════════════════════
   HERO TEXT
═══════════════════════════════════════ */

.hero-eyebrow {

    font-family: "Exo 2", sans-serif;

    font-weight: 700;

    font-size: 11px;

    letter-spacing: 0.16em;

    color:
        rgba(252,165,165,0.55);

    margin-bottom: 12px;
}


.hero-title {

    font-family: "Exo 2", sans-serif;

    font-size:
        clamp(44px, 7vw, 82px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -0.02em;

    margin-bottom: 22px;
}


.hero-white {

    color: white;

    text-shadow:
        0 0 48px rgba(220,38,38,0.5);
}


.hero-description {

    max-width: 440px;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 300;

    color:
        rgba(255,200,210,0.72);

    margin-bottom: 30px;
}


.hero-description strong {

    color: #fca5a5;

    font-weight: 800;
}


/* ═══════════════════════════════════════
   SHIMMER
═══════════════════════════════════════ */

.shimmer-red {

    background:
        linear-gradient(
            90deg,
            #fff 0%,
            #fca5a5 25%,
            #f43f5e 55%,
            #fda4af 80%,
            #fff 100%
        );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation:
        shimmer-red 3.5s linear infinite;
}


@keyframes shimmer-red {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


.glossy-red {

    position: relative;

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.glossy-red::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 52%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.48),
            rgba(255,255,255,0.06)
        );

    pointer-events: none;

    border-radius: inherit;
}


.glossy-red:hover {

    transform:
        translateY(-2px) scale(1.03);

    box-shadow:
        0 8px 28px rgba(220,38,38,0.55),
        0 0 0 1px rgba(252,165,165,0.4);
}


.primary-button {

    padding: 13px 28px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 900;

    color: white;

    background:
        linear-gradient(
            135deg,
            #dc2626,
            #f43f5e
        );

    border:
        1px solid rgba(252,165,165,0.3);

    box-shadow:
        0 4px 24px rgba(220,38,38,0.5),
        inset 0 1px 0 rgba(255,255,255,0.38);
}


.secondary-button {

    padding: 13px 28px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 900;

    color: #fca5a5;

    background:
        rgba(220,38,38,0.18);

    border:
        1px solid rgba(252,165,165,0.32);

    box-shadow:
        0 4px 20px rgba(220,38,38,0.18),
        inset 0 1px 0 rgba(255,255,255,0.14);
}


/* ═══════════════════════════════════════
   BUBBLE PANELS
═══════════════════════════════════════ */

.bubble-panel {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background:
        rgba(255,200,210,0.10);

    backdrop-filter:
        blur(22px) saturate(220%);

    -webkit-backdrop-filter:
        blur(22px) saturate(220%);

    border:
        1px solid rgba(255,180,190,0.28);

    border-top-color:
        rgba(255,235,240,0.6);

    border-left-color:
        rgba(255,220,228,0.45);

    box-shadow:
        inset 0 1.5px 0 rgba(255,255,255,0.35),
        inset 0 -1px 0 rgba(200,0,30,0.12),
        0 8px 32px rgba(180,0,30,0.18);

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}


.bubble-panel::before {

    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 42%;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255,255,255,0.28),
            transparent 80%
        );

    pointer-events: none;

    border-radius:
        0 0 50% 50%;

    z-index: 1;
}


.bubble-panel:hover {

    transform:
        translateY(-3px) scale(1.012);

    box-shadow:
        inset 0 1.5px 0 rgba(255,255,255,0.4),
        0 16px 48px rgba(200,0,30,0.28),
        0 0 0 1px rgba(252,165,165,0.3);
}


/* ═══════════════════════════════════════
   QUICK CARDS
═══════════════════════════════════════ */

.quick-links {

    width: 100%;

    max-width: 720px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    margin-top: 60px;
}


.quick-card {

    padding: 22px 16px;

    text-align: center;
}


.quick-icon {

    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    margin:
        0 auto 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(220,38,38,0.55),
            rgba(244,63,94,0.3)
        );

    box-shadow:
        0 0 14px rgba(220,38,38,0.35);

    color: #fca5a5;

    font-size: 18px;
}


.quick-title {

    position: relative;

    z-index: 2;

    font-family: "Exo 2", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;

    color: #fca5a5;

    margin-bottom: 4px;
}


.quick-subtitle {

    position: relative;

    z-index: 2;

    font-size: 11px;

    color:
        rgba(255,180,190,0.58);
}


/* ═══════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════ */

.content-section {

    position: relative;

    z-index: 10;

    min-height:
        calc(100vh - 130px);

    padding:
        80px 24px;
}


.section-header {

    text-align: center;

    max-width: 1000px;

    margin:
        0 auto 48px;
}


.section-eyebrow {

    font-family: "Exo 2", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.16em;

    color:
        rgba(252,165,165,0.48);

    margin-bottom: 8px;
}


.section-header h2 {

    font-family: "Exo 2", sans-serif;

    font-size:
        clamp(38px, 5vw, 58px);

    font-weight: 900;

    letter-spacing: -0.02em;
}


.section-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.section-divider span {

    display: block;

    width: 90px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(220,38,38,0.5)
        );
}


.section-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            rgba(220,38,38,0.5),
            transparent
        );
}


.divider-dot {

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #dc2626,
            #f43f5e
        );

    box-shadow:
        0 0 8px rgba(220,38,38,0.6);
}


/* ═══════════════════════════════════════
   PROJECTS
═══════════════════════════════════════ */

.project-grid {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.project-card {

    padding: 0;

    cursor: pointer;
}


.project-image {

    position: relative;

    height: 220px;

    overflow: hidden;

    border-radius:
        28px 28px 0 0;
}


.project-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}


.project-card:hover
.project-image img {

    transform:
        scale(1.08);
}


.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(60,0,10,0.9) 100%
        );
}


.project-tag {

    position: absolute;

    top: 13px;
    right: 13px;

    padding: 5px 10px;

    border-radius: 999px;

    background:
        rgba(180,0,30,0.6);

    border:
        1px solid rgba(252,165,165,0.4);

    color: #fecdd3;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.08em;

    backdrop-filter: blur(8px);
}


.project-icon {

    position: absolute;

    bottom: 13px;
    left: 13px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(220,38,38,0.75),
            rgba(244,63,94,0.5)
        );

    box-shadow:
        0 0 10px rgba(220,38,38,0.5);

    color: white;
}


.project-content {

    position: relative;

    z-index: 2;

    padding: 22px;
}


.project-content h3 {

    font-family: "Exo 2", sans-serif;

    font-size: 18px;

    font-weight: 800;

    color: white;

    margin-bottom: 7px;

    text-shadow:
        0 0 12px rgba(220,38,38,0.4);
}


.project-content p {

    font-size: 12px;

    line-height: 1.7;

    color:
        rgba(255,180,190,0.65);
}


.project-link {

    display: inline-block;

    margin-top: 14px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.1em;

    color: #f43f5e;
}


/* ═══════════════════════════════════════
   POMEGRANATE STRIP
═══════════════════════════════════════ */

.pomegranate-strip {

    position: relative;

    max-width: 1100px;

    height: 150px;

    margin:
        40px auto 0;

    overflow: hidden;
}


.pomegranate-strip img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.75;

    mix-blend-mode: luminosity;
}


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */

.about-grid {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 28px;
}


.about-left,
.about-right {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.bio-panel {

    padding: 30px;
}


.profile-row {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 22px;
}


.profile-blob {

    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            ellipse at 35% 28%,
            rgba(255,255,255,0.3),
            #dc2626 50%,
            #7f1d1d 100%
        );

    box-shadow:
        0 0 28px rgba(220,38,38,0.6),
        inset 0 2px 0 rgba(255,255,255,0.38);

    animation:
        blob-morph 9s ease-in-out infinite;
}


.profile-blob span {

    font-family: "Exo 2", sans-serif;

    font-weight: 900;

    color: white;

    font-size: 20px;
}


.profile-row h3 {

    font-family: "Exo 2", sans-serif;

    font-size: 20px;

    color: white;

    margin-bottom: 4px;
}


.profile-row p {

    font-size: 10px;

    letter-spacing: 0.08em;

    color:
        rgba(252,165,165,0.6);
}


.bio-text {

    position: relative;

    z-index: 2;

    color:
        rgba(255,200,210,0.78);

    font-size: 13px;

    line-height: 1.75;
}


.bio-text p + p {
    margin-top: 12px;
}


.bio-text strong {
    color: #fda4af;
}


.skill-tags {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;
}


.skill-tags span {

    padding: 7px 14px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(220,38,38,0.5),
            rgba(244,63,94,0.32)
        );

    border:
        1px solid rgba(252,165,165,0.38);

    color: #fca5a5;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.12em;

    box-shadow:
        0 0 10px rgba(220,38,38,0.22);
}


/* ═══════════════════════════════════════
   SKILLS
═══════════════════════════════════════ */

.skills-panel {

    padding: 25px;
}


.skills-panel h4 {

    position: relative;

    z-index: 2;

    font-family: "Exo 2", sans-serif;

    font-size: 12px;

    letter-spacing: 0.14em;

    color: #f43f5e;

    margin-bottom: 18px;
}


.skill {

    position: relative;

    z-index: 2;

    margin-bottom: 15px;
}


.skill:last-child {
    margin-bottom: 0;
}


.skill-label {

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    margin-bottom: 6px;

    color:
        rgba(255,200,210,0.78);
}


.skill-label strong {
    color: #f43f5e;
}


.progress-background {

    width: 100%;

    height: 11px;

    border-radius: 999px;

    background:
        rgba(255,180,190,0.1);

    overflow: hidden;
}


.progress-liquid {

    position: relative;

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #dc2626,
            #f43f5e,
            #fb7185
        );

    box-shadow:
        0 0 10px rgba(220,38,38,0.55);

    overflow: hidden;
}


.progress-liquid::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 55%;

    background:
        rgba(255,255,255,0.32);

    border-radius: inherit;
}


/* ═══════════════════════════════════════
   ABOUT IMAGE
═══════════════════════════════════════ */

.about-image {

    position: relative;

    height: 260px;

    padding: 0;
}


.about-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(80,0,15,0.55),
            transparent 60%,
            rgba(80,0,15,0.7)
        );

    pointer-events: none;
}


.about-image-overlay {

    position: absolute;

    z-index: 3;

    bottom: 22px;
    left: 22px;
}


.about-image-overlay div {

    font-family: "Exo 2", sans-serif;

    font-size: 36px;

    font-weight: 900;

    line-height: 1;
}


.about-image-overlay span {

    display: block;

    margin-top: 4px;

    font-family: "Exo 2", sans-serif;

    font-size: 20px;

    font-weight: 900;

    color:
        rgba(255,255,255,0.4);
}


/* ═══════════════════════════════════════
   FACTS
═══════════════════════════════════════ */

.facts-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.fact-card {

    padding: 18px;

    text-align: center;
}


.fact-icon {

    position: relative;

    z-index: 2;

    font-size: 24px;

    margin-bottom: 4px;
}


.fact-card strong {

    position: relative;

    z-index: 2;

    display: block;

    font-family: "Exo 2", sans-serif;

    font-size: 16px;

    color: white;

    text-shadow:
        0 0 12px rgba(220,38,38,0.45);
}


.fact-card span {

    position: relative;

    z-index: 2;

    display: block;

    margin-top: 3px;

    font-size: 10px;

    color:
        rgba(252,165,165,0.5);
}


.contact-about-button {

    position: relative;

    z-index: 2;

    display: block;

    width: 100%;

    padding: 14px;

    border-radius: 16px;

    text-align: center;

    font-size: 11px;

    font-weight: 900;

    color: white;

    background:
        linear-gradient(
            135deg,
            #dc2626,
            #f43f5e
        );

    box-shadow:
        0 4px 24px rgba(220,38,38,0.42),
        inset 0 1px 0 rgba(255,255,255,0.32);

    border:
        1px solid rgba(252,165,165,0.28);
}


/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */

.contact-section {

    position: relative;

    z-index: 10;

    min-height:
        calc(100vh - 130px);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding:
        80px 24px;
}


.contact-intro {

    max-width: 400px;

    text-align: center;

    font-size: 13px;

    line-height: 1.7;

    color:
        rgba(255,180,190,0.65);

    margin-bottom: 35px;
}


.email-wrapper {

    position: relative;

    margin-bottom: 55px;
}


.email-button {

    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 38px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 0.06em;

    color: white;

    background:
        linear-gradient(
            135deg,
            #dc2626,
            #f43f5e,
            #be123c
        );

    box-shadow:
        0 6px 36px rgba(220,38,38,0.55),
        0 0 70px rgba(220,38,38,0.18),
        inset 0 2px 0 rgba(255,255,255,0.38);

    border:
        1px solid rgba(252,165,165,0.32);
}


.email-ring-one {
    inset: -10px;
}


.email-ring-two {
    inset: -10px;
    animation-delay: 1.5s;
}


/* ═══════════════════════════════════════
   POMEGRANATE CIRCLES
═══════════════════════════════════════ */

.pomegranate-circles {

    display: flex;

    justify-content: center;

    gap: 16px;

    flex-wrap: wrap;

    max-width: 500px;
}


.pomegranate-circle {

    width: 110px;
    height: 110px;

    padding: 0;

    border-radius: 50%;

    animation:
        float-slow 5s ease-in-out infinite;
}


.pomegranate-circle:nth-child(2) {
    animation-delay: 1.4s;
}


.pomegranate-circle:nth-child(3) {
    animation-delay: 2.8s;
}


.pomegranate-circle img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.8;

    border-radius: 50%;
}


.contact-tags {

    display: flex;

    gap: 10px;

    margin-top: 35px;

    flex-wrap: wrap;

    justify-content: center;
}


.contact-tags span {

    padding: 10px 18px;

    border-radius: 999px;

    background:
        rgba(220,38,38,0.18);

    border:
        1px solid rgba(252,165,165,0.25);

    color:
        rgba(252,165,165,0.72);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.08em;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12);
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

.site-footer {

    position: relative;

    z-index: 10;

    padding: 18px 20px;

    text-align: center;

    font-size: 9px;

    letter-spacing: 0.12em;

    background:
        rgba(60,0,10,0.6);

    border-top:
        1px solid rgba(220,38,38,0.2);

    color:
        rgba(252,165,165,0.4);
}


/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */

@keyframes blob-morph {

    0% {
        border-radius:
            60% 40% 30% 70% /
            60% 30% 70% 40%;
    }

    25% {
        border-radius:
            30% 60% 70% 40% /
            50% 60% 30% 60%;
    }

    50% {
        border-radius:
            50% 60% 30% 60% /
            30% 40% 70% 50%;
    }

    75% {
        border-radius:
            70% 30% 50% 40% /
            60% 50% 30% 40%;
    }

    100% {
        border-radius:
            60% 40% 30% 70% /
            60% 30% 70% 40%;
    }
}


@keyframes liquid-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}


@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */

* {
    scrollbar-width: thin;

    scrollbar-color:
        rgba(220,38,38,0.4)
        transparent;
}


*::-webkit-scrollbar {
    width: 5px;
}


*::-webkit-scrollbar-track {
    background: transparent;
}


*::-webkit-scrollbar-thumb {

    background:
        rgba(220,38,38,0.4);

    border-radius: 3px;
}


/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */

@media (max-width: 850px) {

    .site-header {

        flex-wrap: wrap;

        gap: 14px;

        justify-content: center;
    }


    .logo-area {
        width: 100%;
        justify-content: center;
    }


    .online-pill {

        position: static;

        transform: none;
    }


    .main-nav {

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }


    .project-grid {

        grid-template-columns: 1fr;

        max-width: 550px;
    }


    .about-grid {

        grid-template-columns: 1fr;

        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .site-header {
        padding: 14px;
    }


    .hero-title {
        font-size: 46px;
    }


    .hero-blob-wrapper,
    .hero-blob {

        width: 145px;
        height: 145px;
    }


    .hero-blob span {
        font-size: 32px;
    }


    .quick-links {

        grid-template-columns: 1fr;

        max-width: 350px;
    }


    .content-section,
    .contact-section {

        padding:
            60px 16px;
    }


    .section-header h2 {
        font-size: 38px;
    }


    .project-image {
        height: 200px;
    }


    .facts-grid {
        gap: 10px;
    }


    .email-button {

        padding:
            15px 24px;

        font-size: 11px;
    }


    .pomegranate-circle {

        width: 90px;
        height: 90px;
    }

}
