/* /assets/css/marketing.css - Updated with AxiaBA Brand Guidelines */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/AxiaBA-Umbrella.png') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 256px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background-color: #6366f1;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    display: inline-block;
}

.cta-button:hover {
    background-color: #5855eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6366f1;
    border-radius: 2px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
    border-color: #a5b4fc;
}

.feature-item img {
    width: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6366f1;
    border-radius: 2px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.benefit-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    text-align: center;
}

.screenshots-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

.screenshots-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6366f1;
    border-radius: 2px;
}

.screenshots-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshots-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshots-container img:hover {
    transform: translateY(-4px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6366f1;
    border-radius: 2px;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.testimonial-item p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-item h4 {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #6366f1 100%);
    color: #fff;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section .cta-button {
    background-color: #fff;
    color: #6366f1;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-section .cta-button:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    margin: 0 10px;
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-social a {
    margin: 0 5px;
    color: #a5b4fc;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

/* Status Colors for Additional Elements */
.btn-success {
    background-color: #10b981;
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

.btn-warning {
    background-color: #f59e0b;
    color: white;
}

.btn-warning:hover {
    background-color: #d97706;
}

.btn-error {
    background-color: #ef4444;
    color: white;
}

.btn-error:hover {
    background-color: #dc2626;
}

.btn-info {
    background-color: #3b82f6;
    color: white;
}

.btn-info:hover {
    background-color: #2563eb;
}

.btn-outline {
    background-color: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background-color: #6366f1;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .features-container,
    .benefits-container,
    .screenshots-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}