/* Seelenweisheiten - Carola Dora Wuppermann
   Spirituell, warm, magisch – esoterisch & verspielt */

:root {
    --pink: #c91f7a;
    --pink-light: #e84a9a;
    --pink-dark: #9a185e;
    --pink-glow: rgba(201, 31, 122, 0.4);
    --gold: #d4af37;
    --gold-light: #f0d875;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --bg-dark: #0a0e1a;
    --bg-card: #121827;
    --bg-section: #0f1420;
    --text: #f8f4f8;
    --text-muted: #a8a4b8;
    --gradient-pink: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    --gradient-cosmic: radial-gradient(ellipse at 50% 0%, rgba(201, 31, 122, 0.08) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background: var(--bg-dark);
    background-image: var(--gradient-cosmic);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212,175,55,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(201,31,122,0.2), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(212,175,55,0.15), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 31, 122, 0.25);
}

.logo {
    height: 50px;
    width: auto;
}

.logo-link {
    display: block;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--pink-light);
}

main {
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--pink);
}

/* Hero – volle Breite, ganzer Bildschirm, wie bisherige Hero Area */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Slideshow */
.hero-slideshow {
    display: flex;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(10,14,26,0.4) 50%, rgba(10,14,26,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}

.hero-logo {
    max-width: min(480px, 65vw);
    height: auto;
    filter: drop-shadow(0 0 30px var(--pink-glow));
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-muted);
    padding: 0.5rem;
    transition: color 0.3s, transform 0.3s;
}

.hero-scroll:hover {
    color: var(--pink-light);
    transform: translateX(-50%) translateY(4px);
}

.hero-scroll svg {
    display: block;
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Intro-Strip unter dem Hero */
.intro-strip {
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    border-top: 1px solid rgba(201, 31, 122, 0.2);
    border-bottom: 1px solid rgba(201, 31, 122, 0.2);
    position: relative;
}

.intro-strip::before {
    content: '✦ ✦ ✦';
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1em;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.intro-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px var(--gold-glow);
}

.intro-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
    box-shadow: 0 4px 20px var(--pink-glow), 0 0 40px rgba(201, 31, 122, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--pink-glow), 0 0 60px rgba(201, 31, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-light);
    border: 2px solid var(--pink);
}

.btn-secondary:hover {
    background: rgba(201, 31, 122, 0.2);
}

/* Sections – gesamte Bildschirmbreite */
section {
    padding: 5rem clamp(1.5rem, 5vw, 4rem);
    width: 100%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
    text-shadow: 0 0 30px var(--pink-glow);
}

.section-title span {
    color: var(--pink-light);
    font-style: italic;
}

/* Über mich */
#ueber-mich {
    background: var(--bg-section);
}

.about-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1.5fr;
    }
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(201, 31, 122, 0.3);
    box-shadow: 0 0 25px var(--pink-glow);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--pink-light);
}

.about-text .signature {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--pink-light);
    display: inline-block;
    margin-top: 0.25rem;
    text-shadow: 0 0 15px var(--pink-glow);
}

/* Landing-Streifen */
.landing-strip {
    padding: 0;
    min-height: 50vh;
}

.landing-strip:nth-child(odd) {
    background: var(--bg-section);
}

.landing-strip:nth-child(even) {
    background: var(--bg-dark);
}

.strip-content {
    display: grid;
    grid-template-columns: 2fr 0.8fr;
    min-height: 50vh;
    align-items: center;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.landing-strip--alt .strip-content {
    grid-template-columns: 0.8fr 2fr;
}

.landing-strip--alt .strip-text {
    grid-column: 2;
}

.landing-strip--alt .strip-image {
    grid-column: 1;
}

.strip-text {
    padding: 3rem clamp(2rem, 5vw, 4rem);
}

.strip-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
}

.strip-title::before {
    content: '✦';
    color: var(--gold);
    margin-right: 0.5rem;
    opacity: 0.8;
}

.strip-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.strip-image {
    height: 100%;
    min-height: 220px;
    max-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem;
    box-shadow: 0 0 30px var(--pink-glow), 0 8px 32px rgba(0,0,0,0.3);
}

.strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 320px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .strip-content {
        grid-template-columns: 1fr;
    }

    .landing-strip--alt .strip-text,
    .landing-strip--alt .strip-image {
        grid-column: auto;
    }

    .strip-image {
        order: -1;
        min-height: 180px;
        max-height: 220px;
    }

    .strip-image img {
        max-height: 220px;
    }
}

/* Events */
.events-section {
    background: var(--bg-section);
}

.events-subtitle {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--gold-light);
    margin: -1rem auto 2.5rem;
    max-width: 600px;
}

.events-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.events-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.events-heading::before {
    content: '✦ ';
    color: var(--gold);
    opacity: 0.8;
}

.events-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.events-text .btn {
    margin-top: 1rem;
}

.events-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 1.5rem;
    box-shadow: 0 0 30px var(--pink-glow);
    max-width: 220px;
}

.events-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .events-content {
        grid-template-columns: 1fr;
    }

    .events-image {
        order: -1;
        max-width: 180px;
        margin: 0 auto 1.5rem;
    }
}

/* Produktkarten / Angebote-Seite */
.products-section {
    padding-top: 8rem;
    background: var(--bg-dark);
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 5rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(201, 31, 122, 0.25);
    box-shadow: 0 0 20px rgba(201, 31, 122, 0.08);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: 0 0 40px var(--pink-glow);
}

.product-badge {
    display: inline-block;
    background: rgba(201, 31, 122, 0.25);
    color: var(--pink-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    width: fit-content;
}

.product-badge::before {
    content: '◇ ';
    opacity: 0.7;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0.5rem 0 1rem;
}

.product-card p {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.product-card .btn {
    margin-top: auto;
    text-align: center;
}

/* Kontakt */
#kontakt {
    background: var(--bg-section);
}

.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 31, 122, 0.3);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.contact-form .btn {
    margin-top: 0.5rem;
}

#kontakt .alert {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-dark);
    text-align: center;
}

.newsletter-intro {
    color: var(--text-muted);
    margin: -1rem auto 1.5rem;
    max-width: 500px;
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-field {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-field input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 31, 122, 0.3);
    border-radius: 50px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
}

.newsletter-field input:focus {
    outline: none;
    border-color: var(--pink);
}

.newsletter-field .btn {
    white-space: nowrap;
}

.newsletter-section .alert {
    max-width: 480px;
    margin: 0 auto 1rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Messen & Events */
.messen-section {
    background: var(--bg-dark);
}

.messen-intro {
    text-align: center;
    color: var(--text-muted);
    margin: -1rem auto 2rem;
}

.messen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.messen-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(201, 31, 122, 0.25);
    box-shadow: 0 0 20px rgba(201, 31, 122, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.messen-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--pink-glow);
}

.messen-datum {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.messen-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.messen-ort {
    font-size: 0.9rem;
    color: var(--pink-light);
    margin-bottom: 0.75rem;
}

.messen-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Instagram */
.instagram-section {
    background: var(--bg-section);
    text-align: center;
    padding-bottom: 4rem;
}

.instagram-handle {
    margin-bottom: 1.5rem;
}

.instagram-handle a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--pink-light);
    text-decoration: none;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-handle a:hover {
    opacity: 0.9;
}

.instagram-embed {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-embed:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
}

.instagram-icon {
    flex-shrink: 0;
}

.instagram-feed {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.instagram-feed iframe {
    border-radius: 12px;
}

.instagram-embed-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-embed-hint a {
    color: var(--pink-light);
}

.instagram-embed-hint code {
    font-size: 0.9em;
    background: rgba(201, 31, 122, 0.2);
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-section);
    border-top: 1px solid rgba(201, 31, 122, 0.25);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--pink-light);
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Rechtliche Seiten */
.legal-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
    max-width: 700px;
    margin: 0 auto;
    padding-left: clamp(1.5rem, 5vw, 3rem);
    padding-right: clamp(1.5rem, 5vw, 3rem);
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--text);
}

.legal-page h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-muted);
}

.legal-page p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Checkout / Produktseite */
.checkout-page, .product-page {
    padding-top: 8rem;
    min-height: 100vh;
}

.product-detail {
    width: 100%;
    max-width: 100%;
}

.product-detail h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201, 31, 122, 0.3);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--pink);
}

/* Horoskop-Formular */
.horoscope-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.horoscope-result {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border-left: 4px solid var(--pink);
}

.horoscope-result h3 {
    font-family: var(--font-serif);
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.horoscope-result .content {
    white-space: pre-wrap;
    line-height: 1.8;
    color: var(--text-muted);
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--pink);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success / Error Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #a5d6a7;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ef9a9a;
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-section);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        border-bottom: 1px solid rgba(201, 31, 122, 0.25);
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }
}
