117 lines
No EOL
3.9 KiB
HTML
117 lines
No EOL
3.9 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Eis Projekt</title>
|
||
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
</head>
|
||
|
||
|
||
<body>
|
||
|
||
<nav>
|
||
<div class="nav-logo">🍦 Eis Projekt</div>
|
||
<ul class="nav-links">
|
||
<li><a href="index.html">Home</a></li>
|
||
<li><a href="ueber_uns.html">Über uns</a></li>
|
||
<li><a href="eis_projekt.html">Projekt</a></li>
|
||
|
||
<!-- NEU -->
|
||
<li><a href="notenrechner.html">Notenrechner</a></li>
|
||
<li><a href="textanalyse.html">Textanalyse</a></li>
|
||
|
||
<li><a href="kontakt.html">Kontakt</a></li>
|
||
<li><a href="impressum.html">Impressum</a></li>
|
||
</ul>
|
||
<button id="dark-mode-toggle">🌙 Dark Mode</button>
|
||
</nav>
|
||
|
||
<div class="hero">
|
||
<div class="hero-content">
|
||
<div class="hero-tag">🌸EIS Projekt</div>
|
||
<h1>Das <span>süßeste</span><br>Projekt<br>Deutschlands.</h1>
|
||
<p>Hier findest du alle Infos, Bilder und Materialien zu unserem Eis-Projekt. Frisch, bunt und selbstgemacht.</p>
|
||
<div class="btn-group">
|
||
<a href="assets/projektinfo.pdf" target="_blank" class="btn-primary">📄 Projektinfo öffnen</a>
|
||
<a href="#galerie" class="btn-ghost">Galerie ansehen →</a>
|
||
</div>
|
||
</div>
|
||
<div class="hero-visual">
|
||
<div class="img-frame">
|
||
<img src="img/bild1.jpg" alt="Eis Projekt Bild">
|
||
<div class="img-badge">
|
||
<span class="badge-icon">🍦</span>
|
||
<div class="badge-text">
|
||
Unser Projekt
|
||
<span>Sommer 2026</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<section>
|
||
<div class="section-label">Auf einen Blick</div>
|
||
<h2 class="section-title">Was steckt dahinter?</h2>
|
||
<p class="section-sub">Unser Projekt verbindet Kreativität, Teamarbeit und natürlich eine große Portion Spaß.</p>
|
||
<div class="stats-row">
|
||
<div class="stat-card">
|
||
<span class="stat-num">12</span>
|
||
<span class="stat-label">Teammitglieder</span>
|
||
</div>
|
||
<div class="stat-card">
|
||
<span class="stat-num">8</span>
|
||
<span class="stat-label">Eissorten entwickelt</span>
|
||
</div>
|
||
<div class="stat-card">
|
||
<span class="stat-num">3</span>
|
||
<span class="stat-label">Wochen Arbeit</span>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section id="galerie">
|
||
<div class="section-label">Galerie</div>
|
||
<h2 class="section-title">Eindrücke vom Projekt</h2>
|
||
<p class="section-sub">Bilder aus dem Entstehungsprozess – von der ersten Idee bis zum fertigen Eis.</p>
|
||
<div class="gallery-grid">
|
||
<div class="gallery-card tall">
|
||
<img src="img/bild2.jpg" alt="Projektvorbereitung">
|
||
<div class="gallery-overlay"><span class="gallery-overlay-text">Vorbereitung</span></div>
|
||
</div>
|
||
<div class="gallery-col">
|
||
<div class="gallery-card">
|
||
<img src="img/bild1.jpg" alt="Eis herstellen">
|
||
<div class="gallery-overlay"><span class="gallery-overlay-text">Herstellung</span></div>
|
||
</div>
|
||
<div class="gallery-card">
|
||
<img src="img/bild2.jpg" alt="Ergebnis">
|
||
<div class="gallery-overlay"><span class="gallery-overlay-text">Ergebnis</span></div>
|
||
</div>
|
||
</div>
|
||
<div class="gallery-card tall">
|
||
<img src="img/bild2.jpg" alt="Präsentation">
|
||
<div class="gallery-overlay"><span class="gallery-overlay-text">Präsentation</span></div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="cta-section">
|
||
<div class="info-strip">
|
||
<div>
|
||
<h3>Alle Infos zum Projekt</h3>
|
||
<p>In unserem Projektinfo-Dokument findest du Hintergrundinfos, Rezepte und unsere Ergebnisse zum Nachlesen.</p>
|
||
</div>
|
||
<a href="assets/projektinfo.pdf" target="_blank" class="btn-white">📄 PDF öffnen</a>
|
||
</div>
|
||
</section>
|
||
|
||
<footer>
|
||
Gemacht mit <span>♥</span> · Eis Projekt 2026
|
||
</footer>
|
||
|
||
</body>
|
||
<script src="js/script.js"></script>
|
||
</html> |