/* css/text-pages.css */
.text-page-header { padding-top: 150px; margin-bottom: 4rem; text-align: center; position: relative; z-index: 2; }
.text-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(to bottom right, #ffffff 0%, var(--gold-light) 60%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-page-subtitle { font-family: 'Inter', monospace; font-size: 1.1rem; color: var(--text-muted); margin-top: 1rem; }

/* Grid Layouts */
.about-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: stretch; margin-bottom: 2rem; }
.hobbies-container { display: grid; grid-template-columns: 1fr; gap: 2rem; }

/* Skills Visualization */
.skills-container { display: flex; flex-direction: column; }
.stack-group { margin-bottom: 2.5rem; }
.stack-title { font-size: 1.05rem; color: var(--text-pure); font-weight: 600; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; border-bottom: 1px solid var(--border-subtle); padding-bottom: 0.8rem; }
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.skill-pill { padding: 0.8rem 1.2rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); border-radius: 12px; font-weight: 500; font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem; transition: all 0.3s; }
.skill-pill:hover { border-color: var(--border-gold); background: rgba(212, 175, 55, 0.05); transform: translateY(-2px); }

/* NEW: Learning Status Bar */
.learning-status-bar { margin-top: 2rem; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), var(--bg-card) 60%); animation: learning-box-glow 4s ease-in-out infinite; border-radius: 24px; }
@keyframes learning-box-glow {
    0%, 100% { border-color: var(--border-subtle); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0); }
    50% { border-color: rgba(212, 175, 55, 0.4); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15); }
}
.pulse-dot { position: relative; flex-shrink: 0; width: 14px; height: 14px; background-color: var(--gold-main); border-radius: 50%; }
.pulse-dot::after { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border-radius: 50%; border: 2px solid var(--gold-main); animation: ping-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping-ring { 0% { transform: scale(0.5); opacity: 1; } 75%, 100% { transform: scale(2.5); opacity: 0; } }
.learning-status-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.learning-status-text strong { color: var(--text-pure); }

/* Hobby Lists */
.hobby-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.hobby-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border-subtle); border-radius: 12px; transition: border-color 0.3s; }
.hobby-item:hover { border-color: var(--border-gold); }
.hobby-icon { font-size: 1.5rem; color: var(--gold-main); flex-shrink: 0; }
.hobby-text h4 { color: var(--text-pure); font-size: 1.1rem; margin-bottom: 0.4rem; }
.hobby-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .learning-status-bar { flex-direction: column; text-align: center; }
}