workshops

This commit is contained in:
Oliver
2025-09-25 11:37:41 -03:00
parent ef82235057
commit 859840c63e
2 changed files with 247 additions and 0 deletions

View File

@@ -187,6 +187,100 @@
</header> </header>
<!-- Startup Workshops -->
<section id="workshops" class="workshops">
<h2 class="section-header">Startup Workshops</h2>
<p class="section-subtitle">
We bring your business from zero to ERP and AI in just three months:
</p>
<ul class="workshop-highlights">
<li><strong>6 interactive 2-hour sessions</strong> with our expert instructors</li>
<li><strong>Hands-on topics:</strong> "First Configuration ODOO", "Sales Module", "Build your Website with ODOO", "CRM", "Automations with AI and N8N"</li>
<li><strong>Practical system setup:</strong> Work directly on your ERP so you see real results immediately</li>
<li><strong>Free tools included:</strong> ODOO and N8N for one year</li>
<li><strong>Exclusive alumni chat group:</strong> Stay connected, share tips, and get support</li>
</ul>
<div class="workshop-list container">
<div class="workshop">
<div class="badge next">Next</div>
<h3>Class Q1/2026</h3>
<p><strong>Language:</strong> German</p>
<p><strong>Places available:</strong> 4</p>
<a href="/agenda/q1-2026.pdf" class="agenda-link">Download Agenda</a>
<div class="workshop-action">
<span class="price">$450.00 <br> per Person</span>
<a href="https://002-001-5dd6e535-4d1c-46bc-9bd9-42ad4bc5f082.odoo4projects.com/form/2e3ee881-a9fd-49d4-83de-40c87f397e91?class=Q1-2026"
target="_blank"
class="btn-secondary">
Book Now
</a>
</div>
</div>
<div class="workshop">
<h3>Class Q2/2026</h3>
<p><strong>Language:</strong> English</p>
<p><strong>Places available:</strong> 5</p>
<a href="/agenda/q2-2026.pdf" class="agenda-link">Download Agenda</a>
<div class="workshop-action">
<span class="price">$450.00 <br> per Person</span>
<a href="https://002-001-5dd6e535-4d1c-46bc-9bd9-42ad4bc5f082.odoo4projects.com/form/2e3ee881-a9fd-49d4-83de-40c87f397e91?class=Q2-2026"
target="_blank"
class="btn-secondary">
Book Now
</a>
</div>
</div>
<div class="workshop">
<h3>Class Q3/2026</h3>
<p><strong>Language:</strong> German</p>
<p><strong>Places available:</strong> 6</p>
<a href="/agenda/q3-2026.pdf" class="agenda-link">Download Agenda</a>
<div class="workshop-action">
<span class="price">$450.00 <br> per Person</span>
<a href="https://002-001-5dd6e535-4d1c-46bc-9bd9-42ad4bc5f082.odoo4projects.com/form/2e3ee881-a9fd-49d4-83de-40c87f397e91?class=Q3-2026"
target="_blank"
class="btn-secondary">
Book Now
</a>
</div>
</div>
<div class="workshop">
<h3>Class Q4/2026</h3>
<p><strong>Language:</strong> English</p>
<p><strong>Places available:</strong> 6</p>
<a href="/agenda/q4-2026.pdf" class="agenda-link">Download Agenda</a>
<div class="workshop-action">
<span class="price">$450.00 <br> per Person</span>
<a href="https://002-001-5dd6e535-4d1c-46bc-9bd9-42ad4bc5f082.odoo4projects.com/form/2e3ee881-a9fd-49d4-83de-40c87f397e91?class=Q4-2026"
target="_blank"
class="btn-secondary">
Book Now
</a>
</div>
</div>
</div>
</section>
<!-- Product Packages --> <!-- Product Packages -->
<section id="packages" class="packages"> <section id="packages" class="packages">
<h2 class="section-header">Service Packs</h2> <h2 class="section-header">Service Packs</h2>

View File

@@ -901,3 +901,156 @@ footer a:hover {
.blog-teaser > [class*="-tag"]:hover { .blog-teaser > [class*="-tag"]:hover {
opacity: 0.9; opacity: 0.9;
} }
/* Workshops */
.workshops {
text-align: center;
margin-top: 50px;
}
.workshops .section-subtitle {
font-size: 1.1rem;
font-weight: 500;
color: #555;
margin-bottom: 1rem;
}
.workshop-highlights {
list-style: none;
padding-left: 0;
margin-top: 0;
color: #7a5a40; /* warm tone for consistency with workshop theme */
font-size: 0.95rem;
line-height: 1.6;
}
.workshop-highlights li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.75rem;
}
.workshop-highlights li::before {
content: "✓"; /* checkmark for a positive, actionable feel */
position: absolute;
left: 0;
color: #ff7a00; /* warm accent matching Buy Now button */
font-weight: bold;
}
.workshops .workshop-list {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 15px;
}
.workshops .workshop {
background: #fff8f0; /* soft peach background */
border: 1px solid #ffd8b5; /* warm border */
border-radius: 8px;
padding: var(--spacing-lg) var(--spacing-md);
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 20%;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform 0.3s;
margin-bottom: 10px;
text-align: left;
}
.workshops .workshop:hover {
transform: translateY(-5px);
box-shadow: rgba(255, 165, 50, 0.25) 0px 20px 40px -10px,
rgba(0, 0, 0, 0.15) 0px 10px 20px -10px;
}
.workshops .workshop h3 {
font-size: 1.25rem;
margin-bottom: var(--spacing-sm);
color: #ff7a00; /* warm heading color */
}
.workshops .workshop p {
color: #7a5a40; /* dark warm tone for text */
font-size: 0.95rem;
margin-bottom: var(--spacing-md);
line-height: 1.5;
}
.workshops .btn-secondary {
margin-top: 1rem;
align-self: start;
background-color: #ff7a00; /* button warm accent */
color: #fff;
border: none;
padding: 0.5rem 1rem;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
.workshops .btn-secondary:hover {
background-color: #e56a00;
}
/* Optional: Featured Workshop Styling */
.workshops .workshop.featured {
border: 1px solid #ff7a00;
background-color: #fff0e0;
}
.workshops .workshop .badge {
position: absolute;
top: -12px;
left: 16px;
background-color: #ff7a00;
color: #fff;
padding: 4px 12px;
font-size: 0.75rem;
font-weight: 600;
border-radius: 12px;
}
/* Workshop Download Agenda Link */
.workshops .agenda-link {
display: inline-block;
margin-bottom: 1rem;
color: #ff7a00; /* warm accent color */
text-decoration: none; /* remove default underline */
font-weight: 600; /* slightly bold */
font-size: 0.95rem;
transition: color 0.3s, text-decoration 0.3s;
cursor: pointer;
}
.workshops .agenda-link:hover {
color: #e56a00; /* darker warm tone on hover */
text-decoration: underline; /* add underline on hover */
}
/* Workshop Action Area */
.workshops .workshop-action {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1rem;
gap: 1rem;
}
.workshops .workshop-action .price {
font-size: 1.2rem;
font-weight: bold;
color: #ff7a00; /* warm accent to match workshop theme */
}
.workshops .workshop-action .btn-secondary {
flex-shrink: 0;
}
a.btn-secondary {
display: inline-block;
text-align: center;
text-decoration: none;
cursor: pointer;
}