/* Custom styles for Onnova Theme */

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}

footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-logo strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #aaa;
    max-width: 300px;
}

.footer-links a, .footer-social a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-social a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
