/* Startsida – hero, horoskop, feature-grid */

.hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    display: block;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.55);
    cursor: pointer;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-fx {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
}

.hero-star {
    fill: rgba(255, 215, 120, 0.9);
    filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.35));
}

.hs1 { animation: twinkle 2.8s infinite ease-in-out; }
.hs2 { animation: twinkle 3.6s infinite ease-in-out 0.5s; }
.hs3 { animation: twinkle 2.2s infinite ease-in-out 1.2s; }
.hs4 { animation: twinkle 4s infinite ease-in-out 0.8s; }
.hs5 { animation: twinkle 3s infinite ease-in-out 1.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.hero-fog {
    fill: rgba(120, 90, 255, 0.08);
    animation: drift 16s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: translateX(-3%); }
    100% { transform: translateX(3%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #f5d76e;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.hero-sub {
    color: #f0e8d8;
    font-size: clamp(0.8rem, 1.8vw, 1.1rem);
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.25rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.index-pricing-hint {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.82rem;
    color: #8a7f6a;
    line-height: 1.5;
}

.index-pricing-hint a {
    color: #d4af37;
}

.feature-section {
    margin-bottom: 2rem;
}

.feature-section-heading {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    color: #d4af37;
    font-size: 1.25rem;
    margin: 0 0 1rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.feature-card h3 { color: #d4af37; margin-bottom: 0.5rem; font-size: 1rem; }
.feature-card p { font-size: 0.85rem; color: #a09880; margin-bottom: 1rem; line-height: 1.5; }

.latest-preview {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.latest-preview .lp-date { font-size: 0.7rem; color: #8a7f6a; }
.latest-preview .lp-cards { font-size: 0.78rem; color: #d4af37; margin-top: 0.2rem; }
.latest-preview .lp-question { font-size: 0.75rem; color: #c0b090; font-style: italic; margin-top: 0.15rem; }

.horoscope-card {
    max-width: 750px;
    margin: -1rem auto 2rem;
    background: linear-gradient(135deg, rgba(10, 6, 24, 0.95), rgba(42, 31, 61, 0.88));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.horoscope-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.horoscope-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    position: relative;
}

.horoscope-title {
    color: #f5d76e;
    font-size: 1.15rem;
    font-weight: 700;
}

.horoscope-date { color: #8a7f6a; font-size: 0.72rem; }

.horoscope-energy { display: flex; gap: 2px; align-items: center; }

.horoscope-energy-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transition: background 0.3s;
}

.horoscope-energy-dot.active {
    background: #d4af37;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.horoscope-oneliner {
    color: #d4af37;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    border-left: 3px solid rgba(212, 175, 55, 0.4);
    padding-left: 0.8rem;
}

.horoscope-content {
    color: #d0c0a0;
    font-size: 0.88rem;
    line-height: 1.7;
    position: relative;
}

.horoscope-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.horoscope-kw {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    font-size: 0.68rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.horoscope-tarot {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: #8a7f6a;
    font-style: italic;
}

.horoscope-daily-card {
    margin-bottom: 0.6rem;
    padding: 0.5rem 0.7rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.horoscope-daily-card img {
    width: 36px;
    height: auto;
    border-radius: 4px;
}

.horoscope-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #1a1a40;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 0 16px 0 10px;
}

.horoscope-pulse-label {
    color: #8a7f6a;
    font-size: 0.65rem;
    margin-bottom: 2px;
    text-align: right;
}

.horo-section {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    position: relative;
}

.horo-section-title {
    color: #d4af37;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem;
}

.horo-section-text {
    color: #c0b090;
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
}

.horo-section--tomorrow {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(142, 108, 200, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border-top: none;
    margin-top: 1.2rem;
}

.horo-tomorrow-text {
    font-style: italic;
}

.horoscope-content p {
    margin: 0 0 0.75rem;
}

.horoscope-content p:last-child {
    margin-bottom: 0;
}

.horoscope-daily-card-name {
    color: #e8dcc8;
    font-size: 0.8rem;
    font-weight: 600;
}

.horoscope-daily-card-kw {
    color: #8e6cc8;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.horoscope-daily-card-meaning {
    color: #c0b090;
    font-size: 0.78rem;
    line-height: 1.5;
    margin-top: 0.2rem;
}

.horo-progress-banner {
    max-width: 750px;
    margin: -0.5rem auto 0.75rem;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: #d4af37;
    background: rgba(142, 108, 200, 0.12);
    border: 1px solid rgba(142, 108, 200, 0.25);
    border-radius: 10px;
}

.horo-body-wait {
    margin-top: 0.6rem;
}

.horo-skeleton-line {
    display: block;
    height: 0.55rem;
    margin-bottom: 0.45rem;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(212,175,55,0.18), rgba(212,175,55,0.08));
    background-size: 200% 100%;
    animation: horoShimmer 1.4s ease-in-out infinite;
}

.horo-skeleton-line.short {
    width: 72%;
}

.horo-body-wait-label {
    display: block;
    margin-top: 0.5rem;
    color: #8a7f6a;
    font-size: 0.72rem;
    font-style: italic;
}

.horo-block--hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    transition: opacity 0.4s ease, max-height 0.5s ease;
}

.horo-block:not(.horo-block--hidden) {
    opacity: 1;
    max-height: 500px;
}

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

.horoscope-bonus-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a1a40;
    background: linear-gradient(135deg, #7dcea0, #52b788);
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(125, 206, 160, 0.25);
    flex-shrink: 0;
}

.horoscope-teaser {
    max-width: 750px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(10, 6, 24, 0.88), rgba(42, 31, 61, 0.75));
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.horoscope-teaser h2 {
    color: #f5d76e;
    font-size: 1.1rem;
    border: none;
    margin-bottom: 0.5rem;
    padding: 0;
}

.horoscope-teaser p {
    color: #c0b090;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.horo-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d4af37;
    animation: horoPulse 1.4s infinite ease-in-out;
}

@keyframes horoPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.horo-float {
    position: absolute;
    opacity: 0;
    animation: horoFloat linear infinite, horoFade ease-in-out infinite;
}

.hf1 { left: 15%; font-size: 1rem; animation-duration: 5s, 2.5s; animation-delay: 0s; }
.hf2 { left: 35%; font-size: 1.2rem; animation-duration: 6s, 3s; animation-delay: 0.8s; }
.hf3 { left: 55%; font-size: 0.9rem; animation-duration: 5.5s, 2.75s; animation-delay: 1.5s; }
.hf4 { left: 75%; font-size: 1.1rem; animation-duration: 7s, 3.5s; animation-delay: 0.3s; }
.hf5 { left: 50%; font-size: 0.8rem; animation-duration: 4.5s, 2.25s; animation-delay: 2s; }

@keyframes horoFloat {
    0% { bottom: -10%; }
    100% { bottom: 110%; }
}

@keyframes horoFade {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 0.7; }
}
