{item.name}
+{item.text}
+ → +diff --git a/parfum-shop/public/BLASSE SEIDE.png b/parfum-shop/public/BLASSE SEIDE.png new file mode 100644 index 0000000..1dc446f Binary files /dev/null and b/parfum-shop/public/BLASSE SEIDE.png differ diff --git a/parfum-shop/public/DISCOVERYSET.png b/parfum-shop/public/DISCOVERYSET.png new file mode 100644 index 0000000..52df3b0 Binary files /dev/null and b/parfum-shop/public/DISCOVERYSET.png differ diff --git a/parfum-shop/public/HERO.jpeg b/parfum-shop/public/HERO.jpeg new file mode 100644 index 0000000..08924d8 Binary files /dev/null and b/parfum-shop/public/HERO.jpeg differ diff --git a/parfum-shop/public/KALTER BETON.png b/parfum-shop/public/KALTER BETON.png new file mode 100644 index 0000000..5cb7db8 Binary files /dev/null and b/parfum-shop/public/KALTER BETON.png differ diff --git a/parfum-shop/public/NASSER MARMOR.png b/parfum-shop/public/NASSER MARMOR.png new file mode 100644 index 0000000..4b3b3c2 Binary files /dev/null and b/parfum-shop/public/NASSER MARMOR.png differ diff --git a/parfum-shop/public/SCHWARZES BENZIN.png b/parfum-shop/public/SCHWARZES BENZIN.png new file mode 100644 index 0000000..116a324 Binary files /dev/null and b/parfum-shop/public/SCHWARZES BENZIN.png differ diff --git a/parfum-shop/public/VERBRANNTES CHROM.png b/parfum-shop/public/VERBRANNTES CHROM.png new file mode 100644 index 0000000..d5be92e Binary files /dev/null and b/parfum-shop/public/VERBRANNTES CHROM.png differ diff --git a/parfum-shop/public/WEISSE ASCHE.png b/parfum-shop/public/WEISSE ASCHE.png new file mode 100644 index 0000000..7baf6b0 Binary files /dev/null and b/parfum-shop/public/WEISSE ASCHE.png differ diff --git a/parfum-shop/src/App.css b/parfum-shop/src/App.css index f90339d..ac4291c 100644 --- a/parfum-shop/src/App.css +++ b/parfum-shop/src/App.css @@ -1,184 +1,329 @@ -.counter { - font-size: 16px; - padding: 5px 10px; - border-radius: 5px; - color: var(--accent); - background: var(--accent-bg); - border: 2px solid transparent; - transition: border-color 0.3s; - margin-bottom: 24px; - - &:hover { - border-color: var(--accent-border); - } - &:focus-visible { - outline: 2px solid var(--accent); - outline-offset: 2px; - } +.page { + min-height: 100vh; + background: #efefef; + color: #1f1f1f; } +/* HERO */ .hero { position: relative; - - .base, - .framework, - .vite { - inset-inline: 0; - margin: 0 auto; - } - - .base { - width: 170px; - position: relative; - z-index: 0; - } - - .framework, - .vite { - position: absolute; - } - - .framework { - z-index: 1; - top: 34px; - height: 28px; - transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg) - scale(1.4); - } - - .vite { - z-index: 0; - top: 107px; - height: 26px; - width: auto; - transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg) - scale(0.8); - } + min-height: 720px; + margin: 20px; + border-radius: 0 0 18px 18px; + overflow: hidden; + background-image: url("/HERO.jpeg"); + background-size: cover; + background-position: center; } -#center { +.hero-overlay { + position: absolute; + inset: 0; + background: + linear-gradient(to right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1)), + linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45)); +} + +.navbar { + position: relative; + z-index: 2; + display: flex; + justify-content: center; + padding-top: 22px; +} + +.nav-pill { + display: flex; + gap: 10px; + padding: 8px 10px; + border-radius: 999px; + background: rgba(255, 255, 255, 0.15); + backdrop-filter: blur(10px); +} + +.nav-link { + text-decoration: none; + color: rgba(255, 255, 255, 0.88); + font-size: 13px; + padding: 8px 14px; + border-radius: 999px; + transition: 0.2s ease; +} + +.nav-link:hover, +.nav-link.active { + background: rgba(255, 255, 255, 0.22); +} + +.hero-content { + position: relative; + z-index: 2; + max-width: 460px; + padding: 120px 0 0 38px; + color: white; +} + +.eyebrow { + margin-bottom: 16px; + font-size: 12px; + letter-spacing: 0.18em; + opacity: 0.85; +} + +.hero h1 { + margin: 0 0 18px; + font-size: 62px; + line-height: 0.95; + font-weight: 300; + letter-spacing: -0.04em; + color: white; +} + +.hero-text { + max-width: 320px; + font-size: 15px; + line-height: 1.5; + color: rgba(255, 255, 255, 0.85); +} + +.hero-actions { + display: flex; + gap: 12px; + margin-top: 28px; +} + +.btn { + border: none; + border-radius: 999px; + padding: 12px 18px; + font-size: 14px; + cursor: pointer; + transition: transform 0.2s ease, opacity 0.2s ease; +} + +.btn:hover { + transform: translateY(-1px); +} + +.btn-primary { + background: #ff6a00; + color: white; +} + +.btn-secondary { + background: rgba(255, 255, 255, 0.15); + color: white; + backdrop-filter: blur(8px); +} + +/* SECTIONS */ +.section { + padding: 28px 20px 10px; +} + +.section-heading { + margin-bottom: 28px; +} + +.section-heading h2, +.discovery-copy h2 { + margin: 0; + font-size: 52px; + line-height: 0.95; + font-weight: 300; + letter-spacing: -0.04em; + color: #1d1d1d; +} + +/* GRID */ +.product-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 18px; +} + +.product-card { + background: #f5f5f5; + border: 1px solid #d9d9d9; + border-radius: 18px; + padding: 18px; + min-height: 360px; display: flex; flex-direction: column; - gap: 25px; - place-content: center; - place-items: center; - flex-grow: 1; - - @media (max-width: 1024px) { - padding: 32px 20px 24px; - gap: 18px; - } + justify-content: space-between; } -#next-steps { +.product-top { display: flex; - border-top: 1px solid var(--border); - text-align: left; - - & > div { - flex: 1 1 0; - padding: 32px; - @media (max-width: 1024px) { - padding: 24px 20px; - } - } - - .icon { - margin-bottom: 16px; - width: 22px; - height: 22px; - } - - @media (max-width: 1024px) { - flex-direction: column; - text-align: center; - } + justify-content: space-between; + align-items: flex-start; + gap: 12px; } -#docs { - border-right: 1px solid var(--border); - - @media (max-width: 1024px) { - border-right: none; - border-bottom: 1px solid var(--border); - } +.product-id { + font-size: 18px; + color: #5f5f5f; } -#next-steps ul { - list-style: none; - padding: 0; +.product-top h3 { + margin: 0; + font-size: 18px; + font-weight: 400; + text-align: right; + letter-spacing: 0.02em; +} + +.product-image-wrap { display: flex; - gap: 8px; - margin: 32px 0 0; - - .logo { - height: 18px; - } - - a { - color: var(--text-h); - font-size: 16px; - border-radius: 6px; - background: var(--social-bg); - display: flex; - padding: 6px 12px; - align-items: center; - gap: 8px; - text-decoration: none; - transition: box-shadow 0.3s; - - &:hover { - box-shadow: var(--shadow); - } - .button-icon { - height: 18px; - width: 18px; - } - } - - @media (max-width: 1024px) { - margin-top: 20px; - flex-wrap: wrap; - justify-content: center; - - li { - flex: 1 1 calc(50% - 8px); - } - - a { - width: 100%; - justify-content: center; - box-sizing: border-box; - } - } + justify-content: center; + align-items: center; + min-height: 180px; + padding: 20px 0; + width: 100%; + overflow: hidden; } -#spacer { - height: 88px; - border-top: 1px solid var(--border); - @media (max-width: 1024px) { - height: 48px; - } +.product-image { + width: 100%; + max-width: 600px; + height: auto; + object-fit: contain; + border-radius: 10px; } -.ticks { +.product-bottom { + display: flex; + justify-content: space-between; + align-items: flex-end; + gap: 12px; +} + +.product-bottom p { + margin: 0; + max-width: 170px; + font-size: 15px; + line-height: 1.35; + color: #444; +} + +.arrow { + font-size: 26px; + color: #ff6a00; + line-height: 1; +} + +/* DISCOVERY */ +.discovery-section { + display: grid; + grid-template-columns: 600px 1fr; + gap: 28px; + align-items: center; + padding: 40px 20px 50px; +} + +.discovery-copy h2 { + margin: 0; + font-size: 42px; + line-height: 0.95; + font-weight: 300; + letter-spacing: -0.04em; + color: #1d1d1d; +} + +.discovery-copy p { + margin-top: 18px; + font-size: 15px; + line-height: 1.5; + color: #555; +} + +.discovery-banner { position: relative; width: 100%; + max-width: 1300px; + height: 340px; + border-radius: 20px; + overflow: hidden; +} - &::before, - &::after { - content: ''; - position: absolute; - top: -4.5px; - border: 5px solid transparent; +.discovery-banner img { + width: 100%; + height: 100%; + object-fit: cover; + display: block; +} + +.banner-btn { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + border: none; + border-radius: 999px; + padding: 12px 18px; + background: rgba(255, 255, 255, 0.22); + color: white; + backdrop-filter: blur(10px); + cursor: pointer; +} + +/* RESPONSIVE */ +@media (max-width: 900px) { + .hero { + min-height: 620px; } - &::before { - left: 0; - border-left-color: var(--border); + .hero-content { + padding: 90px 24px 40px; } - &::after { - right: 0; - border-right-color: var(--border); + + .hero h1, + .section-heading h2, + .discovery-copy h2 { + font-size: 42px; + } + + .product-grid { + grid-template-columns: repeat(2, 1fr); + } + + .discovery-section { + grid-template-columns: 1fr; } } + +@media (max-width: 640px) { + .hero { + margin: 12px; + min-height: 540px; + } + + .nav-pill { + gap: 4px; + padding: 6px; + } + + .nav-link { + padding: 8px 10px; + font-size: 12px; + } + + .hero h1, + .section-heading h2, + .discovery-copy h2 { + font-size: 34px; + } + + .hero-actions { + flex-direction: column; + align-items: flex-start; + } + + .product-grid { + grid-template-columns: 1fr; + } + + .product-card { + min-height: 320px; + } +} \ No newline at end of file diff --git a/parfum-shop/src/App.jsx b/parfum-shop/src/App.jsx index 1253e5c..55b0b27 100644 --- a/parfum-shop/src/App.jsx +++ b/parfum-shop/src/App.jsx @@ -1,10 +1,149 @@ +import "./App.css"; + +const perfumes = [ + { + id: "01", + name: "KALTER BETON", + image: + "/KALTER BETON.png", + text: "Mineralisch. Roh. Unberührt.", + }, + { + id: "02", + name: "NASSER MARMOR", + image: + "/NASSER MARMOR.png", + text: "Kühl. Glatt. Sinnlich.", + }, + { + id: "03", + name: "BLASSE SEIDE", + image: + "/BLASSE SEIDE.png", + text: "Blass. Sanft. Kostbar.", + }, + { + id: "04", + name: "WEISSE ASCHE", + image: + "/WEISSE ASCHE.png", + text: "Still. Staubig. Erhaben.", + }, + { + id: "05", + name: "VERBRANNTES CHROM", + image: + "/VERBRANNTES CHROM.png", + text: "Metallisch. Verzehrt. Edel.", + }, + { + id: "06", + name: "SCHWARZES BENZIN", + image: + "/SCHWARZES BENZIN.png", + text: "Dunkel. Glänzend. Verboten.", + }, +]; + function App() { return ( -
Entdecke exklusive Nischenparfums.
+NISCHENDÜFTE
++ Konzeptuelle Düfte zwischen Materialität, Raum und Charakter. +
+ +{item.text}
+ → +
+ 6 Samples × 2ml.
+
+ Jeden Duft eine Woche tragen.
+
+ Verstehen, was funktioniert.
+
+
+