/*
Theme Name: DJ Oronzos Child Theme
Template: twentytwentyfive
*/

/* ------------------------------
   Grundlayout + Hintergrund
------------------------------ */

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Hintergrundbild jetzt auf BODY,
   damit es nicht von WP-Containern überdeckt wird */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;

    /* Heller Ton + Cello-Bild */
    background: #f5f0e8 url('/wp-content/uploads/background.jpg')
                no-repeat center top fixed;

    /* Bild orientiert sich an der Höhe -> Cello bleibt sichtbar,
       links/rechts evtl. etwas Beschnitt */
    background-size: auto 100%;
}

/* WICHTIG: WordPress-Wrapper durchsichtig + zentriert,
   damit man den Hintergrund sieht und die Karte max. 440px breit ist */
.wp-site-blocks {
    max-width: 440px;
    margin: 0 auto;
    min-height: 100vh;
    background: transparent;

    display: flex;
    flex-direction: column;
}

/* Falls du irgendwo eine .page-wrapper benutzt:
   darf transparent bleiben, stört sonst nicht */
.page-wrapper {
    max-width: 440px;
    margin: 0 auto;
    min-height: 100vh;
    background: transparent;
    display: flex;
    flex-direction: column;
}

/* ------------------------------
   Business Card Container
------------------------------ */
.business-card {
    flex: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 10px 10px;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

/* ------------------------------
   Header: Profil & Signatur
------------------------------ */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    /* etwas kleinerer Abstand nach unten wie im „Vorher“-Layout */
    margin-bottom: 12px;
    gap: 20px;
}

/* Profilbild */
.profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

/* Signatur */
.signature img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* ------------------------------
   Titel & Untertitel
------------------------------ */
h1 {
    font-size: 1.8rem;
    margin: 6px 0 4px;  /* kleiner, damit Logo–Name-Abstand passt */
}

.subtitle {
    font-size: 1rem;
    margin: 0 0 18px 0;
}

/* ------------------------------
   Button "Save Contact"
------------------------------ */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;

    line-height: 1;       /* keine Leerzeile über dem Text */
    white-space: nowrap;  /* „Save Contact“ bleibt einzeilig */
}


/* ------------------------------
   Kontaktinfos mit Icons links vom Text
------------------------------ */
.contact-info .contact-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin: 3px 0;
    font-size: 0.95rem;
    color: #111;
}

.contact-info .contact-line a {
    order: 2;
    color: inherit;
    text-decoration: none;
}

.contact-info .contact-line .contact-icon {
    order: 1;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ------------------------------
   Social Icons nebeneinander
------------------------------ */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* ------------------------------
   Bio
------------------------------ */
.bio {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #111;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
}

/* ------------------------------
   Dünne schwarze Linie vor Social Icons
------------------------------ */
.divider {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 10px 0;
}

/* ------------------------------
   Responsive Anpassungen
------------------------------ */
@media (max-width: 440px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
