html {
    scroll-behavior: smooth;
}

/*
body {
    margin: 0;
    overflow-x: hidden;

    color: #F0D3A4;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;

    background-image: url("assets/bg.webp");
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
}
*/

body {
    margin: 0;
    overflow-x: hidden;

    color: #F0D3A4;
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 100;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("assets/bg.webp");
    background-size: cover;
    background-position: center;

    z-index: -1;
}

.page {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5vw;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
}

/* HERO */

.hero {
    text-align: center;
    padding: 20px 20px 20px;
}

.logo {
    width: 60vw;
    max-width: 800px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
    padding-bottom: 4px;
    position: relative;
    text-align: center;

    /* Variablen */
    --line-offset: 24px;      /* Abstand der Linien vom Text */
    --divider-height: 30px;   /* Höhe des Divider-Bildes */
}

/* Linien mit Lücke */
.subtitle::before,
.subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    
    width: 95%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent 0%,

        rgba(206, 149, 62, 0.1) 10%,
        rgba(206, 149, 62, 0.35) 25%,
        rgba(206, 149, 62, 1) 40%,

        transparent 44%,
        transparent 56%,

        rgba(206, 149, 62, 1) 60%,
        rgba(206, 149, 62, 0.35) 75%,
        rgba(206, 149, 62, 0.1) 90%,

        transparent 100%
    );
}

/* obere Linie */
.subtitle::before {
    top: calc(-1 * var(--line-offset));
}

/* untere Linie */
.subtitle::after {
    bottom: calc(-1 * var(--line-offset));
}

/* Divider allgemein */
.subtitle .divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: var(--divider-height);
    background: url("assets/divider.webp") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

/* oberer Divider */
.subtitle .divider-top {
    top: calc(-1 * var(--line-offset) - var(--divider-height) / 2);
    transform: translateX(-50%);
}

/* unterer Divider */
.subtitle .divider-bottom {
    bottom: calc(-1 * var(--line-offset) - var(--divider-height) / 2);
    transform: translateX(-50%) scaleY(-1);
}

.intro {
    max-width: 750px;
    margin: 0 auto 120px;
    text-align: center;
}

.standard {
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: 400;
 }
 
.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
 }

.intro p {
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.9;
}

.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* PRODUCT */

.product {
    margin-bottom: 120px;
}

#piano,
#musicbox,
#celesta {
    scroll-margin-top: 120px;
}

.product-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 1.5;
    
    color: #F0D3A4;
    letter-spacing: 0.05em;

    text-shadow:
        0 0 4px rgba(255,230,170,0.3),
        0 0 12px rgba(230,190,110,0.2),
        0 0 25px rgba(180,130,60,0.15),
        0 3px 6px rgba(0,0,0,0.35);
}

.product-title .format {
    display: block;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.55em;
    opacity: 0.7;
    letter-spacing: 0.08em;
    color: #F0D3A4;
    text-shadow: none;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-image {
    flex: 1.2;
    margin-top: 0px;
    margin-left: 0px;
}

.product-image img {
    width: 100%;
    display: block;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 60px 120px rgba(0, 0, 0, 0.4);
}

.product-text {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    flex: 1;
    max-width: 700px;
    text-align: justify;
    line-height: 1.3;
}

.product-text h3 {
    font-family: 'Cinzel';
    margin-top: 24;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.product p {
    margin: 0;
    margin-bottom: 24px;
}

.product p + p {
    margin-top: 10px;
}

.upcoming {
    text-align: center;
    margin-bottom: 60px;
}

.upcoming .product-image {
    display: flex;
    justify-content: center;
}

.upcoming .product-image img {
    width: 50vw;          /* feste, elegante Größe */
    max-width: 700px;       /* responsive fallback */
}

/* "Upcoming" Label */
.upcoming-label {
    font-family: 'Cinzel', serif;
    font-size: 20px;              /* deutlich größer */
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #e6b07a;

    margin-bottom: 40px;

    text-shadow:
        0 0 6px rgba(230, 176, 122, 0.8),
        0 0 14px rgba(210, 150, 90, 0.6),
        0 0 30px rgba(180, 120, 60, 0.35);
    
    animation: glowPulse2 3s ease-in-out infinite;
}

@keyframes glowPulse2 {
    0%, 100% {
        text-shadow:
            0 0 6px rgba(230, 176, 122, 0.3),
            0 0 14px rgba(210, 150, 90, 0.2),
            0 0 30px rgba(180, 120, 60, 0.15);
    }
    50% {
        text-shadow:
            0 0 10px rgba(240, 190, 140, 1),
            0 0 22px rgba(220, 160, 100, 0.8),
            0 0 45px rgba(190, 130, 70, 0.5);
    }
}

/* Text darunter */
.upcoming-note {
    margin-top: 30px;

    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;

    opacity: 0.8;
}

.upcoming-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 70px;
    line-height: 1.5;
    
    color: #F0D3A4;
    letter-spacing: 0.05em;

    text-shadow:
        0 0 4px rgba(255,230,170,0.3),
        0 0 12px rgba(230,190,110,0.2),
        0 0 25px rgba(180,130,60,0.15),
        0 3px 6px rgba(0,0,0,0.35);
}

.upcoming-title .format {
    display: block;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.55em;
    opacity: 0.7;
    letter-spacing: 0.08em;
    color: #F0D3A4;
    text-shadow: none;
}

.product-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 30px 0 30px;
    padding: 0px 0;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    position: relative;
}

/* obere Linie */
.product-nav::before,
.product-nav::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(230, 200, 140, 0.6),
        transparent
    );
    box-shadow: 0 0 8px rgba(230, 200, 140, 0.4);
}

/* obere Linie */
.product-nav::before {
    top: 0;
}

/* untere Linie */
.product-nav::after {
    bottom: 0;
}

.buy {
  background: transparent;
  z-index: 1;

  /* Grund-Glow */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);

  /* Animation */
  animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(255, 255, 255, 0.25);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 20px rgba(255, 255, 255, 0.1);
  }
}

/* Links */
.footer-links { display: flex; justify-content: center; align-items: center; gap: 20px; font-family: 'Cinzel', serif; font-size: 18px; }

/* Links Styling */
.footer-links a { color: #F0D3A4; text-decoration: none; transition: all 0.3s ease; }

/* Separator */
.footer-links .sep { width: 1px; height: 16px; background: rgba(214,195,163,0.4); }

/* Hover Glow */
.footer-links a:hover { text-shadow: 0 0 8px rgba(230,211,168,0.7), 0 0 18px rgba(230,211,168,0.4); }

.footer-note { font-family: Cinzel; margin-top: 56px; font-size: 14px; opacity: 0.9; }

/* AUDIO SECTION */

/* AUDIO SECTION */

.audio-section {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 80px;
}

.audio-inner {
    width: 480px;
    text-align: center;
}

/* TITLE */

.audio-title {
    display: block;
    width: 100%;

    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #F0D3A4;

    margin-bottom: 15px;
    opacity: 0.8;
}

/* LIST */

.audio-list {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* BUTTONS */

.audio-list button {
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 48px;
    padding: 0 10px;

    font-family: 'Roboto';
    font-size: 14px;
    color: #F0D3A4;

    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.15);

    box-sizing: border-box;

    transition: color 0.25s ease, background 0.25s ease;
}

/* ROUNDED EDGES */

.audio-list button:first-child {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.audio-list button:last-child {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* STATES */

.audio-list button:hover {
    background: rgba(255,255,255,0.03);
    color: #F8E6C9;

    text-shadow:
        0 0 6px rgba(255, 230, 170, 0.7),
        0 0 12px rgba(220, 180, 100, 0.5);

    border-bottom: 1px solid rgba(255,255,255,0.15); /* fix */
    box-shadow: none; /* sicherstellen */
}

.audio-list button.playing {
    color: #F8E6C9;
    background: rgba(255,255,255,0.06);
}

/* ICON */

.audio-list .icon {
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.icon svg {
    width: 16px;
    height: 16px;

    position: relative;
    top: -1px;   /* leicht nach oben */
}

.trailer-section {
  max-width: 900px;
  margin: 40px auto 80px auto; /* oben reduziert */
  padding: 0 20px;
}

.trailer-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.trailer-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* BUTTONS */

.buttons {
    margin-top: 70px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    background: transparent;
    border: 1px solid #F0D3A4;
    color: #F0D3A4;
    padding: 12px 26px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 600;

    transition: all 0.25s ease;
}

button:hover {
    background: #efe3c9;
    color: #2a1a0a; /* dunkles warmes Braun statt hartes Schwarz */
    border-color: #e6c98a;

    /* Outer glow */
    box-shadow:
        0 0 8px rgba(230, 200, 140, 0.7),
        0 0 18px rgba(230, 200, 140, 0.5),
        0 0 35px rgba(230, 200, 140, 0.25);

    /* Inner glow (wichtig für „von innen leuchtend“) */
    box-shadow:
        inset 0 0 10px rgba(255, 240, 200, 0.6),
        inset 0 0 20px rgba(255, 230, 170, 0.4),
        0 0 8px rgba(230, 200, 140, 0.7),
        0 0 18px rgba(230, 200, 140, 0.5),
        0 0 35px rgba(230, 200, 140, 0.25);

    /* leichte Lichtkante */
    text-shadow:
        0 1px 0 rgba(255, 250, 220, 0.5);
}

.button-disabled {
    opacity: 0.75;
    cursor: default;
    pointer-events: none;
    position: relative;
}

/* leicht abdunkeln */
.button-disabled::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    border-radius: inherit;
    pointer-events: none;
}

/* Etikett unten mittig – golden embossed */
.button-disabled::after {
    content: "AVAILABLE\A APRIL 27TH";
    white-space: pre;

    position: absolute;
    left: 50%;
    bottom: -20px;

    transform: translateX(-50%);

    font-family: 'Cinzel', serif;
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 1.5px;
    text-align: center;

    color: #fff1c9;

    background: linear-gradient(
        145deg,
        #d4af37,
        #b8962e,
        #8c6b1f
    );

    padding: 5px 7px;
    border-radius: 6px;

    box-shadow:
        inset 0 1px 0 rgba(255, 245, 200, 0.5),
        inset 0 -2px 3px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0,0,0,0.5),
        0 0 10px rgba(212,175,55,0.35);

    text-shadow:
        0 1px 0 rgba(255, 250, 220, 0.6),
        0 -1px 1px rgba(120, 90, 20, 0.7);

    pointer-events: none;
}

.notify-section {
    margin-top: 40px;
    text-align: center;
}

.notify-button {
  display: inline-block;
  padding: 12px 24px;
  background: #e6cfa8;
  color: #8a5a0a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

.notify-button:hover {
  background: #f0dcb8; /* etwas heller */
  color: #9c6a12;       /* satteres Gold */

  box-shadow:
    0 0 8px rgba(200, 155, 60, 0.6),
    0 0 16px rgba(200, 155, 60, 0.4),
    0 0 24px rgba(200, 155, 60, 0.2);

  transform: translateY(-1px); /* leicht „anheben“ */
}

.notify-input {
    padding: 12px;
    margin-right: 10px;
    border: 1px solid #c9a45c;
    background: transparent;
    color: #c9a45c;
    outline: none;
}

.gold-button {
    background: linear-gradient(
      180deg,
      #f5d27a 0%,
      #e0b95c 30%,
      #c08a2e 55%,
      #a8741f 80%,
      #f5d27a 100%
    );
}     
        
.gold-button:hover {
  background: linear-gradient(
    180deg,
    #ffe29a 0%,
    #e8c46a 30%,
    #c9962e 55%,
    #8f651c 80%,
    #ffe29a 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.5);
}

/* FOOTER */

.footer {
    margin-top: 120px;
    text-align: center;
}

.footer-note {
    margin-top: 56px;
    margin-bottom: 56px;
    font-size: 14px;
    opacity: 0.9;
}

/* =========================
   LEGAL PAGES FIX
========================= */

/* Kein Dropcap für Impressum / Privacy */
.intro.no-dropcap p:first-of-type::first-letter {
    all: unset;
}

/* Optional: bessere Lesbarkeit für Rechtstexte */
.legal {
    max-width: 800px;
    margin: 0 auto;

    font-family: 'Roboto':

    min-height: calc(100vh - 200px); /* berücksichtigt Header/Footer */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.legal h2 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal p {
    text-indent: 0;       /* kein Einzug */
    margin-bottom: 14px;
    line-height: 1.6;
    opacity: 0.95;
}


/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 900px) {

    .subtitle {
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 16px;
        --line-offset: 12px;      /* Abstand der Linien vom Text */
        --divider-height: 10px;   /* Höhe des Divider-Bildes */
    }
    
    .subtitle .divider {
        width: 90px;
        height: var(--divider-height);
    }

    /* Layout */
    .product-row {
        flex-direction: column;
        gap: 30px;
    }

    .product-text {
        max-width: 100%;
        text-align: justify;
        hyphens: auto;
        font-size: 15px;
    }

    /* Logo kleiner */
    .logo {
        width: 85vw;
    }

    /* Titel etwas kleiner */
    .product-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    /* Intro */
    .intro {
        margin-bottom: 80px;
        padding: 0 10px;
    }

    .standard {
        font-size: 17px;
    }

    .quote {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 16px;
    }
    
    .upcoming-label {
        font-size: 16px;              /* deutlich größer */
    }   
    
    .upcoming-title {
        font-size: 17px;
    }

    /* Buttons untereinander */
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    button {
        width: 100%;
        max-width: 320px;
    }
    
    /* Audio */
    .audio-inner {
        width: 100%;
    }

    .audio-list button {
        font-size: 9px;
        height: auto;
        padding: 12px;
    }

    .footer-links {
        gap: 6px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .footer-links .sep {
        display: none; /* cleaner auf mobile */
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 500px) {

    .subtitle {
        margin-top: 20px;
        font-size: 14px;
        --line-offset: 10px;      /* Abstand der Linien vom Text */
        --divider-height: 10px;   /* Höhe des Divider-Bildes */
    }
    
    .subtitle .divider {
        width: 90px;
        height: var(--divider-height);
    }

    .product-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 16px;
    }

    .standard {
        font-size: 16px;
    }

    .quote {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 15px;
    }

    .upcoming-label {
        font-size: 14px;              /* deutlich größer */
    }   
    
    .upcoming-title {
        font-size: 13px;
    }

    .audio-title {
        font-size: 12px;
    }

    .audio-list button {
        font-size: 9px;
    }

    .page {
        padding: 0 20px;
    }

    /* große Abstände reduzieren */
    .product {
        margin-bottom: 80px;
    }

    .audio-section {
        margin-bottom: 100px;
    }
}