﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #130820 0, #050308 45%, #020105 100%);
    color: #f5f2ff;
    overflow-x: hidden;
}

:root {
    --hero-image: url('../../Content/images/hero-costume.png'); /* CHANGE THIS TO YOUR COSTUME IMAGE */
    --accent-pink: #ff2b7b;
    --accent-purple: #8b5bff;
    --accent-gold: #ffb347;
    --glass-bg: rgba(8, 5, 20, 0.75);
}

/* FULLSCREEN HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    overflow: hidden;
    color: #ffffff;
}

    /* Costume background + color shift animation */
    .hero::before {
        content: "";
        position: absolute;
        inset: -30px;
        background-image: var(--hero-image);
        background-size: cover;
        background-position: center;
        filter: brightness(0.35) contrast(1.2) saturate(1.4) hue-rotate(0deg);
        animation: costumeHueShift 16s ease-in-out infinite alternate;
        z-index: -2;
    }

    /* Gradient glow over the background */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 0%, rgba(255, 43, 123, 0.65), transparent 55%), radial-gradient(circle at 85% 10%, rgba(139, 91, 255, 0.65), transparent 55%), radial-gradient(circle at 50% 100%, rgba(255, 179, 71, 0.7), transparent 55%);
        mix-blend-mode: screen;
        opacity: 0.8;
        z-index: -1;
    }

@@keyframes costumeHueShift {
    0% {
        filter: brightness(0.35) contrast(1.2) saturate(1.4) hue-rotate(0deg);
    }

    40% {
        filter: brightness(0.4) contrast(1.25) saturate(1.6) hue-rotate(80deg);
    }

    70% {
        filter: brightness(0.38) contrast(1.3) saturate(1.7) hue-rotate(140deg);
    }

    100% {
        filter: brightness(0.35) contrast(1.2) saturate(1.4) hue-rotate(200deg);
    }
}

.hero-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 auto 0.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 43, 123, 0.15), rgba(139, 91, 255, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f7e9ff;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 auto 0.25rem;
    padding: 0.4rem 0.9rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-pink));
    box-shadow: 0 0 12px rgba(255, 179, 71, 0.9);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

    .hero-title span {
        display: block;
    }

.hero-title-main {
    font-weight: 700;
    text-shadow: 0 0 28px rgba(0, 0, 0, 0.75);
}

.hero-title-sub {
    font-weight: 300;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    letter-spacing: 0.35em;
    opacity: 0.9;
}

.hero-subtext {
    max-width: 640px;
    margin: 0.25rem auto 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #e9ddff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
}

.hero-cta {
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
}

.hero-button {
    position: relative;
    border: none;
    cursor: pointer;
    padding: 0;
    /*border-radius: 999px;*/
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-button-bg {
    padding: 1.15rem 2.8rem;
    background: radial-gradient(circle at 0 0, var(--accent-gold), transparent 40%), linear-gradient(120deg, var(--accent-pink), var(--accent-purple));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    color: #050308;
}

    .hero-button-bg span.icon {
        display: inline-flex;
        width: 22px;
        height: 22px;
        border-radius: 999px;
        border: 1px solid rgba(5, 3, 15, 0.4);
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.6);
    }

.hero-button-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.3);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity .35s ease;
    box-shadow: 0 0 40px rgba(255, 43, 123, 0.6), 0 0 70px rgba(139, 91, 255, 0.7);
}

.hero-button:hover .hero-button-glow {
    opacity: 1;
}

.hero-cta-note {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* MODAL FORM */

.no-scroll {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(19, 8, 32, 0.95) 0, rgba(5, 3, 12, 0.98) 40%, rgba(1, 0, 3, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

    .modal-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

.modal-panel {
    width: 100%;
    max-width: 840px;
    background: radial-gradient(circle at 0 0, rgba(255, 179, 71, 0.18), transparent 55%), radial-gradient(circle at 100% 0, rgba(255, 43, 123, 0.18), transparent 55%), linear-gradient(145deg, rgba(5, 3, 15, 0.96), rgba(9, 6, 30, 0.98));
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(139, 91, 255, 0.4);
    padding: 1.5rem 1.6rem 1.7rem;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-title-wrap {
    text-align: left;
}

.modal-title {
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.modal-subtitle {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    color: #e0d4ff;
    opacity: 0.95;
}

.modal-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(12, 115, 255, 0.15);
    border: 1px solid rgba(145, 193, 255, 0.4);
    color: #c2ddff;
}

.modal-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 3, 15, 0.9);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background .2s ease, transform .18s ease;
}

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }

.modal-body {
    overflow-y: auto;
    padding-right: 0.4rem;
    margin-right: -0.4rem;
    padding-top: 0.25rem;
}

/* FORM */

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem 1.5rem;
}

/*.form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.9;
}*/

.required-dot {
    color: var(--accent-pink);
    margin-left: 0.18rem;
}

/*.form-control,
.form-select {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #f1f1f1;
    color: rgba(0, 0, 0, 0.85);
    padding: 0.7rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .form-control::placeholder {
        color: rgba(0, 0, 0, 0.4);
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.4);
        background: rgba(10, 7, 28, 0.98);
        color : white;
    }

select.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
    background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.sex-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sex-pill {
    position: relative;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    cursor: pointer;
    color: #f4edff;
    background: rgba(8, 5, 25, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background .2s ease, border-color .2s ease, transform .18s ease;
}

    .sex-pill span.dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.5);
    }

    .sex-pill input[type="radio"] {
        display: none;
    }

    .sex-pill.selected {
        background: radial-gradient(circle at 0 0, rgba(255, 179, 71, 0.45), transparent 60%), linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-1px);
    }

        .sex-pill.selected span.dot {
            background: #050308;
        }*/

.validation-message {
    font-size: 0.78rem;
    color: #ff9fb1;
    margin-top: 0.1rem;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.submit-btn {
    border: none;
    cursor: pointer;
/*    border-radius: 999px;*/
    padding: 0.95rem 2.4rem;
    background: linear-gradient(120deg, var(--accent-pink), var(--accent-purple));
    color: #050308;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 43, 123, 0.5);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

    .submit-btn span.icon {
        font-size: 1rem;
    }

    .submit-btn:hover {
        transform: translateY(-1px);
        filter: brightness(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 24px rgba(139, 91, 255, 0.6);
    }

.form-footnote {
    font-size: 0.76rem;
    max-width: 320px;
    opacity: 0.9;
    color: #d4c7ff;
}

.toast-success {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(12, 46, 27, 0.96);
    border-radius: 0.9rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #e5fff0;
    border: 1px solid rgba(163, 230, 185, 0.55);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.85);
    z-index: 60;
}

    .toast-success span.icon {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(22, 163, 74, 0.9);
        font-size: 0.9rem;
    }

@media (max-width: 768px) {
    .modal-panel {
        padding: 1.15rem 1.1rem 1.35rem;
        border-radius: 1.2rem;
    }

    .hero-cta-note {
        max-width: 260px;
    }
}

.validation-summary {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    background: rgba(127, 29, 29, 0.4);
    border: 1px solid rgba(248, 113, 113, 0.6);
    color: #fee2e2;
    font-size: 0.85rem;
}


