/* =========================
   TEXLA PREMIUM DESIGN
========================= */

:root {
    --accent: #B31217;
    --accent-hover: #D61F26;
    --accent-dark: #7A0E12;
    --accent-light: #E23A3F;

    --bg: #0b0b0b;
    --bg-card: #171717;
    --bg-light: #1d1d1d;

    --text: #ffffff;
    --text-soft: #d0d0d0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Navigation */

header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    letter-spacing: .3px;
    padding: 6px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover {
    color: var(--accent);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--accent);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    background-repeat: no-repeat;
    justify-content: center;
    background-position: center center;
    align-items: center;
    text-align: center;
    position: relative;
    isolation: isolate;
    padding: 120px 20px;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .80),
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .88)
        ),
        url("images/hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
        transparent,
        var(--bg)
    );
    pointer-events: none;
}

.hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.subtitle {
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(46px, 8vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}

.hero span {
    color: var(--accent);
}

.description {
    font-size: 20px;
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 650px;
    margin: auto;
    margin-bottom: 55px;
    font-weight: 300;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gold-btn {
    background: var(--accent);
    box-shadow: 0 15px 40px rgba(179, 18, 23, .25);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-btn:hover {
    transform: translateY(-4px);
    background: var(--accent-hover);
    box-shadow: 0 20px 50px rgba(179, 18, 23, .45);
}

.outline-btn {
    padding: 18px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outline-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Premium Statistik */

.hero-info {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.hero-info h3 {
    font-size: 34px;
    color: var(--accent);
    margin-bottom: 8px;
}

.hero-info p {
    color: #ccc;
}

/* Allgemeine Sektionen */

section {
    padding: 120px 8%;
    position: relative;
}

h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.card {
    overflow: hidden;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, .08);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(179, 18, 23, .15);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.card p {
    color: #bbb;
    line-height: 1.8;
}

/* Kontaktformular */

form {
    max-width: 700px;
    margin: auto;
}

input:not([type="checkbox"]),
textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: #181818;
    border: 1px solid #333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

textarea {
    height: 180px;
    resize: none;
}

button {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

button:hover {
    transform: translateY(-4px);
    background: var(--accent-hover);
    box-shadow: 0 15px 40px rgba(179, 18, 23, .3);
}

/* Footer */

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #aaa;
}

/* Responsive */

@media(max-width: 900px) {
    .hero h1 {
        font-size: 48px;
    }

    .description {
        font-size: 18px;
    }
}

.section-title {
    text-align: left;
    margin-bottom: 55px;
}

.section-title p {
    color: var(--accent);
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 48px;
    text-align: left;
    margin-bottom: 20px;
}

.section-title span {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(179, 18, 23, .08);
    border: 1px solid rgba(179, 18, 23, .25);
    font-size: 34px;
    color: var(--accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .icon {
    background: var(--accent);
    color: #ffffff;
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 10px 25px rgba(179, 18, 23, .3);
}

.card {
    text-align: center;
}

/* Premium Section */

.premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.premium-left {
    flex: 1;
    min-width: 0;
}

.small-title {
    color: var(--accent);
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.premium-left h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

.premium-text {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
}

.premium-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.number-box {
    background: var(--bg-card);
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.number-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(179, 18, 23, .15);
}

.number-box h3 {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 10px;
}

.number-box p {
    color: #bbb;
}

/* Airport Section */

.airport {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.airport-image {
    flex: 1;
    min-width: 0;
}

.airport-image img {
    display: block;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.airport-image img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .6);
}

.airport-content {
    flex: 1;
    min-width: 0;
}

.airport-content h2 {
    font-size: 46px;
    margin: 20px 0;
}

.airport-content > p {
    line-height: 2;
    color: #cfcfcf;
    margin-bottom: 35px;
}

.airport-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.airport-list div {
    background: var(--bg-card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.airport-list div:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(179, 18, 23, .1);
}

/* ======================
   BUSINESS SECTION
====================== */

.business {
    background: #141414;
    padding: 120px 8%;
    text-align: left;
}

.business h2 {
    font-size: 48px;
    margin: 20px 0;
    text-align: left;
}

.business-text {
    text-align: left;
    color: #cfcfcf;
    line-height: 2;
    margin-bottom: 40px;
}

.business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(179, 18, 23, .2);
}

.feature h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 24px;
}

.feature p {
    color: #bfbfbf;
    line-height: 1.8;
}

/* ======================
   CONTACT
====================== */

.contact {
    background: #101010;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 45px;
    align-items: start;
    margin-top: 70px;
}

.contact-info,
.contact-form {
    background: #181818;
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info:hover,
.contact-form:hover {
    border-color: var(--accent);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        0 0 0 1px rgba(179, 18, 23, .15);
}

.contact-info h3 {
    font-size: 34px;
    margin-bottom: 18px;
}

.contact-info p {
    color: #bfbfbf;
    line-height: 1.9;
}

.info-item {
    margin-top: 28px;
}

.info-item h4 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 35px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    appearance: none;
    padding: 17px 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(179, 18, 23, .12);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 30px;
    cursor: pointer;
    color: #bfbfbf;
    line-height: 1.6;
}

.checkbox input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: checkbox;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox span {
    flex: 1;
}

.checkbox a {
    color: var(--accent);
    text-decoration: none;
}

.checkbox a:hover {
    color: #ffffff;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form button:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
    box-shadow: 0 15px 45px rgba(179, 18, 23, .35);
}

@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

/* ======================
   FOOTER
====================== */

.footer {
    background: #090909;
    padding: 90px 8% 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
}

.footer-logo {
    font-size: 34px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer p {
    color: #bfbfbf;
    line-height: 1.8;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
    color: #bfbfbf;
}

.footer ul li a {
    color: #bfbfbf;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.socials a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* ==========================
   FLOATING BUTTONS
========================== */

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp:hover {
    transform: scale(1.1);
}

#topBtn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 54px;
    height: 54px;
    padding: 0;
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(179, 18, 23, .35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#topBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(179, 18, 23, .45);
}

/* Navigation beim Scrollen */

header.scrolled {
    background: rgba(8, 8, 8, .92);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    border-bottom: 1px solid rgba(179, 18, 23, .12);
}

/* Premium Navigation Button */

.nav-button {
    background: var(--accent);
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 700;
    margin-left: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-button:hover {
    background: #ffffff;
    color: var(--accent) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ==========================
   LOGO
========================== */

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

.logo img {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100px;
    width: auto;
    display: block;
}

.logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 10px rgba(179, 18, 23, .2));
}

@media (max-width: 768px) {
    .logo img {
        height: 100px;
    }
}

/* ==========================
   LUXURY MOBILE MENU
========================== */

.menu-toggle {
    display: none;
    position: relative;
    width: 34px;
    cursor: pointer;
    z-index: 2001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #ffffff;
    margin: 7px 0;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media(max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0d0d0d;
        padding: 120px 35px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        transition: right .45s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 50px rgba(0, 0, 0, .6);
        z-index: 1500;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 20px;
        color: #ffffff;
    }

    .nav-button {
        margin-top: 20px;
        margin-left: 0;
        text-align: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(14px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-14px);
    }
}

/* ==========================
   MOBILE FIX
========================== */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow: hidden;
}

@media (max-width: 768px) {
    header {
        padding: 14px 20px;
    }

    .logo {
        font-size: 24px;
    }

    .hero {
        padding: 135px 20px 70px;
        background-attachment: scroll;
    }

    .hero-info {
        flex-direction: column;
        gap: 25px;
    }

    .premium {
        flex-direction: column;
    }

    .premium-right {
        grid-template-columns: 1fr;
    }

    .airport {
        flex-direction: column;
    }

    .airport-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.hero-line {
    box-shadow: 0 0 20px rgba(179, 18, 23, .4);
    width: 90px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 25px;
    border-radius: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

/* ==========================
   PREMIUM SECTION DIVIDER
========================== */

section {
    position: relative;
}

section:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-dark),
        var(--accent),
        var(--accent-light),
        var(--accent),
        var(--accent-dark),
        transparent
    );
    box-shadow:
        0 0 10px rgba(179, 18, 23, .45),
        0 0 30px rgba(179, 18, 23, .18);
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info a:hover {
    color: #ffffff;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.copyright a {
    color: var(--accent);
}

.copyright a:hover {
    color: #ffffff;
}

/* ==========================
   MOBILE TYPOGRAPHY
========================== */

@media (max-width: 768px) {
    .section-left {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.15;
        letter-spacing: -1px;
    }

    h2,
    .business h2,
    .airport-content h2,
    .premium-left h2,
    .section-title h2 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
}

.gold-btn,
.outline-btn,
.card,
.feature,
.number-box,
.airport-image img {

}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 8px;
}

.info-item .material-symbols-outlined {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.whatsapp .material-symbols-outlined {
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

.section-left {
    text-align: left;
    margin-bottom: 45px;
}

.section-left h2 {
    text-align: left;
}

.section-left p {
    text-align: left;
}

.section-left span {
    display: block;
    margin: 0;
}
