Redesign footer: 4-column grid, partners section (OC Guy, OCA Paraguay, OD8N), brass top rule, partner cards

This commit is contained in:
2026-08-22 12:45:41 +00:00
parent 5ddb142c8f
commit a003054781
2 changed files with 63 additions and 10 deletions
+8 -2
View File
@@ -446,10 +446,17 @@
<li><a href="support.html">Support</a></li> <li><a href="support.html">Support</a></li>
<li><a href="legal.html">Legal</a></li> <li><a href="legal.html">Legal</a></li>
<li><a href="/contactus">Contact us</a></li> <li><a href="/contactus">Contact us</a></li>
<li>Partner: <a href="https://OD8N.com">OD8N</a></li>
</ul> </ul>
</div> </div>
<div> <div>
<h4>Partners</h4>
<div class="partner-list">
<a href="https://oc-guy.com" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OC Guy</a>
<a href="https://oca-py.org" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OCA Paraguay</a>
<a href="https://OD8N.com" target="_blank" rel="noopener" class="partner-item"><i class="fas fa-handshake"></i> OD8N</a>
</div>
</div>
<div class="fcol-desc">
<h4>About us</h4> <h4>About us</h4>
<p>We build smart, scalable business solutions by combining the <strong>stability</strong> of Odoo ERP with the <strong>power</strong> of AI and N8N automation.</p> <p>We build smart, scalable business solutions by combining the <strong>stability</strong> of Odoo ERP with the <strong>power</strong> of AI and N8N automation.</p>
<p>From streamlined sales to global rollouts, our <strong>lean, eco-friendly</strong> approach helps businesses cut costs, boost efficiency, and grow without limits.</p> <p>From streamlined sales to global rollouts, our <strong>lean, eco-friendly</strong> approach helps businesses cut costs, boost efficiency, and grow without limits.</p>
@@ -458,7 +465,6 @@
<h4>Follow us on</h4> <h4>Follow us on</h4>
<div class="social"> <div class="social">
<a href="https://www.linkedin.com/company/odoo4projects/" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a> <a href="https://www.linkedin.com/company/odoo4projects/" target="_blank" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="/" target="_blank" aria-label="Home"><i class="fas fa-home"></i></a>
<a href="https://www.youtube.com/@ODOO4projects" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a> <a href="https://www.youtube.com/@ODOO4projects" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
</div> </div>
</div> </div>
+55 -8
View File
@@ -850,22 +850,38 @@ img { max-width: 100%; height: auto; vertical-align: middle; }
.footer { .footer {
background: var(--midnight); background: var(--midnight);
color: rgba(255,255,255,0.8); color: rgba(255,255,255,0.8);
padding-top: 3rem; padding-top: 3.5rem;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0; left: 10%; right: 10%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--brass), transparent);
opacity: 0.4;
} }
.fgrid { .fgrid {
display: grid; display: grid;
grid-template-columns: 1.5fr 3fr 3.5fr; grid-template-columns: 1.2fr 1.4fr 2.2fr 1.2fr;
gap: 2rem; gap: 2rem;
padding-bottom: 2rem; padding-bottom: 2.5rem;
border-bottom: 1px solid var(--line-brass); border-bottom: 1px solid var(--line-brass);
} }
.footer h4 { font-family: Marcellus, Georgia, serif; color: #fff; margin-bottom: 0.8rem; font-size: 1rem; } .footer h4 {
font-family: Marcellus, Georgia, serif;
color: #fff;
margin-bottom: 0.8rem;
font-size: 1rem;
letter-spacing: 0.03em;
}
.footer ul { list-style: none; padding: 0; } .footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.3rem; } .footer li { margin-bottom: 0.3rem; }
.footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; } .footer a { color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: none; }
.footer a:hover { color: var(--brass); } .footer a:hover { color: var(--brass); }
.footer p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; } .footer p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.7; }
.footer strong { color: #fff; } .footer strong { color: #fff; font-weight: 500; }
.footer .fcol-desc p { font-size: 0.88rem; line-height: 1.75; }
.footer .social a { .footer .social a {
display: inline-flex; align-items: center; justify-content: center; display: inline-flex; align-items: center; justify-content: center;
width: 2.5rem; height: 2.5rem; border-radius: 50%; width: 2.5rem; height: 2.5rem; border-radius: 50%;
@@ -874,10 +890,41 @@ img { max-width: 100%; height: auto; vertical-align: middle; }
margin-right: 0.3rem; transition: all 0.2s; margin-right: 0.3rem; transition: all 0.2s;
} }
.footer .social a:hover { background: var(--brass); color: var(--midnight); } .footer .social a:hover { background: var(--brass); color: var(--midnight); }
.fcopy { padding: 1rem 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); } .footer .partner-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer .partner-item {
display: flex; align-items: center; gap: 0.6rem;
padding: 0.5rem 0.75rem;
border: 1px solid var(--line-brass);
border-radius: var(--radius);
transition: all 0.25s;
color: rgba(255,255,255,0.65);
font-size: 0.85rem;
text-decoration: none;
}
.footer .partner-item:hover {
border-color: var(--brass);
background: rgba(201,162,39,0.06);
color: var(--brass-bright);
}
.footer .partner-item i {
font-size: 0.9rem;
color: var(--brass);
opacity: 0.7;
width: 1.2rem;
text-align: center;
}
.fcopy {
padding: 1.25rem 0;
text-align: center;
font-size: 0.82rem;
color: rgba(255,255,255,0.35);
}
.fcopy a { color: rgba(255,255,255,0.4); }
.fcopy a:hover { color: var(--brass); }
@media (max-width: 768px) { @media (max-width: 768px) {
.fgrid { grid-template-columns: 1fr; } .fgrid { grid-template-columns: 1fr; }
.footer { padding-bottom: 5rem; } .footer { padding-top: 2.5rem; padding-bottom: 5rem; }
.footer .partner-list { flex-direction: row; flex-wrap: wrap; }
} }
/* ---- Blog post pages (legacy dark — maintain backward compatibility) ---- */ /* ---- Blog post pages (legacy dark — maintain backward compatibility) ---- */