/* NYXAUR — EPIC & RESPONSIVE */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: #000;
    overflow-x: hidden;
    color: #fff;
    line-height: 1.6;
}

/* === ACHTERGROND & ENERGIE === */
#nebula-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, #1a0033, #000, #0a001a);
    opacity: 0.9;
    z-index: 1;
}

#energy-mirror {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* === RUNEN === */
.rune {
    position: fixed;
    font-size: 2.5rem;
    color: #8b5cf6;
    opacity: 0.6;
    transition: all 0.4s ease;
    z-index: 3;
}
.rune:hover {
    opacity: 1;
    transform: scale(1.6);
    color: #ec4899;
}

/* === HOMEPAGE === */
.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

h1 {
    font-size: 5rem;
    background: linear-gradient(to right, #8b5cf6, #ec4899, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    margin: 0;
    letter-spacing: -2px;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.content p {
    font-size: 1.4rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 1.5rem 0 2.5rem;
}

#cta-btn {
    padding: 1.2rem 3rem;
    border: 2px solid #8b5cf6;
    background: transparent;
    color: #8b5cf6;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0);
    backdrop-filter: blur(8px);
}

#cta-btn:hover {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.7);
    transform: scale(1.08);
    color: #fff;
}

/* === PERSONA === */
.persona-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.silhouette-container {
    position: relative;
    width: 240px;
    height: 240px;
    margin-bottom: 3rem;
}

.silhouette {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0033 0%, #000 70%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4);
    animation: float 6s ease-in-out infinite;
}

.energy-ring {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 300px;
    height: 300px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-image: linear-gradient(45deg, #8b5cf6, #ec4899) 1;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    animation: spin 18s linear infinite;
}

.persona-text h2 {
    font-size: 3rem;
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 1.5rem;
}

.persona-text p {
    color: #cbd5e1;
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 2;
}

/* === JOURNAL === */
.journal-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 6rem 2rem;
    text-align: center;
}

.journal-section h2 {
    font-size: 3rem;
    background: linear-gradient(to right, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
}

.artefacts {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.artefact {
    width: 220px;
    height: 220px;
    perspective: 1200px;
    cursor: pointer;
}

.artefact-inner, .artefact-content {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
    transition: all 0.7s ease;
    font-size: 1.3rem;
}

.artefact-inner {
    background: linear-gradient(135deg, #1a0033, #0a001a);
    color: #8b5cf6;
    font-weight: bold;
}

.artefact-content {
    background: rgba(26, 0, 51, 0.95);
    color: #e0e7ff;
    transform: rotateY(180deg);
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.artefact.open .artefact-inner { transform: rotateY(180deg); }
.artefact.open .artefact-content { transform: rotateY(0); }

/* === ANIMATIES === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === MOBIEL === */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .content p { font-size: 1.1rem; }
    #cta-btn { padding: 1rem 2rem; font-size: 1rem; }
    .silhouette-container { width: 180px; height: 180px; }
    .energy-ring { width: 220px; height: 220px; top: -20px; left: -20px; }
    .artefact { width: 160px; height: 160px; }
}
/* NAV MENU */
.nav-menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 2rem;
    background: rgba(26, 0, 51, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.nav-menu a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ec4899;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ec4899;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}