:root {
    --bg: #07080c;
    --bg2: #0b0d14;
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.12);
    --glass: rgba(10, 12, 18, 0); /* start: transparent */
    --glassScrolled: rgba(10, 12, 18, 0.75); /* scrolled: ~75% */
    --blur: 10px;
    --accent: #ffb35c; /* amber-ish */
    --accent2: #8fb7ff; /* optional cool accent */
    --max: 1200px;
    --navH: 64px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: auto;
    min-height: 100%;
}
body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    background: radial-gradient(1200px 800px at 20% 10%, #121526 0%, var(--bg) 55%, #05060a 100%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}
.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* ================= NAV ================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--navH);
    display: flex;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition:
        background 0.25s ease,
        backdrop-filter 0.25s ease,
        border-color 0.25s ease;
}
.nav.scrolled {
    background: var(--glassScrolled);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--line);
}
.navInner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.brand small {
    color: var(--muted);
    font-weight: 500;
}
.navLinks {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
}
.navLinks a {
    padding: 8px 10px;
    border-radius: 999px;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.navLinks a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.navCta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 14px;
    transition:
        transform 0.12s ease,
        background 0.12s ease,
        border-color 0.12s ease;
    user-select: none;
    white-space: nowrap;
}
.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}
.btn.primary {
    border-color: rgba(255, 179, 92, 0.35);
    background: linear-gradient(180deg, rgba(255, 179, 92, 0.22), rgba(255, 179, 92, 0.1));
}

/* Mobile nav: collapse links */
.burger {
    display: none;
}
@media (max-width: 860px) {
    .navLinks {
        display: none;
    }
    .burger {
        display: inline-flex;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.06);
        align-items: center;
        justify-content: center;
    }
}
.mobileNav{
  position: absolute;
  top: calc(var(--navH) + 10px);
  right: 20px;
  left: 20px;

  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.9);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));

  /* Fancy animation base state */
  transform-origin: top center;
  transform: translateY(-8px) scale(.98);
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);

  transition:
    opacity .18s ease,
    transform .24s cubic-bezier(.2,.9,.2,1),
    filter .24s ease;
}

.nav.isMenuOpen .mobileNav{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  pointer-events: auto;
}

/* links inside */
.mobileNav a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.00);

  /* per-item pop */
  transform: translateY(-3px);
  opacity: .0;
  transition:
    transform .24s cubic-bezier(.2,.9,.2,1),
    opacity .24s ease,
    background .12s ease;
}

.nav.isMenuOpen .mobileNav a{
  transform: translateY(0);
  opacity: 1;
}

/* stagger via nth-child delays */
.nav.isMenuOpen .mobileNav a:nth-child(1){ transition-delay: .02s; }
.nav.isMenuOpen .mobileNav a:nth-child(2){ transition-delay: .04s; }
.nav.isMenuOpen .mobileNav a:nth-child(3){ transition-delay: .06s; }
.nav.isMenuOpen .mobileNav a:nth-child(4){ transition-delay: .08s; }
.nav.isMenuOpen .mobileNav a:nth-child(5){ transition-delay: .10s; }

.mobileNav a:hover{
  background: rgba(255,255,255,.08);
}

/* ensure it's never visible on desktop */
@media (min-width: 861px){
  .mobileNav{ display:none !important; }
}


/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: calc(100svh - var(--navH));
    display: flex;
    align-items: stretch;
}

/* Background texture layer:
       Option A: real image (recommended) -> set in .heroBg { background-image: url(...) ... }
       Option B: CSS noise-ish gradients -> already set below
    */
.heroBg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 600px at 70% 40%, rgba(255, 179, 92, 0.12), transparent 60%),
        radial-gradient(700px 500px at 30% 60%, rgba(120, 160, 255, 0.1), transparent 55%),
        radial-gradient(1200px 900px at 50% 50%, rgba(255, 255, 255, 0.04), transparent 65%),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.03) 100%
        );
    opacity: 1;
}

.heroBg {
    background:
        radial-gradient(900px 600px at 70% 40%, rgba(255, 179, 92, 0.12), transparent 60%),
        radial-gradient(700px 500px at 30% 60%, rgba(120, 160, 255, 0.1), transparent 55%), url("assets/texture.jpg");
    background-size: cover;
    background-position: center;
    filter: contrast(1.05) saturate(1.05);
    opacity: 0;
}

.heroWrap {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; /* images are absolute; text is centered */
}

/* Image overlays */
.heroArt {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: lighten;
}
.heroArt .left,
.heroArt .right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
}
.heroArt .left {
    left: 0;
    justify-content: flex-start;
}
.heroArt .right {
    right: 0;
    justify-content: flex-end;
}

.heroArt img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    /* Soft blend to "glue" edges */
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.55));
}

/* Text block */
.heroContent {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 0 80px;
}
.heroContentInner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    /* Place text like in banner: right side-ish */
    display: flex;
    justify-content: flex-end;
}
.copy {
    width: min(560px, 100%);
    padding: 24px 22px;
    border-radius: 20px;
    background: rgba(5, 6, 10, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 4vw, 64px);
    letter-spacing: 0.2px;
}
.sub {
    margin: 0 0 18px;
    font-size: clamp(18px, 2vw, 28px);
    color: rgba(255, 255, 255, 0.84);
}
.url {
    font-size: clamp(18px, 1.6vw, 24px);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}
.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Scroll hint */
.scrollHint {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    letter-spacing: 0.3px;
    user-select: none;
    cursor: pointer;
}
.chev {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ================= SECTIONS ================= */
section {
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sectionTitle {
    font-size: 28px;
    margin: 0 0 10px;
}
.sectionLead {
    margin: 0 0 24px;
    color: var(--muted);
    max-width: 68ch;
}
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 16px;
    min-height: 120px;
}
@media (max-width: 900px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
}

/* ================= RESPONSIVE HERO ================= */
@media (max-width: 900px) {
    .heroContentInner {
        justify-content: center;
    }
    .copy {
        background: rgba(5, 6, 10, 0.32);
    }
    .heroContent {
        align-items: flex-end;
    }
}
@media (max-width: 700px) {
    /* show only left half */
    .heroArt .right {
        display: none;
    }
    .heroArt .left {
        width: 100%;
    }
    .seam {
        display: none;
    }

    /* optional: make left image slightly larger on mobile */
    .heroArt img {
        transform: translateX(-6%) scale(1.03);
        transform-origin: left center;
    }

    .heroContent {
        padding: 54px 0 88px;
    }
    .copy {
        padding: 18px 16px;
        border-radius: 18px;
    }
}

/* ================= MISC ================= */
/* Hochzeit Preisliste */
.priceBlock {
    margin-top: 34px;
}
.priceBlock h3 {
    margin: 0 0 8px;
    font-size: 22px;
}
.muted {
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 12px;
}
.priceList {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}
.priceList li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}
.bigPrice {
    font-size: 22px;
    margin: 10px 0 0;
}
.tableWrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}
.priceTable {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}
.priceTable th,
.priceTable td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.priceTable thead th {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}
.fineprint {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.accordion {
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
}

.accordionSummary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    user-select: none;
}

.accordionSummary::-webkit-details-marker {
    display: none;
}

.accordionHint {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.accordionIcon {
    flex: 0 0 auto;
    transition: transform 0.18s ease;
}

.accordion[open] .accordionIcon {
    transform: rotate(180deg);
}

.accordionBody {
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* optional: etwas “tight” spacing für den ersten Block im Body */
.accordionBody > *:first-child {
    margin-top: 12px;
}

.accordionBody {
    animation: accordionFade 0.5s ease;
}
@keyframes accordionFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preise */
.priceCards {
    margin-top: 18px;
}
.priceCard {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.priceCard .full {
    width: 100%;
    margin-top: auto;
}
.priceHead h3 {
    margin: 0;
    font-size: 22px;
}
.small {
    font-size: 13px;
}

.priceMain {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.priceTag {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.priceTag span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}
.priceTag strong {
    font-size: 28px;
    letter-spacing: 0.2px;
}

.checkList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.checkList li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.86);
}
.checkList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 179, 92, 0.55);
    box-shadow: 0 0 14px rgba(255, 179, 92, 0.25);
}

.priceCard.highlight {
    border-color: rgba(255, 179, 92, 0.22);
    background: linear-gradient(180deg, rgba(255, 179, 92, 0.1), rgba(255, 255, 255, 0.04));
}

.addons {
    margin-top: 36px;
}
.subTitle {
    margin: 0 0 8px;
    font-size: 22px;
}

/* Kontakt */

.contactGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-top: 18px;
}
@media (max-width: 900px) {
    .contactGrid {
        grid-template-columns: 1fr;
    }
}

.contactCard h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.contactRow {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 520px) {
    .contactRow {
        grid-template-columns: 70px 1fr;
    }
    .copyBtn {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

.contactLabel {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.contactValue {
    color: rgba(255, 255, 255, 0.92);
    word-break: break-word;
}
.contactValue:hover {
    text-decoration: underline;
}

.copyBtn {
    padding: 8px 12px;
    cursor: pointer;
}

.contactBullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    display: grid;
    gap: 8px;
}

/* Gallery */
.galleryGrid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 1050px) {
    .galleryGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 720px) {
    .galleryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 420px) {
    .galleryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.galleryItem {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    position: relative;
    transition:
        transform 0.14s ease,
        border-color 0.14s ease,
        background 0.14s ease;
}

.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

.galleryItem:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 179, 92, 0.22);
    background: rgba(255, 179, 92, 0.06);
}

.galleryItem:hover img {
    transform: scale(1.06);
    filter: saturate(1.06) contrast(1.05);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 200;
}

.lightbox.isOpen {
    display: block;
}

.lightboxBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0;
}

.lightboxFigure {
    position: absolute;
    inset: 0;
    margin: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
}

.lightboxFigure img {
    max-width: min(980px, 92vw);
    max-height: 86vh;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.55);
    background: rgba(255, 255, 255, 0.04);
}

.lightboxClose {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}
