/* ============================================================
   USERPROFIL CSS - MODERN UPDATED VERSION
   ============================================================ */

/* Hauptcontainer */
.profil_container {
    text-align: justify;
    width: 1100px;
    margin: 50px auto;
    background: var(--hell);
    display: flex;
    flex-direction: column;
    /* Aufhübschung: Weichere Kanten und moderner Schatten */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25); 
}

/* Header Bereich */
.profil_head {
   background:var(--hell);
}


.profil_name {
    color: var(--dunkel);
    font-family: 'Playfair Display'; 
    font-size: 42px; /* Etwas größer für mehr Impact */
    letter-spacing: 2px;
    text-shadow: 1px 1px var(--schrift);
    text-align: right;
    padding-bottom: 10px;
    margin-right: 50px;
}

.profil_stats {
    background: rgba(255, 255, 255, 0.25); /* Deine gewünschte Transparenz */
    padding: 10px; /* Etwas mehr Innenabstand für bessere Lesbarkeit */
    text-align: center;
    font-size: 13px; /* Leicht verkleinert für einen eleganteren Look */
    color: var(--mittel); /* Kontrastfarbe zum hellen Hintergrund */
    
    /* Aufhübschung */
    border-radius: 8px; /* Sanft abgerundete Ecken */
    margin: 5px 20px; /* Außenabstand, damit es nicht am Rand klebt */
    backdrop-filter: blur(5px); /* Subtiler Unschärfe-Effekt des Hintergrunds */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Hauchdünner Rahmen für mehr Tiefe */
    letter-spacing: 0.5px; /* Etwas mehr Zeichenabstand */
}

/* Main Area */
.profil_mainarea {
    display: flex !important;
    background: var(--dunkel);
    min-height: 500px;
    align-items: stretch;
    padding: 20px; /* Padding um die Hauptbereiche */
    gap: 20px;
}

/* Sidebar links */
.profil_ava {
    width: 300px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.profil_ava img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Abgerundeter Avatar */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.25);
    margin-bottom: 15px;
    display: block;
}

/* Die Fakten-Punkte (Modernes Pillen-Design) */
.kit_punkt {
    box-sizing: border-box;
    width: 100%;
    margin: 6px 0;
    padding: 8px;
    background: var(--hell);
    /* Aufhübschung: Einseitiger Akzent statt doppelter Rand */
    border-left: 5px solid var(--mittel); 
	border-right: 5px solid var(--mittel); 
    border-radius: 4px;
    color: var(--mittel);
    font-family:'Noto Sans';
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
}



/* Steckbrief / Content Bereich rechts */
.profil_steckbrief {
    flex-grow: 1;
    background: rgba(255,255,255,0.03); /* Ganz leichte Abhebung */
    padding: 10px;
    border-radius: 10px;
}

.profil_steckbrief ul {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    padding: 0;
    margin: 0 0 25px 0;
    gap: 15px;
}

.profil_steckbrief ul li a {
    background: var(--hell);
    color:var(--dunkel);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Playfair Display';
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
    display: inline-block;
}
.profil_steckbrief ul li a:hover {
    background: var(--hell);
    color: var(--dunkel);
    border: 1px solid var(--hell);
}

/* Inhalts-Boxen */
/*.profil_h {
    font-family: 'Yeseva One';
    font-size: 26px;
    color: var(--hell);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--hell);
    display: inline-block; /* Linie nur so lang wie der Text */
    /*padding-bottom: 2px;
	text-transform: uppercase;
}*/

.profil_text {
    height: 780px;
    font-size: 15px;
    line-height: 1.7;
    overflow-y: auto;
    padding: 20px;
    color: var(--mittel);
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    box-sizing: border-box;
}

/* Untere Boxen-Leiste (Grid statt Flex für perfekte Gleichmäßigkeit) */
.profil_line {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    background: var(--dunkel);
    gap: 15px;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}

.profil_box {
    background: rgba(255, 255, 255, 0.25);
	font-size: 14px;
    padding: 20px;
    height: 220px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}



.profil_quoteh {
    font-family: 'Nato Sans', serif;
    font-size: 20px;
    color: var(--hell);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrollbar Styling */
.profil_text::-webkit-scrollbar {
    width: 6px;
}

.profil_text::-webkit-scrollbar-track {
    background: transparent;
}

.profil_text::-webkit-scrollbar-thumb {
    background: var(--hell);
    border-radius: 10px;
}