/* css/styles.css – zentrales Stylesheet für www.inasilja.me */
/* InaSilja 2026 – Glitzer, Magie & Funkeln pur */

@import url('/css/fonts.css');  /* Comic Neue – kommt zuerst */

:root {
    --main-font: 'Comic Neue';

    --primary-color: #FF00AA;           /* Pink/Magenta – dein Signature */
    --primary-glow-color: #ffffff;
    --primary-shadow-color: #000000;

    --secondary-color: #00FFFF;         /* Cyan/Türkis – Kontrast & Glow */
    --secondary-glow-color: #ffffff;
    --secondary-shadow-color: #000000;

    --tertiary-color: #ffccff;          /* Rosy Pink - Bright fluffy pink */
    --tertiary-glow-color: #FF00AA;

    --quaternary-color: #ccffff;        /* Cool Ice - Bright icy cyan */
    --quaternary-glow-color: #00FFFF;

    --highlight-color: #e9ff40;         /* Brilliant Yellow */
    --highlight-glow-color: #ffffff;

    --note-color: #bf00ff;              /* Verspieltes Lila */
    --note-glow-color: #ffffff;

    --text-color: #FFFFFF;              /* Text Color - White */
    --text-glow-color: #00FFFF;
    --text-shadow-color: #000000;       /* Text's Shadows Color - Black (Note! Should be contrast of text-color) */

    --primary-glow: 1px 1px 2px color-mix(in srgb, var(--primary-shadow-color) 20%, transparent), 0 0 15px var(--primary-color);
    --secondary-glow: 1px 1px 2px color-mix(in srgb, var(--secondary-shadow-color) 20%, transparent), 0 0 15px var(--secondary-color);
    --tertiary-glow: 0 0 10px var(--tertiary-glow-color);
    --quaternary-glow: 0 0 10px var(--quaternary-glow-color);
    --highlight-glow: 0 0 13px var(--highlight-glow-color);
    --note-glow: 0 0 10px var(--note-glow-color);
    --text-glow: 0 0 5px var(--text-glow-color);

    --background-gradient: radial-gradient(circle at center, var(--primary-color), var(--secondary-color), var(--primary-color));

    --card-bg: color-mix(in srgb, var(--text-color) 7%, transparent);
    --card-border: color-mix(in srgb, var(var(--secondary-color)) 15%, transparent);
}

/* Globale Basics */
html {
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: none; /* Or transparent if needed */
}

/* Starfield Canvas – Fullscreen-Hintergrund, fixed und hinter allem */
#starfield {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: var(--background-gradient);
    background-size: 200% 200%;
    animation: gradientShift 200s ease infinite;
}

/* Body remains transparent */
body {
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    color: var(--text-color);
    background: transparent;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    min-height: 100vh;
}

@keyframes gradientShift {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

section {
    max-width: 800px;
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

/* Profilbild & Glow */
.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid var(--text-color);
    object-fit: cover;
    animation: glowPulse 2.5s ease-in-out infinite;
    margin-bottom: 25px;
    box-shadow: var(--primary-glow);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px var(--text-color), 0 0 30px var(--primary-color); }
    50%      { box-shadow: 0 0 25px var(--text-color), 0 0 60px var(--secondary-color); }
}

/* Überschriften */
h1, h2, h3, h4, h5 {
    margin: 15px 0;
}

h1 {
    font-size: 2.8em;
    line-height: 1.1;
    color: var(--text-color);
    text-shadow: var(--primary-glow);
}

h2 {
    font-size: 2.5em;
    color: var(--text-color);
    text-shadow: var(--secondary-glow);
}

h3 {
    font-size: 2.5em;
    color: var(--text-color);
    text-shadow: var(--primary-glow);
}

h4 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--quaternary-color);
    text-shadow: var(--quaternary-glow);
}

h5 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--tertiary-color);
    text-shadow: var(--tertiary-glow);
}

/* Texte */
p {
    font-size: 1.2em;
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto;
    color: var(--text-color);
    text-shadow: var(--text-glow);
}

/* Text-Highlight */
strong {
    font-size: 1.4em;
    font-weight: bold;
    margin: 20px 0;
    color: var(--highlight-color);
    text-shadow: var(--highlight-glow);
}

/* blockquote */
blockquote {
    font-style: italic;
    font-size: 1.4em;
    text-align: center;
    color: var(--text-color);
    text-shadow: var(--text-glow);
    margin: 40px 0;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

/* Bio-Highlight */
.bio-highlight {
    font-size: 1.6em;
    font-weight: bold;
    margin: 20px 0;
}

/* Signature */
.signature {
    font-weight: bold;
    font-size: 1.6em;
    text-align: center;
    color: var(--text-color);
    margin-top: 50px;
    text-shadow: 0 0 12px var(--primary-color);
}

/* Site Credit */
.site-credit {
    margin-top: 60px;
    font-size: 1.4em;
    opacity: 0.9;
}

.site-credit br {
    margin-bottom: 10px;
}

/* Primary Socials (Home) */
.primary-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.primary-socials a {
    position: relative; /* Anchor für Badge */
    display: inline-block; /* Neu: Für besseren Transform-Kontext */
    transition: all 0.3s ease; /* Neu: Transition auf Parent für smooth Hover */
}

.primary-socials a:hover {
    transform: scale(1.25) rotate(15deg); /* Neu: Hover-Transform hierher verschoben – Badge dreht mit! */
}

.primary-socials img {
    width: 50px;
    height: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.primary-socials img:hover {
    transform: scale(1.25) rotate(15deg);
    filter: hue-rotate(360deg);
    animation: rainbowGlow 1.2s linear infinite;
}

@keyframes rainbowGlow {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Social Links (allgemein – für #links, #support etc.) */
.social-link, .socials a {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--primary-color);
    gap: 12px;
    position: relative; /* Neu: Anchor für absolute Badges! */
}

.social-link:hover, .socials a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--secondary-color);
    background: rgba(255, 255, 255, 0.25);
}

.social-link img, .socials img {
    width: 36px;
    height: 36px;
}

#links p {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

/* OnlyFans-Special (starke Animation) */
.onlyfans {
    animation: glow 1.8s ease-in-out infinite alternate, pulse 2.5s ease-in-out infinite;
}

@keyframes glow {
    from { box-shadow: 0 0 10px #fff, 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
    to   { box-shadow: 0 0 15px #fff, 0 0 40px var(--secondary-color), 0 0 60px var(--primary-color); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}

/* New-Badge (allgemein – für Links, Primaries, und jetzt Sections) */
.new-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: rgba(0, 255, 255, 0.85);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 0 12px var(--secondary-color);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 10; /* Neu: Über Inhalt schweben */
}

/* Spezifische Anpassung für Badges in Primary Socials */
.primary-socials .new-badge {
    top: -17px;
    right: -10px;
    transform: scale(0.7); /* Reduziert auf 70% – proportional skaliert (Größe, Padding, etc.) */
    transform-origin: top right; /* Skalierung von oben rechts aus, damit es nicht verrutscht */
}

/* Speziell für Section-Badges (größer, mehr Glow) */
.section-badge {
    top: 10px; /* Neu: Position oben rechts in Section */
    right: 10px;
    font-size: 1.2em; /* Etwas größer für Sections */
    padding: 6px 14px;
}

/* Hover-Effekt optional: Badge mitglitzern lassen */
section:hover .section-badge {
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Navigation Dots */
.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 100;
}

.nav-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
    transform: scale(1.4);
}

img[data-optimized="false"] {
    visibility: hidden;  /* Versteckt bis optimiert */
}

/* Globale Interaktive Bilder (für Bio, Talente, etc.) */
.img-container {
    display: block;  /* Block für Float-Support */
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;  /* Lässt Glow & Hover vollständig sichtbar sein */
    padding: 20px 0;    /* Extra Padding für mehr Raum um den Container */
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    overflow: visible;  /* Ensures no clipping on rotate */
}

.interactive-img {
    float: left;  /* Bild links floaten (auf Desktop) */
    margin: 0 20px 20px 20px;  /* Extra Margin links für Glow-Raum, rechts/unten für Text-Abstand */
    width: 250px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--secondary-color);  /* Türkis-Rahmen */
    box-shadow: var(--primary-glow);  /* Pinker Glow */
    animation: glowPulse 2.5s ease-in-out infinite;  /* Puls-Effekt */
    transition: transform 0.3s ease, box-shadow 0.3s ease;  /* Smooth Hover */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);  /* Forces GPU acceleration */
    transform: translate3d(0, 0, 0);
}

/* Hover für Maus-Devices (Desktop) – bleibt nur da aktiv */
@media (hover: hover) and (pointer: fine) {
    .interactive-img:hover {
        transform: translateY(-10px) rotate(5deg);  /* Schwebt hoch und kippt – verspielt! */
        box-shadow: 0 0 30px var(--secondary-color), 0 0 50px var(--primary-color);  /* Stärkerer Glow */
    }
}

/* Media Query für Mobile: Float deaktivieren, stacken – keine Bewegung hier */
@media (max-width: 768px) {
    .img-container {
        text-align: center;  /* Zentriert Text auf Mobile */
    }
    .interactive-img {
        float: none;
        margin: 0 auto 20px auto;  /* Zentriert das Bild, kein extra links */
        display: block;
        width: 100%;
        max-width: 300px;
    }
}

/* Globale Keyframes */
@keyframes glowPulseText {
    0%, 100% { text-shadow: 0 0 10px var(--secondary-color); }
    50%      { text-shadow: 0 0 30px var(--secondary-color), 0 0 60px var(--primary-color); }
}

@keyframes floatAndTwinkle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%      { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

/* Globale Interaktive IFrames (ähnlich wie .interactive-img) */
.interactive-iframe {
    float: left;  /* Wie bei Bildern: Links floaten auf Desktop */
    margin: 0 20px 20px 20px;  /* Extra Raum für Glow und Text-Abstand */
    width: 250px;  /* Passe an deine gewünschte Größe an (wie Bilder) */
    height: auto;  /* Oder fix, je nach Animation */
    border-radius: 20px;  /* Runder Rand wie bei Bildern */
    border: 4px solid var(--secondary-color);  /* Türkis-Rahmen */
    box-shadow: var(--primary-glow);  /* Pinker Glow */
    animation: glowPulse 2.5s ease-in-out infinite;  /* Puls-Effekt wie bei Bildern */
    transition: transform 0.3s ease, box-shadow 0.3s ease;  /* Smooth Hover */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);  /* GPU-Acceleration */
    transform: translate3d(0, 0, 0);
}

/* Hover für Maus-Devices (wie bei .interactive-img) */
@media (hover: hover) and (pointer: fine) {
    .interactive-iframe:hover {
        transform: translateY(-10px) rotate(5deg);  /* Schwebt hoch und kippt – verspielt! */
        box-shadow: 0 0 30px var(--secondary-color), 0 0 50px var(--primary-color);  /* Stärkerer Glow */
    }
}

/* Mobile: Kein Float, zentriert (wie bei .interactive-img) */
@media (max-width: 768px) {
    .interactive-iframe {
        float: none;
        margin: 0 auto 20px auto;  /* Zentriert */
        display: block;
        width: 100%;
        max-width: 300px;  /* Passe an, damit's nicht zu breit wird */
    }
}

/* namen - Section */
#namen {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.7;
}

#namen p {
    margin: 20px 0;
    text-align: left;
}

#namen .highlight-sentence {
    text-align: center;  /* Explizit zentrieren, falls du das behalten willst */
    font-size: 1.5em;    /* Größer machen – z. B. 1.4em für +20% Größe, oder 1.6em für stärkeren Impact */
    font-style: italic;  /* Optional: Italic für mehr Poesie-Feeling */
    margin: 30px auto;   /* Mehr Abstand oben/unten, auto für Zentrierung */
    max-width: 700px;    /* Etwas schmaler, damit er nicht zu breit wird und zentriert bleibt */
}

#namen .summary-sentence {
    text-align: center;  /* Zentriert! */
    font-size: 1.3em;    /* Etwas größer für den Glow-Effekt – 1.3em ist subtil, aber abhebend; probier 1.5em für bolder */
    font-style: italic;  /* Optional: Italic für extra Poesie und Weichheit, passt zu "nordisch-weich" */
    margin: 40px auto;   /* Mehr Abstand, auto für perfekte Zentrierung */
    max-width: 700px;    /* Schmaler halten, damit's auf breiten Screens nicht streckt */
}

.namen-magic {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 1.8em;
    font-weight: bold;
}

.namen-magic span {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 0 15px var(--primary-color);
    transition: all 0.4s ease;
}

.namen-magic span:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--secondary-color);
}

/* Steckbrief - Section */
#steckbrief {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 20px;
}

.steckbrief-list {
    list-style: none;
    padding: 0;
    font-size: 1.15em;
    line-height: 1.6;
}

.steckbrief-list li {
    margin: 21px 0px;
    padding-left: 35px;
    position: relative;
    text-align: left;
}

.steckbrief-list li::before {
    content: "✨ ";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.4em;
}

/* Talente - Section */
#talente {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.talente {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.talent-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-align: left;
}

.talent-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 170, 0.3);
    border-color: var(--secondary-color);
}

.talent-item p {
    font-size: 1.05em;
    line-height: 1.6;
}

/* mein-body - Section */
#mein-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.body-section {
    margin: 25px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.body-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin: 15px 0;
}

/* nacktheit-sexualitaet - Section */
#nacktheit-sexualitaet {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.aufklaerung-card {
    margin: 25px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.aufklaerung-card h5 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.aufklaerung-card p {
    font-size: 1.1em;
    line-height: 1.7;
    margin: 15px 0;
}

.highlight {
    border-color: var(--primary-color);
    background: rgba(255, 0, 170, 0.08);
}

.abschluss-emoji {
    font-size: 2.1em;
    text-align: center;
    margin-top: 40px;
    display: block;
    color: var(--note-color);
    text-shadow: var(--note-glow);
}

/* Support - Section */
#support {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.support-heart {
    font-size: 1.15em;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    border: 2px dashed rgba(255, 102, 170, 0.4);
    box-shadow: 0 10px 40px rgba(255, 0, 170, 0.15);
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-list li {
    margin: 18px 0;
    padding-left: 40px;
    position: relative;
}

.support-list li::before {
    content: "💗 ";
    position: absolute;
    left: 0;
    font-size: 1.5em;
}

.support-list strong {
    color: var(--quaternary-color);
    text-shadow: var(--quaternary-glow);
}

.big-heart {
    font-size: 1.5em;
    font-weight: bold;
    margin: 50px 0 30px;
    color: var(--tertiary-color);
    text-shadow: var(--tertiary-glow);
}
