﻿:root {
    --max: 1120px;
    --pad: 28px;
    --gap: 26px;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 20px 45px rgba(0,0,0,0.22);
    --panel-bg: rgba(255,255,255,0.72);
    --panel-border: rgba(70,70,90,0.18);
    --beamy: #7D85D0;
    --text: #111;
    --muted: rgba(0,0,0,0.62);
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: 0;
    font-family: 'Times New Roman', sans-serif;
    font-size: 15px;
    background: url("../../Images/registerBackground2.png");
    overflow-x: hidden;
}

/* NAV SUBTEXT used inside dropdown */
.navSub {
    display: block;
    margin-left: 20px;
    margin-top: -12px;
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 14px;
    color: rgba(0,0,0,0.72);
}


/* =========================================================
   PAGE LAYOUT
   ========================================================= */

.solPage {
    padding: 170px 16px 60px; /* push below fixed nav */
}

.solWrap {
    max-width: var(--max);
    margin: 0 auto;
    border-radius: var(--radius);
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

    .solWrap::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(248, 248, 255, 0.50);
        pointer-events: none;
    }

    .solWrap > * {
        position: relative;
        z-index: 1;
    }

/* =========================================================
   HERO
   ========================================================= */

.solHero {
    padding: 42px var(--pad) 26px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.solHero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .35em;
    text-transform: uppercase;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(125,133,208,0.35);
    background: rgba(125,133,208,0.14);
    color: rgba(0,0,0,0.78);
    font-weight: 700;
    margin-bottom: 14px;
}

.solHero__title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--beamy) 0%, #777B7E 70%, var(--beamy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 6px rgba(125,133,208,0.25);
    font-family: 'New Machiato';
}

.solHero__subtitle {
    margin: 0 auto 16px;
    max-width: 86ch;
    line-height: 1.65;
    opacity: 0.9;
    color: rgba(0,0,0,0.78);
    font-size: 1.08rem;
}

.solHero__note {
    margin: 12px auto 0;
    max-width: 86ch;
    color: rgba(0,0,0,0.70);
}

/* Chips */
.solChips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: rgba(125,133,208,0.14);
    border: 1px solid rgba(125,133,208,0.45);
    color: rgba(0,0,0,0.78);
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

    .chip:hover {
        transform: translateY(-2px);
        background: rgba(125,133,208,0.20);
        box-shadow: 0 18px 40px rgba(0,0,0,0.16);
        text-decoration: none;
    }


/* =========================================================
   PANELS
   ========================================================= */

.solPanel {
    padding: var(--pad);
}

    .solPanel + .solPanel {
        border-top: 1px solid rgba(0,0,0,0.10);
    }

.solGrid {
    display: grid;
    gap: var(--gap);
    align-items: center;
}

    .solGrid.two-col {
        grid-template-columns: 1.05fr 0.95fr;
    }

@media (max-width: 980px) {
    .solGrid.two-col {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 981px) {
    .swap-on-desktop {
        grid-template-columns: 0.95fr 1.05fr;
    }

        .swap-on-desktop .solCopy {
            order: 1;
        }

        .swap-on-desktop .solMedia {
            order: 2;
        }
}

.solNum {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(125,133,208,0.14);
    border: 1px solid rgba(125,133,208,0.25);
    color: rgba(0,0,0,0.75);
    font-weight: 800;
    margin-bottom: 10px;
}

.solTitle {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    color: var(--beamy);
    letter-spacing: 0.2px;
    text-align: center;
}

.solText {
    margin: 0 0 14px;
    line-height: 1.75;
    font-size: clamp(1.02rem, 1.1vw, 1.18rem);
    background: linear-gradient(90deg, var(--beamy) 0%, #777B7E 70%, var(--beamy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

/* list */
.solList {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

    .solList li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.55;
        color: rgba(0,0,0,0.72);
    }

        .solList li::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-top: 7px;
            background: rgba(125,133,208,0.95);
            box-shadow: 0 0 0 4px rgba(125,133,208,0.18);
            flex: 0 0 auto;
        }

/* callout */
.solCallout {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 999px;
    background: rgba(125,133,208,0.10);
    border: 1px solid rgba(125,133,208,0.25);
    color: rgba(0,0,0,0.78);
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: baseline;
}

    .solCallout.soft {
        background: rgba(0,0,0,0.05);
        border-color: rgba(0,0,0,0.18);
    }

/* quote */
.solQuote {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(125,133,208,0.10);
    border: 1px solid rgba(125,133,208,0.25);
    color: rgba(0,0,0,0.78);
    line-height: 1.6;
}

/* =========================================================
   MEDIA
   ========================================================= */

.solMedia .mediaSlot,
.mediaSlot {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.65);
    box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}

.mediaSlot--mini {
    border-radius: var(--radius);
}

.mediaStack {
    display: grid;
    gap: 14px;
}

.mediaSlot--mini img {
    height: 220px;
}

.solMedia img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .solMedia img {
        height: 320px;
    }
}

.mediaHint {
    margin: 10px 4px 0;
    font-size: 0.95rem;
    opacity: 0.68;
    color: rgba(0,0,0,0.70);
}

/* style grid (4 images) */
.styleGrid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 720px) {
    .styleGrid {
        grid-template-columns: 1fr;
    }
}

.zoomThumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

    .zoomThumb:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 44px rgba(0,0,0,0.18);
    }

/* =========================================================
   CTA
   ========================================================= */

.solCTA {
    padding: 46px var(--pad) 54px;
    border-top: 1px solid rgba(0,0,0,0.10);
    text-align: center;
}

.solCTA__title {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    background: linear-gradient(90deg, var(--beamy) 0%, #777B7E 70%, var(--beamy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 6px rgba(125,133,208,0.25);
}

.solCTA__text {
    margin: 0 auto 16px;
    max-width: 92ch;
    line-height: 1.75;
    color: rgba(0,0,0,0.72);
    font-size: 1.05rem;
}

.solCTA__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* buttons (same as buyNow) */
.beamyBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: rgba(125,133,208,0.16);
    border: 1px solid rgba(125,133,208,0.45);
    color: rgba(0,0,0,0.78);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

    .beamyBtn:hover {
        transform: translateY(-2px);
        background: rgba(125,133,208,0.22);
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        text-decoration: none;
    }

.beamyBtn--alt {
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.18);
}

/* =========================================================
   TEXT ANIMATION
   ========================================================= */
.textFadeUp {
    opacity: 0;
    transform: translateY(10px);
    animation: textFadeUp 700ms cubic-bezier(.2,.8,.2,1) forwards;
}

.textDelay0 {
    animation-delay: 0ms;
}

.textDelay1 {
    animation-delay: 120ms;
}

.textDelay2 {
    animation-delay: 240ms;
}

.textDelay3 {
    animation-delay: 360ms;
}

.textDelay4 {
    animation-delay: 480ms;
}

@keyframes textFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .textFadeUp {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* =========================================================
   SHARED MODAL (Beamy Blue overlay + centered panel)
   Uses #beamyModal + beamy-modal.js
   ========================================================= */
.beamyModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

    .beamyModal.is-open {
        display: block;
    }

/* ✅ Beamy Blue @ 0.85 */
.beamyModal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(125,133,208,0.85); /* #7D85D0 @ .85 */
    backdrop-filter: blur(10px);
}

/* ✅ Centered on mobile + desktop */
.beamyModal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 22px;
    padding: 14px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 28px 90px rgba(0,0,0,0.55);
    overflow: hidden;
}

.beamyModal__img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    background: rgba(0,0,0,0.14);
}

.beamyModal__caption {
    margin-top: 10px;
    text-align: center;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-family: 'New Machiato';
}

.beamyModal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    font-size: 18px;
}

    .beamyModal__close:hover {
        background: rgba(255,255,255,0.18);
    }


/* ✅ Remove underline on hover/focus for Beamy buttons */
.beamyBtn,
.beamyBtn:hover,
.beamyBtn:focus,
.beamyBtn:focus-visible,
.beamyBtn:active {
    text-decoration: none !important;
}

/* ✅ no magnifying glass cursor */
.zoomThumb {
    cursor: pointer;
}

/* ✅ modal nav buttons (prev/next) */
.beamyModal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.92);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    z-index: 5;
}

    .beamyModal__nav:hover {
        background: rgba(255,255,255,0.18);
    }

.beamyModal__nav--prev {
    left: 10px;
}

.beamyModal__nav--next {
    right: 10px;
}

/* ✅ smaller on mobile */
@media (max-width: 640px) {
    .beamyModal__nav {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }
}
