/* =============================================
   CSS CUSTOM PROPERTIES - FC PARKZICHT COLORS
   ============================================= */
:root {
    --fcp-black:       #0a0a0a;
    --fcp-dark:        #111111;
    --fcp-card-bg:     #1a1a1a;
    --fcp-card-border: #2a2a2a;
    --fcp-pink:        #f472b6;
    --fcp-red:         #dc2626;
    --fcp-mint:        #34d399;
    --fcp-blue:        #2563eb;
    --fcp-white:       #ffffff;
    --fcp-light-gray:  #9ca3af;
    --fcp-text:        #e5e7eb;
    --stripe-height:   5px;
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fcp-black);
    color: var(--fcp-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

/* =============================================
   BACKGROUND DECORATION
   ============================================= */
.hero-bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(244, 114, 182, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 60% 50%, rgba(52, 211, 153, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.hero-stripes {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.03;
    z-index: 0;
}

.hero-stripes::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        var(--fcp-pink)  40px, var(--fcp-pink)  42px,
        transparent      42px, transparent       82px,
        var(--fcp-red)   82px, var(--fcp-red)    84px,
        transparent      84px, transparent      124px,
        var(--fcp-mint) 124px, var(--fcp-mint)  126px,
        transparent     126px, transparent      166px,
        var(--fcp-blue) 166px, var(--fcp-blue)  168px
    );
}

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-wrapper {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.7s ease forwards;
}

/* =============================================
   STRIPE ACCENT
   ============================================= */
.stripe-accent {
    display: flex;
    width: 100%;
    height: var(--stripe-height);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}
.stripe-accent .s-pink  { flex: 1; background: var(--fcp-pink); }
.stripe-accent .s-red   { flex: 1; background: var(--fcp-red); }
.stripe-accent .s-mint  { flex: 1; background: var(--fcp-mint); }
.stripe-accent .s-blue  { flex: 1; background: var(--fcp-blue); }

/* =============================================
   PROFILE SECTION
   ============================================= */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.profile-picture-link {
    display: block;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.profile-picture-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid var(--fcp-card-border);
    background: var(--fcp-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(244, 114, 182, 0);
}

.profile-picture-wrap:hover {
    border-color: var(--fcp-pink);
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.25);
}

.profile-picture-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.username {
    margin-top: 0.85rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fcp-white);
}

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
}

@media (max-width: 400px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--fcp-card-bg);
    border: 1px solid var(--fcp-card-border);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--fcp-pink), var(--fcp-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(244, 114, 182, 0.3);
    transform: translateY(-3px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fcp-pink);
    line-height: 1.1;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fcp-light-gray);
    margin-top: 0.25rem;
}

/* =============================================
   LINKS
   ============================================= */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--fcp-card-bg);
    color: var(--fcp-white);
    border: 1px solid var(--fcp-card-border);
    border-radius: 10px;
    padding: 0.9rem 1.25rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.08),
        rgba(37, 99, 235, 0.08)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-btn:hover {
    color: var(--fcp-white);
    border-color: rgba(244, 114, 182, 0.4);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.link-btn:hover::before {
    opacity: 1;
}

.link-btn > i:first-child {
    font-size: 1.1rem;
    color: var(--fcp-pink);
    width: 1.4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.link-btn > span {
    flex: 1;
    position: relative;
    z-index: 1;
}

.link-arrow {
    font-size: 0.7rem;
    color: var(--fcp-light-gray);
    opacity: 0.5;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.link-btn:hover .link-arrow {
    transform: translateX(3px);
    opacity: 1;
    color: var(--fcp-pink);
}

/* Accent button (kleding) */
.link-btn--accent {
    background: linear-gradient(135deg,
        rgba(244, 114, 182, 0.12),
        rgba(220, 38, 38, 0.08)
    );
    border-color: rgba(244, 114, 182, 0.3);
}

/* Accent button (meinride) */
.link-btn--accent-meinride {
    background: linear-gradient(135deg,
        #19988B,
        #13284C
    );
    border-color: rgba(244, 114, 182, 0.3);
}

.link-btn--accent:hover {
    border-color: var(--fcp-pink);
    box-shadow: 0 4px 24px rgba(244, 114, 182, 0.2);
}

/* =============================================
   HASHTAG
   ============================================= */
.hashtag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-align: center;
    /* Shimmer animation */
    background: linear-gradient(
        90deg,
        var(--fcp-light-gray),
        var(--fcp-pink),
        var(--fcp-mint),
        var(--fcp-light-gray)
    );
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    width: 100%;
    text-align: center;
}

.footer-stripe {
    height: 3px;
    width: 100%;
    background: linear-gradient(to right,
        var(--fcp-pink)  0%  25%,
        var(--fcp-red)   25% 50%,
        var(--fcp-mint)  50% 75%,
        var(--fcp-blue)  75% 100%
    );
    border-radius: 2px;
    margin-bottom: 1rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-text {
    color: var(--fcp-light-gray);
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-link {
    color: var(--fcp-light-gray);
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.6;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
    color: var(--fcp-pink);
    opacity: 1;
}

/* =============================================
   POPUP / OVERLAY
   ============================================= */
.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: var(--fcp-card-bg);
    border: 1px solid var(--fcp-card-border);
    border-radius: 12px;
    overflow: hidden;
    max-width: 360px;
    width: 90%;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.4s ease;
}

.overlay:target .popup {
    transform: scale(1);
}

.popup-stripe {
    display: flex;
    height: 4px;
}
.popup-stripe .s-pink  { flex: 1; background: var(--fcp-pink); }
.popup-stripe .s-red   { flex: 1; background: var(--fcp-red); }
.popup-stripe .s-mint  { flex: 1; background: var(--fcp-mint); }
.popup-stripe .s-blue  { flex: 1; background: var(--fcp-blue); }

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--fcp-card-border);
    border-radius: 50%;
    color: var(--fcp-white);
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 5;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(244, 114, 182, 0.2);
    border-color: var(--fcp-pink);
    color: var(--fcp-pink);
}

.popup-photo {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fcp-dark);
}

.popup-photo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.popup-quote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--fcp-light-gray);
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
    line-height: 1.6;
    border-top: 1px solid var(--fcp-card-border);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
    .page-wrapper {
        padding: 2rem 1rem 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}