/* Manifesto Page Specific Styles */

.manifesto-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow-x: hidden;
}

/* Hero Section */
.manifesto-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.manifesto-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(116, 185, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(116, 185, 255, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-5px); }
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-elements > div {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.floating-boat {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-wind {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-wave {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-compass {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Manifesto Content */
.manifesto-content {
    padding: 4rem 2rem;
    position: relative;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Manifesto Blocks */
.manifesto-block {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.manifesto-block.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.block-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.block-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.manifesto-block:hover .block-content::before {
    left: 100%;
}

/* Opening Block */
.opening-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
}

.opening-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: #74b9ff;
    opacity: 0.6;
}

/* Problem Block */
.emphasis {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #74b9ff;
    font-weight: 600;
    margin: 1.5rem 0;
}

.problem-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.highlight-tag {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Journey Block */
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #74b9ff;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.timeline-marker {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Vision Block */
.vision-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #fdcb6e;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(253, 203, 110, 0.4);
}

.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

/* Community Block */
.community-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.principle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.principle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.principle-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.principle p {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.mindset-text {
    color: #00b894 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
}

/* Evolution Block */
.evolution-highlight {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1), rgba(108, 92, 231, 0.1));
    border: 2px solid rgba(116, 185, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.evolution-highlight p {
    color: #74b9ff;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* Invitation Block */
.pioneer-highlight {
    background: linear-gradient(135deg, rgba(253, 203, 110, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(253, 203, 110, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.pioneer-highlight p {
    color: #fdcb6e;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
}

/* Closing Block */
.closing-message {
    text-align: center;
    margin-bottom: 3rem;
}

.closing-message h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.signature {
    text-align: right;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-name {
    font-size: 1.3rem;
    color: #74b9ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.signature-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.final-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.download-manifesto-btn {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(116, 185, 255, 0.3);
}

.download-manifesto-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(116, 185, 255, 0.4);
}

.back-home-btn {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

/* Interactive Elements */
.interactive-element {
    text-align: center;
    margin-top: 2rem;
}

.continue-btn {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.3);
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 184, 148, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .manifesto-hero {
        padding: 2rem 1rem;
    }
    
    .manifesto-content {
        padding: 2rem 1rem;
    }
    
    .block-content {
        padding: 2rem;
    }
    
    .vision-features {
        grid-template-columns: 1fr;
    }
    
    .problem-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .principle {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .manifesto-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .block-content {
        padding: 1.5rem;
    }
    
    .opening-text {
        font-size: 1.3rem;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .closing-message h2 {
        font-size: 1.8rem;
    }
} 