/* Branding-Font */
@font-face {
    font-family: 'FashionVictim';
    src: url('/fonts/FashionVictim.ttf') format('truetype');
}

/* Moderne Webfont */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #fdfaf5;
    color: #333;
    margin: 0;
    text-align: center;
}

/* Animationen */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Branding */
.brand {
    font-family: 'FashionVictim', sans-serif;
    color: #2e6b3f;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0;
}

.subtitle {
    margin-top: 0;
    font-size: 1.2rem;
    color: #4a8b5a;
}

/* Header */
header {
    background: #e8e2d9;
    padding: 2rem 1rem;
}

/* Navigation */
nav a {
    margin: 0 1rem;
    color: #2e6b3f;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

/* Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    gap: 2rem;
}

.hero-text {
    max-width: 500px;
    padding: 0 1rem;
}

.hero-image img {
    max-width: min(260px, 80vw);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

/* Story Sections */
.story, .growth, .uniques, .shop-teaser {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Unikate Grid */
.unique-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.unique-item {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e0d8c8;
    width: clamp(160px, 45vw, 260px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .unique-item img {
        max-width: 100%;
        margin-bottom: 0.8rem;
    }

    .unique-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    }

/* Extra Animationen */
.bounce-in {
    animation: bounceIn 0.9s ease-out forwards;
    opacity: 0;
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

.cart-button {
    font-weight: bold;
    margin-left: 1rem;
}

.float-up {
    animation: floatUp 1.1s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------ */
/* 📱 MOBILE BREAKPOINTS */
/* ------------------------------ */

@media (max-width: 768px) {

    nav a {
        display: inline-block;
        margin: 0.5rem 0.7rem;
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .story, .growth, .uniques, .shop-teaser {
        padding: 1.5rem 1rem;
    }

    .unique-item {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    header {
        padding: 1.5rem 0.5rem;
    }

    nav a {
        margin: 0.3rem 0.5rem;
        font-size: 0.95rem;
    }

    .brand {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero {
        padding: 1.5rem 0.5rem;
    }

    .unique-item {
        width: 90%;
    }
}
