
/* =========================================
   1. GRUNDLAGEN, VARIABLEN & RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Die exakte Farbe aus dem Hintergrund deines Logos! */
    --primary-color: #f1ebe1; 
    
    /* Ein minimal dunklerer Ton für Formulare, damit sie sich noch abheben */
    --secondary-color: #e8e1d5; 
    
    --accent-color: #c59b46;   
    --text-color: #231f1c;     
    --button-text-color: #ffffff; 
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--primary-color);
    line-height: 1.7;
    overflow-x: hidden; 
}

h1, h2, h3, h4, .logo-text, .subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: normal;
    color: var(--text-color);
}

/* =========================================
   2. NAVIGATION (HEADER)
========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Die Größe für dein eingefügtes Bild-Logo */
/* Die Größe für dein Bild-Logo */
/* Die Größe für dein Bild-Logo */
.site-logo {
    max-height: 160px; 
    width: auto;
    display: block;
    /* Der mix-blend-mode wurde entfernt, da das PNG von sich aus transparent ist! */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color); /* Wird Gold beim Drüberfahren */
}

/* =========================================
   3. BUTTONS (GLOBAL)
========================================= */
.cta-button, .anfrage-btn, .submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--text-color);
    color: var(--button-text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.cta-button:hover, .anfrage-btn:hover, .submit-btn:hover {
    background-color: var(--accent-color); /* Wird Gold */
    color: var(--button-text-color);
}

/* =========================================
   4. HERO SEKTION (WILLKOMMEN) MIT HINTERGRUNDBILD
========================================= */
.hero {
    position: relative;
    text-align: center;
    padding: 18vh 20px;
    background-color: transparent;
    overflow: hidden; 
}

/* Der verblasste Bildhintergrund */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* HIER RECHTS DEINEN BILDNAMEN EINTRAGEN: */
    background-image: url('images/background-4.jpeg'); 
    
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Behält den edlen, verblassten Effekt bei */
    z-index: -1; 
}

.hero-content {
    position: relative; 
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 auto 40px auto;
    max-width: 600px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-style: italic;
}

/* =========================================
   5. BILDER-SLIDER (GALERIE)
========================================= */
.portfolio-section {
    background-color: var(--primary-color);
    padding-bottom: 100px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    width: 70%; 
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    z-index: 0;
    transform: translateX(-50%) scale(0.8);
    left: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(-50%) scale(1);
    left: 50%;
}

.slide.prev {
    opacity: 0.6;
    z-index: 1;
    transform: translateX(-50%) scale(0.85); 
    left: 15%; 
    cursor: pointer;
}

.slide.next {
    opacity: 0.6;
    z-index: 1;
    transform: translateX(-50%) scale(0.85);
    left: 85%; 
    cursor: pointer;
}

.slider-btn {
    position: absolute;
    z-index: 10;
    background: rgba(244, 240, 234, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.3s, color 0.3s;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

/* =========================================
   6. ÜBER MICH (INFOS)
========================================= */
.about-section {
    padding: 100px 50px;
    background-color: var(--primary-color);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; color: var(--text-color); font-size: 1.1rem; }

.about-image { flex: 1; }
.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   7. PREISE SEKTION
========================================= */
.preise-section {
    padding: 20px 50px 100px 50px;
    background-color: var(--primary-color);
}

.preise-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.preis-btn {
    padding: 12px 25px;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.preis-btn.active, .preis-btn:hover {
    background-color: var(--accent-color);
    color: var(--button-text-color);
    border-color: var(--accent-color);
}

.preis-detail-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.preis-image { flex: 1; }
.preis-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.preis-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
}

.preis-info h3 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.preis-subtitle {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.preis-info p {
    color: var(--text-color);
    margin-bottom: 35px;
    font-size: 0.95rem;
    max-width: 300px;
}

/* =========================================
   8. KONTAKT & FORMULAR
========================================= */
.contact-section {
    padding: 20px 50px 100px 50px;
    background-color: var(--primary-color);
}

.subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

.info-block i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color); /* Goldene Icons */
}

.info-block h4 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.info-block p { color: var(--text-color); line-height: 1.4; }

.contact-form-wrapper { flex: 2; }
.detailed-form { display: flex; flex-direction: column; gap: 25px; }

.form-group.full-width { width: 100%; }
.form-row { display: flex; gap: 30px; }
.form-row .form-group { flex: 1; }

.main-label {
    display: block;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.main-label span { color: #900; }

.detailed-form input[type="text"],
.detailed-form input[type="email"],
.detailed-form select,
.detailed-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid transparent;
    background-color: var(--secondary-color);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.detailed-form input:focus,
.detailed-form select:focus,
.detailed-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
}

.detailed-form select { appearance: none; cursor: pointer; }

.split-inputs { display: flex; gap: 30px; }
.input-col { flex: 1; }
.sub-label { display: block; font-size: 0.8rem; color: var(--text-color); margin-top: 5px; opacity: 0.7; }

.checkbox-wrapper { display: flex; align-items: flex-start; gap: 15px; }
.datenschutz-text { font-size: 0.9rem; color: var(--text-color); line-height: 1.5; opacity: 0.8; }

/* =========================================
   9. SOCIAL MEDIA & FOOTER
========================================= */
.social-media-section {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--primary-color);
}

.social-media-section h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.7;
}

.social-media-section p {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 2.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Helle Footer Variante passend zum restlichen Design */
.site-footer {
    background-color: var(--secondary-color); 
    color: var(--text-color);
    padding: 60px 20px 20px 20px;
    font-size: 0.95rem;
}

.footer-columns {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col p {
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #d4cdbd; /* Angepasste Trennlinie im Footer */
    padding-top: 25px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* =========================================
   10. RESPONSIVE (HANDY & TABLET)
========================================= */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .contact-container {
        flex-direction: column;
    }
    .form-row, .split-inputs {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 800px) {
    .preis-detail-container {
        flex-direction: column;
    }
    .preis-image img {
        height: 300px;
    }
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .slider-container {
        height: 450px;
    }
    .slide {
        width: 85%;
    }
    .social-media-section p {
        font-size: 1.8rem;
    }
}

/* ========================================= */
/* NEUES KONTAKTFORMULAR STYLING             */
/* ========================================= */

.contact-form-wrapper {
    width: 100%;
    flex: 2; /* Sagt dem Browser: Gib dem Formular mehr Platz als den anderen Spalten */
    min-width: 450px; /* Zwingt das Formular, sich Platz zu verschaffen */
}

.detailed-form {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Abstand zwischen den Zeilen */
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Überschriften der Felder */
.main-label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #222;
}

.main-label span {
    color: #a00; /* Roter Stern für Pflichtfelder */
}

.sub-label {
    font-size: 0.8em;
    color: #666;
    margin-top: 6px;
}

/* Reihen nebeneinander anzeigen (Flexbox) */
.split-inputs, .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Spalten (Vorname/Nachname) sollen gleich groß sein */
.input-col, .form-row .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Die Eingabefelder selbst stylen */
.detailed-form input[type="text"],
.detailed-form input[type="email"],
.detailed-form input[type="tel"], /* <--- DAS HIER IST NEU HINZUGEFÜGT */
.detailed-form select,
.detailed-form textarea {
    width: 100%;
    padding: 14px;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.3s ease;
    
    /* NEU: Verhindert das freie Ziehen des Feldes! */
    resize: none; 
}

/* Effekt, wenn man in ein Feld klickt */
.detailed-form input:focus,
.detailed-form select:focus,
.detailed-form textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #333;
}

/* Datenschutz-Bereich anpassen */
.checkbox-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.85em;
    line-height: 1.5;
    color: #444;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 5px;
    width: auto;
    cursor: pointer;
}

/* Mobile Ansicht: Auf dem Handy alles untereinander! */
@media (max-width: 768px) {
    .split-inputs, .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

/* ========================================= */
/* LAYOUT KORREKTUREN KONTAKT & FOOTER       */
/* ========================================= */

/* Stellt sicher, dass Formular und Socials untereinander stehen */
.contact-right-side {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Abstand zwischen Formular und Social Media */
    width: 100%;
}

/* Social Media Block Styling */
.social-media-wrapper {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Eine feine Linie zur Trennung */
}

.social-title {
    font-size: 0.9em;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
}

.social-handle {
    font-size: 2.5em;
    font-family: serif; /* Passend zu deiner Überschrift */
    margin-bottom: 20px;
    color: #222;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.8em;
}

.social-icons a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #b08d57; /* Dein Gold/Braun-Ton beim drüberfahren */
}

/* ========================================= */
/* LAYOUT KORREKTUREN KONTAKT & FOOTER       */
/* ========================================= */

/* Zwingt die rechte Spalte, alles untereinander anzuordnen */
.contact-right-side {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ========================================= */
/* SOCIAL MEDIA BEREICH ZENTRIEREN           */
/* ========================================= */
.social-media-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Zwingt alles in die Mitte */
    text-align: center !important;
    width: 100% !important;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-title {
    font-size: 0.9em;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
    width: 100%;
    text-align: center !important;
}

.social-handle {
    font-size: 2.5em;
    font-family: serif;
    margin-bottom: 20px;
    color: #222;
    width: 100%;
    text-align: center !important;
}

.social-icons {
    display: flex;
    justify-content: center !important;
    gap: 20px;
    font-size: 1.8em;
    width: 100%;
}

.social-icons a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #b08d57;
}

/* ========================================= */
/* NEUER FOOTER STYLE (DARK & 3 SPALTEN)     */
/* ========================================= */

.site-footer.dark-footer {
    background-color: #1a1a1a; /* Edles, dunkles Grau/Schwarz */
    width: 100%;
    padding: 60px 20px 20px 20px; /* Viel Platz nach oben */
    font-family: inherit;
}

.footer-info-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px; /* Großer Abstand zwischen den 3 Spalten */
    max-width: 1200px;
    margin: 0 auto; /* Zentriert den gesamten Block */
    margin-bottom: 50px; /* Abstand zur unteren Linie */
}

.footer-col {
    display: flex;
    flex-direction: column;
    text-align: left; /* Text ist linksbündig wie in deinem Beispiel */
}

.footer-col p {
    margin: 4px 0;
    line-height: 1.6;
    color: #e0e0e0; /* Helles Grau für gute Lesbarkeit */
    font-size: 0.95em;
}

/* Der untere Bereich mit der Linie */
.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Zarte helle Linie */
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-row p {
    color: #999; /* Etwas dunkleres Grau für das Copyright */
    font-size: 0.85em;
    margin: 0;
}

.footer-bottom-row a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold; /* Hebt die Links leicht hervor */
}

.footer-bottom-row a:hover {
    color: #ffffff; /* Weiß beim Hover */
}

/* Mobile Ansicht: Auf dem Handy müssen die 3 Spalten untereinander! */
@media (max-width: 768px) {
    .footer-info-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center; /* Auf dem Handy mittig zentrieren */
    }
}

/* ========================================= */
/* NEUE GALERIE SEITE (MASONRY LAYOUT)       */
/* ========================================= */

.gallery-grid {
    /* Wir nutzen CSS-Spalten für den perfekten Pinterest-Look */
    column-count: 3;
    column-gap: 20px;
    max-width: 1400px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.gallery-item {
    margin-bottom: 20px; /* Abstand nach unten zum nächsten Bild */
    break-inside: avoid; /* Verhindert, dass ein Bild auf zwei Spalten zerrissen wird */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    /* WICHTIG: Keine feste Höhe mehr! Das Bild bestimmt seine Höhe selbst. */
}

.gallery-item img {
    width: 100%;
    height: auto; /* Behält das exakte Original-Format (Seitenverhältnis) bei */
    display: block; /* Verhindert winzige Lücken unter den Bildern */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03); /* Etwas sanfterer Zoom beim Drüberfahren */
}

/* Mobile Anpassung: Auf Tablets nur noch 2 Spalten, auf Handys 1 Spalte */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* ========================================= */
/* 11. ULTIMATIVES MOBILE-LAYOUT (SMARTPHONES)*/
/* ========================================= */
@media (max-width: 768px) {
    
    /* 1. Globales Padding reduzieren (Behebt die "nach links verschoben" Optik) */
    .hero, .about-section, .preise-section, .contact-section, .portfolio-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow: hidden; /* Verhindert seitliches Wackeln der Seite */
    }

    /* 2. Slider auf Handys optisch anpassen */
    .slider-container {
        height: 350px !important; /* Etwas kompakter auf dem Handy */
    }
    .slide {
        width: 100% !important; /* Nutzt die volle Breite */
    }

    /* 3. Über mich - Texte und Bild zentrieren */
    .about-text {
        text-align: center;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    .about-image {
        margin-top: 30px;
    }

    /* 4. Preise reparieren (Bild nicht abschneiden, Text entzerren) */
    .preis-detail-container {
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden; 
    }
    .preis-image img {
        min-height: unset !important; /* Löscht die Desktop-Höhe */
        height: 280px !important;     /* Bessere Höhe fürs iPhone */
        width: 100%;
        object-fit: cover;            /* Nichts verzieht sich */
    }
    .preis-info {
        padding: 40px 20px !important;
        text-align: center;
    }
    .preis-info p {
        max-width: 100%; /* Text bekommt vollen Platz */
        margin-bottom: 25px;
    }

    /* 5. Kontaktformular in die Mitte holen und anpassen */
    .contact-info {
        align-items: center; /* Die goldenen Icons in die Mitte */
        margin-bottom: 20px;
    }
    .contact-form-wrapper {
        min-width: 100% !important; /* Zwingt das Formular auf 100% Breite */
        width: 100%;
    }
    .split-inputs, .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    /* 6. Checkbox massiv vergrößern */
    .checkbox-wrapper {
        align-items: flex-start;
        margin-top: 10px;
    }
    .checkbox-wrapper input[type="checkbox"] {
        transform: scale(1.8); /* Macht das Kästchen fast doppelt so groß! */
        margin-right: 15px;
        margin-top: 4px;
        flex-shrink: 0; /* Verhindert, dass das Kästchen gequetscht wird */
    }
    .datenschutz-text {
        font-size: 0.95rem;
        text-align: left; 
    }

    /* 7. Button & Socials */
    .submit-btn {
        width: 100%; /* Großer Button auf dem Handy */
    }
    .social-media-wrapper {
        margin-top: 30px;
    }
}