


/* profile-card-css.php */

/* Container der Karte */
.profile-card-container {
    max-width: 450px;
    margin: 0rem auto 2rm auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #c9c9c9;
}

/* "Switcher" oben rechts */
.profile-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.6rem;
    color: #fe317e;
    cursor: pointer;
    text-transform: uppercase;
    z-index: 9999;
    border: 1px solid #fe317e;
    padding: 0.4rem;
    border-radius: 15px;
    font-weight: 600;
}

/* Profilkopf */
.profile-header {
    text-align: center;
    padding: 5rem 1rem 1rem 1rem;
    position: relative;
    background: #f9f9f9;
}

/* Profilbild */
.profile-avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #fff;
    margin-top: -4rem;
}

/* Profilname & Alter */
.profile-name {
    margin: 0.5rem 0 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}
.profile-age {
    margin: 0;
    font-size: 0.8rem !important;
    color: #000;
}

div.profile-tabs button.tab-button {
	font-size: 0.75rem;
}


/* Call-Button */
.call-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: #fe317e;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}
.call-button:hover {
    background: #fe317e;
}

/* Tabs-Navigation */
.profile-tabs {
    display: flex;
    background: #333;
    justify-content: space-around;
}
.tab-button {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.2s;
}
.tab-button:hover {
    background: #444;
}
.tab-button.active {
    background: #fe317e;
    color: #fff;
}

/* Inhaltsbereich (Tabs) */
.profile-content {
    padding: 1rem 1.5rem;
}
.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}
.tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Überschriften im Tab */
.info-section-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fe317e;
    text-transform: uppercase;
}
.info-item {
    margin: 0.2rem 0;
    font-size: 0.7rem !important;
    line-height: 1.4;
    border-bottom: 1px solid rgba(254, 49, 126, 0.4);
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.2rem 0rem !important;
}
.info-label {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 0.3rem;
    color: #999;
}

/* Info-Grid mit vertikalem Trenner */
.info-grid {
  display: flex;
  flex-wrap: wrap;      /* Damit mehrere Zeilen möglich sind */
  position: relative;   /* Für den Pseudo-Element-Trennstrich */
}

/* Vertikaler Trenner in der Mitte */

/* Jedes .info-item nimmt 50% Breite ein */
.info-grid .info-item {
  width: 50%;
  box-sizing: border-box;
  padding: 0.5rem;
  margin: 0;           /* Falls Standardabstände stören */
}
