37 lines
1.8 KiB
PHP
37 lines
1.8 KiB
PHP
<section class="py-20 px-4">
|
|
<div class="max-w-7xl mx-auto">
|
|
<div class="text-center mb-16">
|
|
<h2 class="text-4xl lg:text-5xl font-light text-foreground mb-6">
|
|
Unsere <span class="text-secondary">Werte</span>
|
|
</h2>
|
|
<p class="text-muted-foreground text-lg max-w-2xl mx-auto">
|
|
Diese fünf Grundpfeiler leiten unser tägliches Handeln und definieren,
|
|
wer wir als Unternehmen sind und wofür wir stehen.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
@foreach($this->values as $index => $value)
|
|
<div class="group {{ $index === 4 ? 'md:col-span-2 lg:col-span-1 lg:col-start-2' : '' }}">
|
|
<div class="card-elevated p-8 rounded-3xl h-full hover:scale-105 transition-all duration-300 relative overflow-hidden">
|
|
<div class="text-center space-y-6">
|
|
<div class="text-5xl mb-4">{{ $value['icon'] }}</div>
|
|
|
|
<h3 class="text-2xl font-semibold text-foreground">
|
|
{{ $value['title'] }}
|
|
</h3>
|
|
|
|
<div class="w-12 h-px bg-secondary mx-auto"></div>
|
|
|
|
<p class="text-muted-foreground leading-relaxed">
|
|
{{ $value['description'] }}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="absolute bottom-0 left-0 right-0 h-1 bg-gradient-to-r from-secondary/20 via-secondary to-secondary/20 transform scale-x-0 group-hover:scale-x-100 transition-transform duration-300"></div>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</section>
|