/* NEWSLOGIC Epic Inspiration - SEO Optimized Styles */

/* Skip to main content for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-to-main:focus {
    top: 6px;
}

/* Container and basic layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0cc0df;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0cc0df;
}

/* Main content spacing */
main {
    margin-top: 80px;
}

/* Epic Hero Section */
.epic-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(12, 192, 223, 0.5); }
    to { box-shadow: 0 0 40px rgba(12, 192, 223, 0.8); }
}

.epic-title {
    font-size: 4rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.news-text {
    color: #0cc0df;
}

.logic-text {
    color: #f5f5dc;
}

.inspiration-text {
    display: block;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-top: 1rem;
}

.epic-subtitle {
    font-size: 1.5rem;
    color: #32cd32;
    margin: 1rem 0;
}

.epic-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Section styles */
.vision-section,
.manifesto-section,
.revolutionary-features,
.revolution-cta {
    padding: 4rem 0;
    background: #0a0a0a;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0cc0df;
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card {
    background: rgba(12, 192, 223, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(12, 192, 223, 0.3);
}

.vision-card h3 {
    color: #32cd32;
    margin-bottom: 1rem;
}

/* Manifesto Section */
.manifesto-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff6b35;
}

.epic-quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #0cc0df;
    margin: 2rem 0;
    border-left: 4px solid #0cc0df;
    padding-left: 2rem;
}

.manifesto-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Revolutionary Features */
.features-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(50, 205, 50, 0.1);
    border-left: 4px solid #32cd32;
}

.timeline-item h3 {
    color: #32cd32;
    margin-bottom: 1rem;
}

/* CTA Section */
.revolution-cta {
    text-align: center;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-epic {
    background: #ff6b35;
    color: white;
}

.btn-epic:hover {
    background: #e55530;
    transform: translateY(-2px);
}

.btn-wisdom {
    background: transparent;
    color: #0cc0df;
    border: 2px solid #0cc0df;
}

.btn-wisdom:hover {
    background: #0cc0df;
    color: #0a0a0a;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 3rem 0;
    border-top: 1px solid rgba(12, 192, 223, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0cc0df;
}

.footer-tagline {
    color: #32cd32;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: #0cc0df;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #32cd32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .epic-title {
        font-size: 2.5rem;
    }
    
    .inspiration-text {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        gap: 2rem;
    }
}
