/* ═══════════════════════════════════════════
   Full-viewport landing section
   ═══════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3rem 0 5rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* ── Text column ── */
.hero-text {
    flex: 1;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

/* ── Typing area ── */
.typing-container {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    height: 2rem;
}

#typing-text {
    color: var(--accent);
}

.typing-cursor {
    color: var(--accent);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* ── Description + CTA ── */
.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ── Avatar column ── */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-avatar {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
    border: 5px solid var(--card-bg);
    animation: float 6s ease-in-out infinite;
}

.profile-emoji {
    font-size: 8rem;
    line-height: 1;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

/* ── Orbiting tech badges ── */
.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    z-index: 1;
    color: var(--primary);
}

.shape svg { color: var(--primary); }
.shape i   { font-size: 1.5rem; }

.shape-1 {
    width: 60px; height: 60px;
    top: 0; right: 20%;
    animation: orbit 7s ease-in-out infinite;
}

.shape-2 {
    width: 50px; height: 50px;
    bottom: 20%; left: 10%;
    animation: orbit 5s ease-in-out infinite 1s;
}

.shape-3 {
    width: 70px; height: 70px;
    bottom: 10%; right: 10%;
    animation: orbit 8s ease-in-out infinite 0.5s;
}

@keyframes orbit {
    0%, 100% { transform: translate(0, 0)   rotate(0deg); }
    25%      { transform: translate(10px, -10px) rotate(5deg); }
    50%      { transform: translate(0, -20px) rotate(0deg); }
    75%      { transform: translate(-10px, -10px) rotate(-5deg); }
}