/* Updated Hero Section Styles */
body {
    background-color: #0A0A0A;
    padding-top: 0 !important; /* Override the padding set for fixed header */
}

header {
    background-color: transparent !important;
}

.hero {
    text-align: center;
    padding: 100px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-logo {
    margin-bottom: 0.5rem;
}

.hero-logo img {
    width: 100px;
    height: auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 900px;
    color: #3B82F6;
    line-height: 1.2;
}

/* Search container styles moved to styles.css */

.example-apps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.example {
    padding: 0.8rem 1.5rem;
    background-color: #111827;
    border: 1px solid #1F2937;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.example:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-logo img {
        width: 100px;
    }
    
    .search-container {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .example-apps {
        flex-direction: column;
        align-items: center;
    }
    
    .example {
        width: 80%;
    }
} 