/* Convivium AI Agent App Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F5F5;
}

a {
    color: #FB8C00;
    text-decoration: none;
}

a:hover {
    color: #FF9800;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #FB8C00 0%, #FF9800 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

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

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

.nav-links a:hover {
    color: #FFEB3B;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FB8C00 0%, #FF9800 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* App Store Badges */
.app-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255,235,59,0.2);
    border: 2px solid rgba(255,235,59,0.4);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.badge:hover {
    background: rgba(255,235,59,0.3);
    transform: translateY(-2px);
    border-color: rgba(255,235,59,0.6);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FB8C00;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(251,140,0,0.1);
    transition: transform 0.3s;
    border-top: 3px solid #FFEB3B;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(251,140,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FB8C00;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FB8C00;
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #FB8C00;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #FF9800;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #666;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

.summary-box {
    background-color: #FFF8E1;
    border: 1px solid #FFECB3;
    border-left: 5px solid #FFC107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.summary-box h3 {
    color: #FFA000;
    margin-top: 0;
}

.summary-box ul {
    padding-left: 1.5rem;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.highlight {
    background: linear-gradient(135deg, #FB8C00 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}