/* just_be_yourself.css - Page Specific Styles */

.just-be-yourself-page {
    --identity-primary: #0ea5e9;
    --identity-secondary: #0284c7;
    --identity-light: #f0f9ff;
    --identity-border: #bae6fd;
    --identity-text: #0369a1;
}

/* Page Layout Overrides */
.just-be-yourself-page .main-content {
    background: transparent !important;
    box-shadow: none !important;
}

.just-be-yourself-page .content-body {
    line-height: 2;
    color: #334155;
}

/* Intro Quote */
.just-be-yourself-page .intro-quote {
    text-align: center;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    color: #0e7490;
    line-height: 2.2;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Osho Quote Section */
.just-be-yourself-page .osho-quote-section {
    background: radial-gradient(circle at center, #e0f2fe 0%, #ffffff 70%);
    border: 2px solid #bae6fd;
    border-radius: 16px;
    padding: 3.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
    overflow: hidden;
}

.just-be-yourself-page .osho-quote-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.8) 20deg,
        transparent 40deg
    );
    animation: rotate-light 25s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

@keyframes rotate-light {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.just-be-yourself-page .osho-icon-wrapper {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: white;
    padding: 0 1.2rem;
    border-radius: 50%;
}

.just-be-yourself-page .osho-quote-section i {
    font-size: 2.5rem;
    color: var(--identity-primary);
}

.just-be-yourself-page .osho-text {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    line-height: 2;
    color: var(--identity-text);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.just-be-yourself-page .shimmer-text {
    background: linear-gradient(to right, #0ea5e9 0%, #7dd3fc 50%, #0ea5e9 100%);
    background-size: 200% auto;
    color: #0ea5e9;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    font-weight: bold;
    text-shadow: none;
    display: inline-block;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.just-be-yourself-page .osho-author {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 1.5rem;
    font-weight: bold;
    color: var(--identity-secondary);
}

/* Main Article */
.just-be-yourself-page .main-article h3 {
    color: var(--identity-text);
    border-bottom: 2px solid #7dd3fc;
    padding-bottom: 0.6rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.just-be-yourself-page .main-article h3 i {
    color: var(--identity-primary);
}

.just-be-yourself-page .highlight-text {
    background: linear-gradient(transparent 65%, #bae6fd 65%);
    font-weight: bold;
    color: #0f172a;
    padding: 0 0.2rem;
}

/* Interactive Elements */
.just-be-yourself-page .burden-breaker {
    text-align: center;
    margin: 3.5rem 0;
    color: #64748b;
}

.just-be-yourself-page .feather-container {
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.just-be-yourself-page .feather-container:hover {
    transform: scale(1.1);
}

.just-be-yourself-page .feather-icon {
    display: inline-block;
    color: #7dd3fc;
    font-size: 2.2rem;
    transition: color 0.3s ease;
}

.just-be-yourself-page .feather-container:hover .feather-icon {
    color: var(--identity-primary);
}

.just-be-yourself-page .fly-away {
    animation: flyUpFade 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

@keyframes flyUpFade {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    30% {
        transform: translateY(-20px) rotate(-10deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-300px) rotate(45deg) scale(0.3);
        opacity: 0;
    }
}

.just-be-yourself-page .fade-burden {
    transition: all 0.8s ease;
    cursor: help;
    padding: 0.5rem;
    border-radius: 4px;
}

.just-be-yourself-page .fade-burden:hover {
    opacity: 0.2;
    filter: blur(2px);
    transform: translateY(-2px);
}

.just-be-yourself-page .breaker-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.just-be-yourself-page .advice-card {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border: 2px dashed var(--identity-border);
    border-radius: 12px;
    color: #475569;
}

.just-be-yourself-page .advice-card p {
    margin: 0;
    line-height: 1.8;
}

/* Conclusion Box */
.just-be-yourself-page .conclusion-box {
    background: var(--identity-light);
    border-left: 5px solid var(--identity-primary);
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.just-be-yourself-page .conclusion-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--identity-secondary);
    text-align: center;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Sidebar Specifics */
.just-be-yourself-page .sidebar-advice {
    background: #fff;
    border: 1px solid var(--identity-border);
    border-radius: 12px;
    padding: 1.8rem;
}

.just-be-yourself-page .sidebar-advice .header {
    color: var(--identity-secondary);
    border-bottom: 2px solid var(--identity-border);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-weight: bold;
}

/* Sidebar Active Link */
.just-be-yourself-page .sidebar-nav-list li.active-link a {
    color: var(--identity-primary);
    background-color: var(--identity-light);
    border-left: 3px solid var(--identity-primary);
}

/* Footer Overrides */
.just-be-yourself-page .site-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    color: #64748b !important;
}
