/* Additional styles for journey page */

/* Journey Path Visualization */
.journey-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
    flex-wrap: wrap;
}

.journey-path:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
    transform: translateY(-50%);
}

.journey-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.journey-node:hover {
    transform: translateY(-5px);
}

.node-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 20, 40, 0.7);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.journey-node.active .node-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--light-text);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.node-label {
    font-weight: 600;
    text-align: center;
    max-width: 120px;
}

.journey-connection {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Phase Content Styling */
.phase-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.phase-content.reverse {
    flex-direction: row-reverse;
}

.phase-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phase-description {
    flex: 2;
}

.phase-points {
    margin: 20px 0;
}

.phase-points li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.point-icon {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.practice-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.practice-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.practice-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Spiral Diagram */
.spiral-diagram {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 30px 0;
}

.spiral-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, var(--primary-color), var(--dark-bg));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 0 30px var(--primary-color);
    z-index: 2;
}

.spiral-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate-spiral 30s linear infinite;
}

.spiral-marker {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(20, 20, 40, 0.7);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.spiral-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--secondary-color);
}

.marker-1 {
    top: 20%;
    left: 30%;
}

.marker-2 {
    top: 30%;
    right: 20%;
}

.marker-3 {
    bottom: 30%;
    right: 30%;
}

.marker-4 {
    bottom: 20%;
    left: 20%;
}

@keyframes rotate-spiral {
    from {transform: translate(-50%, -50%) rotate(0deg);}
    to {transform: translate(-50%, -50%) rotate(360deg);}
}

/* Phase Visuals */
.awakening-visual, .alignment-visual, .coherence-visual, .creation-visual,
.identity-visual, .manifestation-visual, .network-visual, .elevated-visual,
.hologram-visual, .architect-visual, .immunity-visual, .nature-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awakening-core, .alignment-core, .coherence-core, .creation-core,
.identity-core, .manifestation-core, .elevated-core, .hologram-inner,
.shield-inner, .nature-pattern {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--primary-color), var(--dark-bg));
    box-shadow: 0 0 30px var(--primary-color);
    animation: pulse 4s ease-in-out infinite alternate;
}

.awakening-rays, .alignment-field, .coherence-waves, .creation-aura,
.identity-layers, .manifestation-waves, .elevated-aura, .hologram-rays,
.shield-outer, .sacred-geometry-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: rotate-orbit 20s linear infinite;
}

.network-nodes, .network-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.network-nodes:before, .network-nodes:after,
.network-connections:before, .network-connections:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.network-nodes:before {
    top: 30%;
    left: 30%;
}

.network-nodes:after {
    bottom: 30%;
    right: 30%;
}

.network-connections:before {
    top: 30%;
    right: 30%;
}

.network-connections:after {
    bottom: 30%;
    left: 30%;
}

.network-connections:before, .network-connections:after {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Possibility Matrix */
.possibility-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.matrix-cell {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.matrix-cell:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.matrix-cell h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Possibility Benefits */
.possibility-benefits {
    margin: 20px 0;
}

.possibility-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.benefit-icon {
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .phase-content, .phase-content.reverse {
        flex-direction: column;
    }
    
    .phase-image {
        margin: 0 auto 30px;
    }
    
    .journey-path:before {
        display: none;
    }
    
    .journey-node {
        margin-bottom: 30px;
    }
    
    .journey-connection {
        display: none;
    }
    
    .spiral-diagram {
        height: 500px;
    }
    
    .possibility-matrix {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .spiral-marker {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .spiral-center {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .phase-points li, .possibility-benefits li {
        flex-direction: column;
    }
    
    .point-icon, .benefit-icon {
        margin-bottom: 10px;
    }
}
