/* JP Christiaens - Style Unique & Créatif */
:root {
    --bg1: #1a1a2e;
    --bg2: #16213e;
    --bg3: #0f3460;
    --accent1: #e94560;
    --accent2: #f7d716;
    --accent3: #00f2fe;
    --white: #f5f6fa;
    --shadow: 0 8px 32px 0 rgba(0,0,0,0.35);
    --radius: 22px;
    --font-main: 'JetBrains Mono', 'Fira Mono', 'Consolas', monospace;
    --font-fun: 'Fredoka One', 'Comic Sans MS', cursive;
}
body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 60%, var(--bg3) 100%);
    color: var(--white);
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--accent3) 0%, transparent 80%);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}
body::after {
    content: '';
    position: fixed;
    bottom: -100px; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--accent1) 0%, transparent 80%);
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}
header {
    margin-top: 54px;
    text-align: center;
    z-index: 2;
    position: relative;
}
.jp-name {
    font-family: 'UnifrakturCook', cursive, fantasy;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00f2fe 0%, #3edfa0 50%, #f7d716 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #00f2fe44);
    text-shadow: 0 0 4px #fff4, 0 2px 8px #00f2fe44;
    animation: none;
}
@keyframes jp-title-glow {
    0% { filter: drop-shadow(0 2px 16px #00f2fe88) drop-shadow(0 0 8px #e9456088); }
    100% { filter: drop-shadow(0 4px 32px #f7d716cc) drop-shadow(0 0 16px #00f2fecc); }
}
.jp-desc {
    font-size: 1.15rem;
    margin-top: 8px;
    color: var(--accent2);
    font-family: var(--font-fun);
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #0006;
}
.jp-location {
    font-size: 1rem;
    margin-top: 4px;
    color: var(--accent3);
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}
nav {
    margin: 36px 0 24px 0;
    display: flex;
    gap: 38px;
    justify-content: center;
    z-index: 2;
    position: relative;
}
nav a {
    color: var(--accent3);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.13rem;
    font-family: var(--font-fun);
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, transparent 60%, var(--accent1) 100%);
    transition: background 0.3s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px #0002;
    position: relative;
}
nav a:hover {
    background: linear-gradient(90deg, var(--accent2) 0%, var(--accent1) 100%);
    color: var(--bg1);
    transform: scale(1.08) rotate(-2deg);
    z-index: 3;
}
.card {
    background: linear-gradient(120deg, #23243a 60%, #2d2e4a 100%);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 38px 32px 32px 32px;
    margin: 22px 0;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 2.5px dashed var(--accent3);
    animation: card-fadein 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes card-fadein {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.card-title {
    font-size: 1.35rem;
    color: var(--accent2);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-family: var(--font-fun);
    text-shadow: 0 1px 8px #0006;
}
.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 18px;
}
.interest {
    background: linear-gradient(90deg, var(--accent3) 0%, var(--accent2) 100%);
    color: var(--bg1);
    border-radius: 16px 4px 16px 4px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 1.08rem;
    font-family: var(--font-fun);
    box-shadow: 0 2px 12px #00f2fe33;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    cursor: pointer;
    border: 2px solid var(--accent1);
    position: relative;
    overflow: hidden;
}
.interest:hover {
    background: linear-gradient(90deg, var(--accent1) 0%, var(--accent2) 100%);
    color: var(--white);
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 6px 32px #e9456088;
    z-index: 2;
}
.interest::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(135deg, transparent, transparent 8px, #fff2 10px, transparent 12px);
    opacity: 0.08;
    pointer-events: none;
}
.about {
    margin-top: 24px;
    font-size: 1.13rem;
    color: var(--white);
    font-family: var(--font-main);
    text-shadow: 0 1px 8px #0004;
}
footer {
    margin-top: 54px;
    color: var(--accent2);
    font-size: 1.01rem;
    text-align: center;
    padding-bottom: 28px;
    font-family: var(--font-fun);
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #0006;
    z-index: 2;
    position: relative;
}
@media (max-width: 700px) {
    .card { padding: 18px 6px; }
    nav { gap: 10px; }
    .jp-name { font-size: 1.5rem; }
    .card { max-width: 98vw; }
}
.jp-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    animation: avatar-pulse 3.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
}
.jp-avatar::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #00f2fe 0%, #e94560 40%, #f7d716 70%, transparent 100%);
    filter: blur(32px) brightness(1.3);
    opacity: 0.85;
    z-index: 1;
    animation: avatar-halo-pulse 2.8s infinite alternate cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes avatar-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.13); }
    100% { transform: scale(1); }
}
@keyframes avatar-halo-pulse {
    0% { opacity: 0.7; filter: blur(32px) brightness(1.1); }
    50% { opacity: 1; filter: blur(48px) brightness(1.5); }
    100% { opacity: 0.7; filter: blur(32px) brightness(1.1); }
}
.jp-avatar img {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px #00f2fecc) drop-shadow(0 0 12px #e94560cc) drop-shadow(0 0 8px #f7d716cc);
    transition: filter 0.3s, transform 0.3s;
    animation: avatar-img-glow 2.2s infinite alternate cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes avatar-img-glow {
    0% { filter: drop-shadow(0 0 24px #00f2fecc) drop-shadow(0 0 12px #e94560cc) drop-shadow(0 0 8px #f7d716cc); }
    100% { filter: drop-shadow(0 0 48px #f7d716cc) drop-shadow(0 0 24px #00f2fecc) drop-shadow(0 0 16px #e94560cc); }
}
.jp-avatar:hover img {
    filter: drop-shadow(0 0 64px #ffb347cc) drop-shadow(0 0 32px #e94560cc) brightness(1.2);
    transform: scale(1.08);
}
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    margin-right: 8px;
    filter: drop-shadow(0 0 6px #00f2fe88);
    transition: transform 0.18s, filter 0.18s;
}
.interest:hover .icon {
    transform: scale(1.25) rotate(-8deg);
    filter: drop-shadow(0 0 16px #e94560cc) brightness(1.2);
}
.jp-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 60% 40%, #23243aee 0%, #0f3460cc 100%);
    backdrop-filter: blur(2.5px);
    align-items: center;
    justify-content: center;
    animation: modal-fadein-bg 0.4s;
}
.jp-modal.open {
    display: flex;
}
@keyframes modal-fadein-bg {
    from { opacity: 0; }
    to { opacity: 1; }
}
.jp-modal-content {
    background: linear-gradient(120deg, #23243a 60%, #2d2e4a 100%);
    border-radius: 22px;
    box-shadow: 0 8px 40px #00f2fe55, 0 2px 12px #e9456088;
    padding: 38px 32px 32px 32px;
    max-width: 370px;
    width: 92vw;
    text-align: center;
    position: relative;
    border: 2.5px dashed var(--accent3);
    animation: modal-zoom 0.35s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modal-zoom {
    0% { transform: scale(0.7) translateY(40px); opacity: 0; }
    80% { transform: scale(1.08) translateY(-8px); opacity: 1; }
    100% { transform: scale(1) translateY(0); }
}
.jp-modal-content h2 {
    font-family: var(--font-fun);
    color: var(--accent2);
    font-size: 1.35rem;
    margin-bottom: 18px;
    text-shadow: 0 1px 8px #0006;
}
.jp-modal-content p {
    color: var(--white);
    font-size: 1.08rem;
    margin-bottom: 0;
    font-family: var(--font-main);
    text-shadow: 0 1px 8px #0004;
}
.jp-modal-close {
    position: absolute;
    top: 12px; right: 18px;
    background: none;
    border: none;
    color: var(--accent1);
    font-size: 2.1rem;
    font-family: var(--font-fun);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
    line-height: 1;
    filter: drop-shadow(0 0 6px #e9456088);
}
.jp-modal-close:hover {
    color: var(--accent2);
    transform: scale(1.2) rotate(8deg);
}
@media (max-width: 500px) {
    .jp-modal-content { padding: 18px 4vw; }
    .jp-modal-content h2 { font-size: 1.1rem; }
    .jp-modal-content p { font-size: 0.98rem; }
}
.jp-contact-btn {
    margin-top: 18px;
    background: linear-gradient(90deg, var(--accent3) 0%, var(--accent1) 100%);
    color: var(--bg1);
    font-family: var(--font-fun);
    font-size: 1.13rem;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    padding: 12px 32px;
    box-shadow: 0 2px 12px #00f2fe33;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    letter-spacing: 1px;
}
.jp-contact-btn:hover {
    background: linear-gradient(90deg, var(--accent2) 0%, var(--accent1) 100%);
    color: var(--white);
    transform: scale(1.08) rotate(-2deg);
}
#modal-contact .jp-modal-content {
    max-width: 420px;
    padding: 38px 32px 32px 32px;
}
#jp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}
#jp-contact-form input[type="text"],
#jp-contact-form input[type="email"],
#jp-contact-form textarea {
    border-radius: 10px;
    border: 2px solid var(--accent3);
    background: #23243a;
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font-main);
    padding: 10px 12px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
#jp-contact-form input:focus,
#jp-contact-form textarea:focus {
    border: 2px solid var(--accent1);
    box-shadow: 0 0 8px #e9456088;
}
#jp-contact-form button[type="submit"] {
    background: linear-gradient(90deg, var(--accent1) 0%, var(--accent3) 100%);
    color: var(--bg1);
    font-family: var(--font-fun);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    box-shadow: 0 2px 12px #e9456033;
}
#jp-contact-form button[type="submit"]:hover {
    background: linear-gradient(90deg, var(--accent2) 0%, var(--accent1) 100%);
    color: var(--white);
    transform: scale(1.06) rotate(-2deg);
}
.jp-captcha-block {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    font-size: 1.01rem;
    color: var(--accent2);
    font-family: var(--font-main);
}
#jp-form-msg {
    color: var(--accent1);
    font-size: 1.01rem;
    margin-top: 6px;
    min-height: 1.2em;
    font-family: var(--font-main);
}
.jp-contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 38px 0 0 0;
    padding: 0;
    width: 100%;
}
.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.jp-recaptcha-mention {
    font-size: 0.92rem;
    color: #aaa;
    margin-top: 8px;
    text-align: left;
    line-height: 1.3;
    position: relative;
}
.jp-recaptcha-toggle {
    background: none;
    border: none;
    color: var(--accent3);
    font-size: 1.1em;
    font-family: var(--font-fun);
    cursor: pointer;
    margin-left: 6px;
    padding: 0 6px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    vertical-align: middle;
}
.jp-recaptcha-toggle:focus {
    outline: 2px solid var(--accent2);
    background: #23243a;
}
.jp-recaptcha-links {
    margin-top: 6px;
    padding-left: 2px;
    transition: max-height 0.3s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
    max-height: 200px;
    opacity: 1;
    overflow: hidden;
    display: block;
}
.jp-recaptcha-links[hidden] {
    max-height: 0;
    opacity: 0;
    display: block;
}
.jp-recaptcha-links a {
    color: var(--accent3);
    text-decoration: underline;
    font-size: 0.92rem;
    margin-right: 8px;
}
.jp-lang-switcher {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 100;
    display: flex;
    gap: 6px;
    opacity: 0.7;
}
.jp-lang-link {
    background: rgba(30, 30, 30, 0.18);
    color: var(--accent3);
    font-family: var(--font-main);
    font-size: 0.98rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 2px 8px 2px 8px;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, opacity 0.18s;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.85;
}
.jp-lang-link:hover {
    background: rgba(30, 30, 30, 0.32);
    color: var(--accent2);
    opacity: 1;
    transform: none;
} 