/* FONTS */
@font-face {
    font-family: 'Source Code Pro';
    src: url('fonts/Source_Code_Pro/SourceCodePro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Source Code Pro';
    src: url('fonts/Source_Code_Pro/SourceCodePro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto/static/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
}

/* BODY */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
}

.serif { font-family: 'Lusitana', serif; }
.mono { font-family: 'Source Code Pro', monospace; }

/* NORMALE LINKS */
a {
    color: #CA6680;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 600;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

a:hover::after { width: 100%; }

/* NAVIGATION */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    mix-blend-mode: difference;
}

header.nav-open {
    mix-blend-mode: normal;
}

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.topnav .left a {
    font-size: 28px;
    font-weight: 900;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.topnav .left a::after { display: none; }

.topnav a {
    text-decoration: none;
    color: #fff;
    position: relative;
    font-weight: 500;
}

.topnav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.topnav a:hover::after { width: 100%; }

.topnav .right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.topnav .right a:last-child {
    height: 52px;
    padding: 0 20px;
    background: #00967E;
    color: #000;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    transition: color 0.4s ease, background 0.4s ease;
}

.topnav .right a:last-child::after { display: none; }

.topnav .right a:last-child .btn-default {
    position: relative;
    z-index: 1;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #000;
    white-space: nowrap;
}

.topnav .right a:last-child .btn-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    white-space: nowrap;
    color: #fff;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.topnav .right a:last-child:hover {
    background: #ffffff;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    background: none;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-toggle.open {
    background: #000;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .topnav {
        padding: 24px;
    }

    .topnav .left a {
        font-size: 20px;
    }

    .nav-toggle { display: flex; }

    .topnav .right {
        position: fixed;
        inset: 0;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        mix-blend-mode: normal;
        padding: 0;
    }

    .topnav .right.open {
        transform: translateX(0);
    }

    .topnav .right a {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .topnav .right a:last-child .btn-hover {
        display: none;
    }

    .topnav .right a:last-child {
        height: 44px;
        padding: 0 20px;
        font-size: 14px;
        width: auto;
    }

}

/* INTRO */
#intro {
    position: relative;
    padding-bottom: 120px;
}

.intro-line {
    position: sticky;
    top: 15vh;
    height: 18vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

@media (max-width: 768px) {
    .intro-line {
        height: 12vw;
        top: 10vh;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .intro-line {
        height: 12vw;
    }
}

.intro-line:nth-child(2) { z-index: 1; }
.intro-line:nth-child(3) { z-index: 2; }
.intro-line:nth-child(4) { z-index: 3; }
.intro-line:nth-child(5) { z-index: 10; }

.intro-line h1 {
    font-size: clamp(48px, 13vw, 160px);
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.intro-line.intro-sub span {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: 400;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.05em;
    color: #666;
}

.intro-line.intro-image {
    height: auto;
    position: sticky;
    top: 15vh;
    background: #fff;
    justify-content: center;
    padding: 20px 0 0 0;
    z-index: 10;
    overflow: visible;
}

.flip-card {
    width: 100%;
    max-width: min(520px, 90vw);
    perspective: 1000px;
    padding: 0 24px;
    box-sizing: border-box;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: none;
    will-change: transform;
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 30px solid #fff;
    border-bottom: 60px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.flip-card-front {
    position: relative;
}

.flip-card-front img {
    width: 100%;
    height: auto;
    display: block;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: rotateY(-180deg);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
    gap: 12px;
}

.flip-card-back h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.flip-card-back p {
    font-family: 'Source Code Pro', monospace;
    font-size: clamp(9px, 1.4vw, 13px);
    line-height: 1.65;
    color: #888;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.flip-card-back a {
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #CA6680;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: border-color 0.3s ease;
}

.flip-card-back a::after { display: none; }
.flip-card-back a:hover { border-color: #000; }

@media (max-width: 768px) {
    .flip-card-front,
    .flip-card-back {
        border: 12px solid #fff;
        border-bottom: 28px solid #fff;
    }
}

/* PORTFOLIO */
#portfolio {
    background: #000;
    padding: 0 clamp(24px, 5vw, 80px) 0;
    position: relative;
    z-index: 2;
}

.portfolio-sticky-title {
    position: sticky;
    top: 0;
    z-index: 0;
    padding: 80px 0 60px;
    background: #000;
}

.portfolio-title {
    font-size: clamp(48px, 13vw, 160px);
    font-weight: 900;
    margin: 0;
    text-align: left;
    color: #fff;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 8vw, 120px);
    align-items: start;
    padding: 0 clamp(0px, 4vw, 60px);
    position: relative;
    z-index: 1;
}

.portfolio-column {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 120px);
}

.portfolio-item { display: flex; flex-direction: column; }

.portfolio-item .img-wrapper { overflow: hidden; }

.portfolio-item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item .img-wrapper:hover img {
    transform: scale(1.03);
}

.portfolio-item .caption {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: clamp(14px, 2.5vw, 24px);
    font-weight: 600;
    color: #fff;
}

.caption-sub {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.04em;
}

.portfolio-fade-out {
    position: relative;
    margin-top: -200px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 10;
    pointer-events: none;
}

.portfolio-see-more {
    display: flex;
    justify-content: center;
    padding: 60px 0 120px;
    background: #000;
    position: relative;
    z-index: 2;
}

.portfolio-see-more a {
    padding: clamp(14px, 2vw, 20px) clamp(32px, 5vw, 60px);
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.4s ease, color 0.4s ease;
}

.portfolio-see-more a::after { display: none; }

.portfolio-see-more a:hover {
    background: #ffffff;
    color: #000;
    text-decoration: none;
}

@media (max-width: 600px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .portfolio-column:last-child { margin-top: 0 !important; }

    .portfolio-item[style] { width: 80% !important; }

    .portfolio-item[style*="margin-left: auto"] {
        margin-left: auto !important;
        margin-right: 0;
    }
}

/* LEBENSLAUF */

#lebenslauf {
    background: white;
    color: black;
    padding: clamp(80px, 10vw, 120px) clamp(24px, 4vw, 40px) 80px;
}


.grid-lebenslauf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.lebenslauf-left {
    position: sticky;
    top: 15vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uebermich-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uebermich-header h1 {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.uebermich-meta {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.04em;
}

.image-container {
    width: 70%;
    border: 30px solid #fff;
    border-bottom: 60px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.lebenslauf-text {
    padding-left: clamp(0px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lebenslauf-skills {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.skills-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skills-label {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin: 0 0 4px 0;
    font-family: 'Source Code Pro', monospace;
}

.skills-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border: 1px solid #ccc;
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.03em;
    color: #000;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.timeline-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.timeline-block .skills-label { margin: 0; }

ul.timeline {
    list-style: none;
    padding: 0 0 0 20px;
    position: relative;
    margin: 0;
}

ul.timeline:before {
    content: '';
    background: #ccc;
    position: absolute;
    left: 20px;
    width: 2px;
    height: calc(100% - 16px);
}

ul.timeline > li {
    margin: 0 0 24px 0;
    padding-left: 40px;
    position: relative;
}

ul.timeline > li:before {
    content: '';
    background: #fff;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #ccc;
    left: -6px;
    width: 10px;
    height: 10px;
    top: 4px;
}

ul.timeline > li h3 {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    margin: 0 0 4px 0;
}

.timeline-date {
    font-size: 13px;
    color: #999;
    margin: 0;
    font-family: 'Source Code Pro', monospace;
}

.timeline-tag {
    color: #999;
    font-weight: 400;
    font-family: 'Source Code Pro', monospace;
}

@media (max-width: 768px) {
    .grid-lebenslauf { grid-template-columns: 1fr; }
    .lebenslauf-left { position: relative; top: 0; }
    .lebenslauf-text { padding-left: 0; }
}

/* REFERENZEN */
#referenzen { background: #000; }

.ref-scroll-spacer { height: 300vh; }

.ref-sticky-outer {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: #000;
}

.ref-title {
    font-size: clamp(32px, 6vw, 60px);
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.ref-counter {
    font-size: 13px;
    font-family: 'Source Code Pro', monospace;
    color: #666;
    text-align: center;
}

.ref-stack-wrapper {
    position: relative;
    width: min(480px, 90vw);
    height: min(340px, 60vw);
}

.ref-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: clamp(24px, 5vw, 50px);
    background: #fcfcfc;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    transform-origin: bottom center;
    will-change: transform, opacity;
}

.ref-card:nth-child(1) { z-index: 4; }
.ref-card:nth-child(2) { z-index: 3; }
.ref-card:nth-child(3) { z-index: 2; }
.ref-card:nth-child(4) { z-index: 1; }

.ref-card.dismissed {
    transform: translateY(-140%) rotate(-4deg) !important;
    opacity: 1 !important;
    pointer-events: none;
}

.ref-card.ref-card-cta {
    background: #000;
    border: 1px solid #333;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.ref-cta-text {
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

.ref-cta-mail {
    font-size: 13px;
    color: #00967E;
    text-decoration: none;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.ref-cta-mail::after { display: none; }
.ref-cta-mail:hover { border-color: #fff; }

.ref-quote {
    font-size: clamp(12px, 2vw, 13px);
    line-height: 1.7;
    margin: 0;
    color: #777;
}

.ref-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.ref-name { font-size: 15px; font-weight: 700; }
.ref-role { font-size: 12px; color: #999; }

@media (max-width: 768px) {
    .ref-stack-wrapper {
        width: min(480px, 90vw);
        height: min(420px, 75vw);
    }

    .ref-quote {
        font-size: 11px;
    }
}

/* PROZESS */
#prozess {
    padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    background: #fff;
}

.prozess-heading h2 {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 900;
    margin: 0;
    text-align: center;
}

.prozess {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.prozess-img-wrapper {
    width: 50%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin: 0 auto 8px auto;
}

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

.prozess-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #e0e0e0;
    padding: 24px;
    text-align: center;
}

.prozess-step h3 {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.prozess-step p {
    font-size: clamp(13px, 1.8vw, 13px);
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Source Code Pro', monospace;
}

.prozess-step p a {
    color: #CA6680;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    .prozess { grid-template-columns: 1fr; }
}

/* KONTAKT */
#kontakt {
    padding: clamp(80px, 10vw, 160px) clamp(24px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    background: #000;
}

.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTACT BUTTON */
.contact-button {
    padding: clamp(16px, 2.5vw, 25px) clamp(32px, 5vw, 60px);
    font-size: clamp(14px, 3vw, 22px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #ffffff;
    transition: background 0.4s ease, color 0.4s ease;
    height: 52px;
}

.contact-button::after { display: none; }

.contact-button:hover {
    background: #ffffff;
    color: #040404;
}


/* MARQUEE */
.greeting-marquee {
    width: 100%;
    overflow: hidden;
}

.greeting-track {
    display: flex;
    gap: 120px;
    white-space: nowrap;
}

.greeting-track span {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 900;
    color: #232323;
    flex-shrink: 0;
}

.greeting-track.track-left {
    animation: marquee 20s linear infinite;
    padding: 0;
}

.greeting-track.track-right {
    animation: marquee-reverse 20s linear infinite;
    padding: 10px 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

footer p {
    margin: 0;
    font-size: 13px;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}

footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

footer a::after { display: none; }
footer a:hover { color: #fff; }

/* IMPRESSUM */
.impressum-page {
    min-height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.impressum-hero {
    padding: clamp(120px, 15vw, 200px) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 80px);
}

.impressum-hero h1 {
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    margin: 0 0 24px 0;
    line-height: 0.9;
}

.impressum-hero .mono {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.impressum-body {
    background-color: #ffffff;
    padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px);
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1000px;
}

.impressum-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impressum-block p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    color: #777;
    font-family: 'Source Code Pro', monospace;
    font-size: 15px;
    font-weight: 500;
}

.impressum-block a {
    color: #CA6680;
    text-decoration: none;
    position: relative;
    font-family: 'Source Code Pro', monospace;
    font-size: 15px;
    font-weight: 500;
}

.impressum-block a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #CA6680;
    transition: width 0.3s ease;
}

.impressum-block a:hover::after { width: 100%; }

.impressum-disclaimer {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    font-family: 'Source Code Pro', monospace;
}

@media (max-width: 768px) {
    .impressum-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .impressum-hero h1 {
        font-size: clamp(28px, 12vw, 48px);
    }
}

/* FADE */
.fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade.hidden {
    opacity: 0;
    transform: translateY(24px);
}

/* FLOATING MAIL BUTTON */
.floating-mail {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    mix-blend-mode: difference;
}

.floating-mail::after { display: none; }

.floating-mail-icon {
    width: 52px;
    height: 52px;
    background: #00967E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s ease;
}

.floating-mail-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.4s ease;
}

.floating-mail-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    background: #00967E;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 0;
    color: #00967E;
    transition: max-width 0.4s ease, padding 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.floating-mail:hover .floating-mail-icon {
    background: #00967E;
}

.floating-mail:hover .floating-mail-icon svg {
    stroke: #000000;
}

.floating-mail:hover .floating-mail-label {
    max-width: 160px;
    padding: 0 20px 0 12px;
    background: #00967E;
    color: #000000;
}