/* =====================================================
   123Blumen.at — main.css
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #3D5A45;
  --green-lt:   #4e7359;
  --rose:       #C4847A;
  --cream:      #F7F2EC;
  --cream-dk:   #EDE5D8;
  --brown:      #2A1F1A;
  --brown-lt:   #5a4a40;
  --white:      #FFFFFF;
  --r:          16px;
  --r-lg:       28px;
  --max:        1280px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--brown); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Reveal animation ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── Eyebrow ──────────────────────────────────────── */
.eyebrow { font-family: 'Lato', sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: .4rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.8rem; border-radius: 50px; font-family: 'Lato', sans-serif; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; cursor: pointer; border: none; transition: .25s; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-lt); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ── Header ───────────────────────────────────────── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 2rem; transition: box-shadow .3s; background: rgba(247,242,236,.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(61,90,69,.10); }
header.scrolled { box-shadow: 0 4px 24px rgba(61,90,69,.07); }
.nav-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.logo-wrap { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-ornament { color: var(--green); opacity: .6; font-size: .9rem; letter-spacing: .6rem; margin-top: .1rem; }
.logo-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.6rem; color: var(--green); letter-spacing: .02em; }
.logo-text sup { font-size: .55em; letter-spacing: .1em; color: var(--rose); vertical-align: super; }

/* ── Logo ─────────────────────────────────────────── */
.logo-new { display: inline-flex; align-items: baseline; gap: 0; text-decoration: none; }
.logo-n123 { font-family: 'Lato', sans-serif; font-weight: 300; font-size: 1.1rem; color: var(--rose); letter-spacing: .06em; margin-right: .12em; }
.logo-blumen { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.7rem; color: var(--green); letter-spacing: .01em; line-height: 1; }
.logo-at { font-family: 'Lato', sans-serif; font-size: .6rem; font-weight: 700; color: var(--green); opacity: .55; letter-spacing: .12em; text-transform: lowercase; align-self: flex-start; margin-top: .22rem; margin-left: .1rem; }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.nav-links a { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brown-lt); font-weight: 700; transition: .2s; }
.nav-links a:hover { color: var(--green); }

/* hamburger */
#hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .3rem; }
#hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s; }
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; padding: 2rem; }
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 1.3rem; font-family: 'Playfair Display', serif; font-style: italic; color: var(--brown); }

/* ── Hero ─────────────────────────────────────────── */
#hero { display: grid; grid-template-columns: 1fr 1fr; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100vh; object-fit: cover; display: block; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,90,69,.12), transparent 60%); }
.hero-img::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 120px; background: linear-gradient(to right, transparent, var(--cream)); pointer-events: none; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 8rem 5rem 4rem; background: var(--cream); }
.hero-tag { display: inline-flex; align-items: center; gap: .5rem; background: var(--cream-dk); padding: .4rem 1rem; border-radius: 50px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 1.5rem; width: fit-content; }
.hero-tag::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); }
.hero-content h1 { font-size: clamp(2.4rem, 3.5vw, 3.8rem); color: var(--brown); margin-bottom: 1.2rem; }
.hero-content h1 em { color: var(--green); font-style: italic; }
.hero-content p { font-size: 1.05rem; color: var(--brown-lt); max-width: 420px; margin-bottom: 2rem; line-height: 1.75; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.pill { background: var(--cream-dk); padding: .3rem .9rem; border-radius: 50px; font-size: .78rem; color: var(--brown-lt); font-weight: 700; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Feats strip ──────────────────────────────────── */
#feats { background: #6B8F74; padding: .9rem 2rem; }
.feats-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.10); }
.feat-item { background: #6B8F74; padding: .75rem 1.2rem; display: flex; align-items: center; gap: .65rem; }
.feat-icon { font-size: 1rem; flex-shrink: 0; opacity: .85; }
.feat-item h4 { font-family: 'Lato', sans-serif; font-size: .75rem; color: #fff; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.feat-item p { display: none; }

/* ── Divider ──────────────────────────────────────── */
.botanical-divider {
  display: flex; align-items: center; gap: 1.2rem;
  max-width: 600px; margin: 0 auto; padding: 2.5rem 2rem;
  color: var(--cream-dk);
}
.botanical-divider::before,
.botanical-divider::after { content: ''; flex: 1; height: 1px; background: var(--cream-dk); }
.botanical-divider span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brown-lt); opacity: .5; white-space: nowrap; }

/* ── Products ─────────────────────────────────────── */
#products { padding: 5rem 3rem; }
.products-layout { display: grid; grid-template-columns: 220px 1fr; gap: 4rem; max-width: var(--max); margin: 0 auto; }

/* Sidebar */
.prod-sidebar { padding-top: .3rem; position: sticky; top: 120px; align-self: start; }
.prod-sidebar h2 { font-size: clamp(1.8rem, 2.5vw, 2.6rem); line-height: 1.1; margin-bottom: 2rem; }
.prod-sidebar h2 em { color: var(--rose); font-style: italic; }
.filter-list { display: flex; flex-direction: column; margin-bottom: 2rem; border-top: 1px solid var(--cream-dk); }
.f-item { display: flex; align-items: center; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--cream-dk); font-size: .82rem; color: var(--brown-lt); cursor: pointer; transition: .15s; background: none; border-left: none; border-right: none; border-top: none; text-align: left; font-family: 'Lato', sans-serif; width: 100%; font-weight: 700; letter-spacing: .04em; }
.f-item:hover, .f-item.active { color: var(--green); }
.f-count { font-size: .7rem; color: var(--rose); font-weight: 400; }
.sidebar-note { font-size: .78rem; color: var(--brown-lt); line-height: 1.65; border-left: 2px solid var(--rose); padding-left: .9rem; opacity: .8; }

/* Product grid */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.p-card { border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: 0 4px 24px rgba(61,90,69,.07); transition: .3s; }
.p-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(61,90,69,.14); }
.p-img { position: relative; overflow: hidden; height: 280px; }
.p-img img { transition: .4s; }
.p-card:hover .p-img img { transform: scale(1.04); }
.p-badge { position: absolute; top: 1rem; left: 1rem; background: var(--rose); color: #fff; padding: .25rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.p-badge.green { background: var(--green); }
.p-body { padding: 1.3rem 1.5rem 1.5rem; }
.p-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: .4rem; color: var(--brown); }
.p-body p { font-size: .82rem; color: var(--brown-lt); line-height: 1.55; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-foot { display: flex; align-items: center; justify-content: space-between; }
.p-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green); font-weight: 600; }
.p-price small { font-family: 'Lato', sans-serif; font-size: .7rem; color: var(--brown-lt); display: block; }
.p-btn { background: var(--green); color: #fff; border: none; border-radius: 50px; padding: .5rem 1.2rem; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: .2s; font-family: 'Lato', sans-serif; }
.p-btn:hover { background: var(--green-lt); }

/* ── Delivery ─────────────────────────────────────── */
#delivery { background: var(--cream-dk); padding: 6rem 2rem; }
.delivery-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.delivery-text h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom: 1rem; }
.delivery-text h2 em { font-style: italic; color: var(--green); }
.delivery-text p { color: var(--brown-lt); line-height: 1.75; margin-bottom: 1.5rem; }
.timeline { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .85rem; flex-shrink: 0; position: relative; }
.tl-item:not(:last-child) .tl-dot::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 2px; height: 36px; background: var(--cream-dk); }
.tl-body { padding-bottom: 2rem; }
.tl-body h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: .25rem; color: var(--brown); }
.tl-body p { font-size: .83rem; color: var(--brown-lt); }
.map-box { border-radius: var(--r-lg); overflow: hidden; height: 380px; box-shadow: 0 4px 24px rgba(61,90,69,.1); }
.map-box iframe { width: 100%; height: 100%; border: 0; }
.city-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.city-tags span { background: var(--white); border: 1px solid var(--cream-dk); padding: .3rem .85rem; border-radius: 50px; font-size: .75rem; color: var(--brown-lt); font-weight: 700; letter-spacing: .04em; }

/* ── FAQ ──────────────────────────────────────────── */
#faq { padding: 6rem 2rem; }
.faq-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { background: #fff; border-radius: var(--r); overflow: hidden; margin-bottom: .6rem; box-shadow: 0 2px 12px rgba(61,90,69,.05); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; background: transparent; border: none; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown); cursor: pointer; text-align: left; gap: 1rem; }
.faq-q:hover { color: var(--green); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--cream-dk); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green); flex-shrink: 0; font-style: normal; font-family: 'Lato', sans-serif; line-height: 1; }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; font-size: .88rem; color: var(--brown-lt); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────── */
footer { background: var(--brown); color: rgba(255,255,255,.75); padding: 3.5rem 2rem 1.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: #fff; margin-bottom: .7rem; }
.footer-logo sup { font-size: .55em; color: var(--rose); }
.footer-brand p { font-size: .83rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .82rem; transition: .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; max-width: var(--max); margin: 0 auto; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ── Language switcher ────────────────────────────── */
.lang-switcher { display: flex; gap: .3rem; align-items: center; }
.lang-btn { font-size: .7rem; letter-spacing: .1em; padding: .2rem .55rem; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.5); transition: .2s; border-radius: 3px; }
.lang-btn:hover, .lang-btn.active { border-color: var(--rose); color: #fff; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .products-layout { grid-template-columns: 180px 1fr; gap: 2rem; }
    .prod-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    #hero { grid-template-columns: 1fr; }
    .hero-img { height: 50vh; }
    .hero-content { padding: 3rem 1.5rem; }
    .feats-grid { grid-template-columns: repeat(2,1fr); }
    .products-layout { grid-template-columns: 1fr; }
    .prod-sidebar { position: static; }
    .filter-list { flex-direction: row; flex-wrap: wrap; border-top: none; }
    .f-item { border: 1px solid var(--cream-dk); border-radius: 50px; padding: .3rem .9rem; width: auto; }
    .prod-grid { grid-template-columns: 1fr; }
    .delivery-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .nav-inner { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
    .nav-links { display: none; }
    #hamburger { display: flex; }
}
