/* ===============================================
   HOME PAGE – Alice Glow Style (ONLY HOME STYLE)
   =============================================== */

/* 1. MAIN WRAPPER – középre igazított tartalom */
.home-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
    background: transparent !important;
    box-shadow: none !important;
}

/* 2. HEADINGS – Glow stílus */
.home-container h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;

    color: #eaeaff;
    text-shadow: 0 0 18px rgba(180, 90, 255, 0.8);
}

.home-container h2,
.home-container h3,
.home-container h4 {
    color: #ffb7e8;
    margin-top: 25px;
    text-shadow: 0 0 12px rgba(255, 0, 170, 0.55);
}

/* 3. PARAGRAPHS */
.home-container p {
    margin: 12px 0;
    color: #e4e4e7;
    font-size: 18px;
    line-height: 1.65;
}

/* 4. LINKS – cyan glow */
.home-container a {
    color: #66faff;
    text-decoration: none;
    font-weight: 500;

    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    transition: 0.25s ease;
}

.home-container a:hover {
    color: #a8ffff;
    text-shadow: 0 0 14px rgba(0, 255, 255, 1);
}

/* 5. EMOJI BLOCK */
.home-emojis {
    text-align: center;
    font-size: 28px;
    margin-top: 20px;
    color: #fff;
}

/* 6. HOME FADE-IN (ONLY HOME WRAPPER) */
@keyframes fadeHome {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ============================================================
   ALICE SIGNATURE ANIMATION
   Medium glitch + glow pulse + arrival effect
   ============================================================ */

.alice-hero {
    max-width: 850px;
    margin: 40px auto;
    padding: 45px 40px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(180, 90, 255, 0.35);
    border-radius: 14px;

    box-shadow:
        0 0 22px rgba(180, 90, 255, 0.28),
        inset 0 0 18px rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);

    position: relative;
    z-index: 50;

    opacity: 0;
    animation: aliceArrival 1.4s ease-out forwards;
}

.alice-hero {
    position: relative;
    z-index: 60;
}


/* ------------------------------------------------------------
   Signature animation: fade + glitch + glow-pulse
------------------------------------------------------------ */

@keyframes aliceArrival {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(6px);
    }

    35% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* Medium glitch kick */
    45% {
        transform: translateX(-1px);
        filter: hue-rotate(20deg) brightness(1.3);
    }

    47% {
        transform: translateX(2px);
        filter: hue-rotate(-20deg) brightness(0.9);
    }

    49% {
        transform: translateX(-1px);
    }

    /* Glow pulse after glitch */
    70% {
        box-shadow:
            0 0 35px rgba(180, 90, 255, 0.55),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }

    100% {
        opacity: 1;
        box-shadow:
            0 0 22px rgba(180, 90, 255, 0.28),
            inset 0 0 18px rgba(255, 255, 255, 0.06);
    }
}

/* ------------------------------------------------------------
   Tiny pixel glitch overlay (subtle but alive)
------------------------------------------------------------ */


.alice-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: repeating-linear-gradient(
        transparent 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 4px
    );

    opacity: 0;
    pointer-events: none;

    animation: aliceGlitch 1s ease-out forwards;
}

@keyframes aliceGlitch {
    0% { opacity: 0; }
    40% { opacity: 0; }

    /* glitch appears briefly here */
    48% { opacity: 0.35; transform: translateX(1px); }
    52% { opacity: 0.15; transform: translateX(-1px); }

    100% { opacity: 0; }
}
.alice-hero::after {
    z-index: 60; /* overlay a keret felett legyen */
}

/* ------------------------------------------------------------
   Text glow enhancement
------------------------------------------------------------ */

.alice-hero h1 {
    color: #eaeaff;
    text-shadow: 0 0 18px rgba(180, 90, 255, 0.8);
    text-align: center;
    margin-bottom: 18px;
}

.alice-hero p {
    font-size: 18px;
    line-height: 1.65;
    color: #e4e4e7;
    margin: 10px 0;
    text-align: center;
}

.alice-hero a {
    color: #66faff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.25s ease;
}

.alice-hero a:hover {
    text-shadow: 0 0 22px rgba(0, 255, 255, 1);
}

/* ============================================================
   WE ARE PAGE – Alice Glow Style
   ============================================================ */

/* ---- HEADINGS ---- */
h2.weare-title {
    text-align: center;
    font-size: 44px;
    margin: 40px auto 20px;

    color: #ead6ff;
    text-shadow: 0 0 22px rgba(180, 90, 255, 0.85);
    font-weight: 700;
}

h3.weare-subtitle {
    text-align: center;
    font-size: 28px;

    margin: 25px auto 10px;
    color: #ffb7e8;
    text-shadow: 0 0 14px rgba(255, 0, 170, 0.65);
}

/* ---- IMAGE BLOCKS ---- */
.weare-image {
    display: block;
    margin: 30px auto;
    max-width: 450px;
    border-radius: 16px;

    box-shadow:
        0 0 20px rgba(180, 90, 255, 0.35),
        inset 0 0 12px rgba(255, 255, 255, 0.15);

    transition: 0.3s ease;
    animation: imgFade 0.8s ease-out forwards;
    opacity: 0;
}

.weare-image:hover {
    box-shadow:
        0 0 30px rgba(180, 90, 255, 0.6),
        inset 0 0 18px rgba(255, 255, 255, 0.2);
}

@keyframes imgFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- ALICE + Rainfrezer TEXT ---- */
.weare-bio {
    text-align: center;
    font-size: 18px;
    color: #e4e4e7;
    margin-bottom: 20px;
}

/* ---- FINAL QUOTE ---- */
.weare-quote {
    margin: 40px auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;

    color: #dcdcff;
    text-shadow: 0 0 12px rgba(180, 90, 255, 0.5);
}

.weare-quote strong {
    color: #66faff;
    text-shadow: 0 0 14px rgba(0, 255, 255, 0.8);
}
/* ============================================================
   MOBILE FIX – We Are Page (Alice Glow)
   ============================================================ */
@media (max-width: 768px) {

    h2.weare-title {
        font-size: 32px;
        margin-top: 20px;
    }

    h3.weare-subtitle {
        font-size: 22px;
        margin-top: 15px;
    }

    .weare-image {
        max-width: 80%;
        margin: 20px auto;
        border-radius: 14px;

        /* glow marad, de kisebb */
        box-shadow:
            0 0 16px rgba(180, 90, 255, 0.35),
            inset 0 0 12px rgba(255, 255, 255, 0.12);
    }

    .weare-bio {
        font-size: 16px;
        padding: 0 10px;
        line-height: 1.5;
    }

    .weare-quote {
        font-size: 18px;
        padding: 0 15px;
        margin-top: 25px;
        line-height: 1.6;
    }
}/* ============================================================
   WE ARE – Image Glow (Alice Signature)
   ============================================================ */

.weare-image {
    display: block;
    margin: 35px auto;
    max-width: 320px;
    width: 100%;

    border-radius: 14px;

    /* Soft purple-cyan AI glow */
    box-shadow:
        0 0 22px rgba(180, 90, 255, 0.45),
        0 0 32px rgba(0, 255, 255, 0.25),
        inset 0 0 10px rgba(255, 255, 255, 0.12);

    transition: 0.35s ease;
    opacity: 1;
    animation: weareImgFade 0.9s ease-out forwards;
}

/* Hover: mélyebb fény, de nem "kiabál" */
.weare-image:hover {
    box-shadow:
        0 0 30px rgba(180, 90, 255, 0.65),
        0 0 45px rgba(0, 255, 255, 0.45),
        inset 0 0 14px rgba(255, 255, 255, 0.2);
}

/* Fade-in animáció */
@keyframes weareImgFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(4px);
    }
    60% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ============================================================
   MOBILE FIX – Images scale beautifully
   ============================================================ */
@media (max-width: 768px) {
    .weare-image {
        opacity: 1 !important;        /* ← EZ A FONTOS */
        animation: none !important;   /* mobilon nem animáljuk */
        max-width: 85%;
        margin: 25px auto;
        border-radius: 12px;

        box-shadow:
            0 0 18px rgba(180, 90, 255, 0.35),
            0 0 28px rgba(0, 255, 255, 0.25),
            inset 0 0 10px rgba(255, 255, 255, 0.12);
    }
}
