/* Page-specific styles for synhix.html - following colorTXT patterns */

/* Content sections */
.content-section {
    padding: 2rem 0;
}

.content-paragraphs {
    max-width: 900px;
    margin: 4rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.content-paragraphs h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #667eea;
    padding-bottom: 1rem;
}

.intro {
    margin-bottom: 2rem;
}

.content-paragraphs .intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.paragraph-section {
    margin: 2rem 0;
}

.paragraph-section:last-child {
    margin-bottom: 0;
}

.paragraph-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.paragraph-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Synhix logo styling */
.synhix-logo {
    font-weight: bold;
    color: #667eea;
    font-family: inherit;
}

.slogan-sub {
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Hero CTA button */
.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Demo section for Synhix */
.demo-section-synhix {
    margin: 4rem 0;
    text-align: center;
}

.demo-section-synhix h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}
/*
.color-demo {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}
*/
.color-demo {
    background: #f8f9fa; /* Replace the gradient with one of the options above */
    color: #333; /* Change text color to dark for contrast */
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Adjust shadow */
}
.demo-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.demo-explanation {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Color coding for demo text */
.noun { color: #333; }
.verb { color: #4CAF50; font-weight: 500; }
.proper-noun { color: #f44336; font-weight: 500; }
.number { color: #2196F3; font-weight: 500; }
.common-word { color: #999; }
.quote { 
    background: rgba(255, 255, 255, 0.7); 
    padding: 2px 4px; 
    border-radius: 3px; 
    color: #333;
}

/* Features grid */
/*
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    line-height: 1.6;
}
*/
.feature-card {
    background: #faf9ff; /* Replace gradient with light option */
    color: #333; /* Change to dark text */
    border: 1px solid #e9ecef; /* Add subtle border */
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Adjust shadow */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Adjust hover shadow */
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333; /* Ensure headings are dark */
}

.feature-card p {
    line-height: 1.6;
    color: #555; /* Slightly lighter for body text */
}
/* Themes section */
.themes-section {
    margin: 3rem 0;
}

.themes-section h3 {
    color: #667eea;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

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

.theme-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.theme-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.theme-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Stats section */
.stats-section {
    margin: 4rem 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Privacy section */
.privacy-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #28a745;
}

.privacy-section h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-section li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Action block dark - following colorTXT pattern */
.action-block-dark {
    max-width: 800px;
    margin: 4rem auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.4);
}

.dark-block-title {
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.dark-block-text {
    color: #bdc3c7;
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.6;
}

.dark-block-text a {
    color: #3498db;
    text-decoration: none;
}

.dark-block-text a:hover {
    text-decoration: underline;
}

/* Experience CTA section - following colorTXT pattern */
.experience-cta {
    max-width: 800px;
    margin: 4rem auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.4);
}

.experience-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.experience-cta p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Developer info section */
.developer-info {
    max-width: 600px;
    margin: 3rem auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.developer-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.developer-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Animation classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-section-synhix h2 {
        font-size: 2rem;
    }
    
    .stats-section h2 {
        font-size: 2rem;
    }
    
    .content-paragraphs {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .content-section {
        padding: 1rem 0;
    }

    .experience-cta {
        padding: 2rem;
        margin: 3rem auto;
    }

    .experience-cta h3 {
        font-size: 1.8rem;
    }

    .experience-cta p {
        font-size: 1.2rem;
    }
    
    .action-block-dark {
        padding: 2rem;
        margin: 3rem auto;
    }
    
    .action-block-dark h3 {
        font-size: 1.8rem;
    }
    
    .action-block-dark p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1rem 0;
    }
    
    .content-paragraphs {
        margin: 2rem 0;
        padding: 1rem;
    }
    
    .slogan-sub {
        font-size: 1rem;
    }

    .experience-cta {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .experience-cta h3 {
        font-size: 1.5rem;
    }

    .experience-cta p {
        font-size: 1rem;
    }
    
    .action-block-dark {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .action-block-dark h3 {
        font-size: 1.5rem;
    }
    
    .action-block-dark p {
        font-size: 1rem;
    }
    
    .demo-text {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}