@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --text-primary: #ffffff;
    --text-secondary: #95a1ac;
    --primary: #ff7938;
    --primary-hover: #e22c2c;
    --background-secondary: #363636;
    --border: rgba(255, 255, 255, 0.15);
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.05),
            transparent 60%),
        radial-gradient(circle at 70% 70%,
            rgba(255, 121, 56, 0.2),
            transparent 70%),
        #1f1f1f;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: Poppins;
    margin: 0px;
}

footer {
    background-color: black;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}


.footer-cell {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.2em;
    color: var(--text-secondary);
}

.logo {
    width: 100px;
    height: 32px;
    object-fit: contain;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 0px;
    scroll-margin-top: 0px;
}

p {
    margin: 0px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--primary);
}

h1,
h2,
h3,
h4 {
    font-family: Fira Sans Condensed;
    color: var(--text-primary);
    text-align: center;
    margin: 0px;
    line-height: 1.1em;
}

h1 {
    font-size: 54px;
    color: var(--text-primary);
}

h2 {
    font-size: 42px;
    letter-spacing: -2px;
    font-weight: 600;
}

h3 {
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
}

ul {
    margin-block-start: 0px;
    margin-block-end: 0px;
    padding-inline-start: 0px;
}

.mobile-menu {
    position: absolute;
    background-color: var(--background-secondary);
    height: 100%;
    flex-direction: column;
    display: flex;
    z-index: 1000;
    padding: 16px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    gap: 16px;
    transition: all 0.3s ease-out;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

li {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 32px 0px;
    align-items: center;
}

button {
    background-color: var(--primary);
    color: var(--text-primary);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    box-shadow: none;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease-out;
}

button:hover {
    background-color: var(--primary-hover);
}

header {
    position: fixed;
    top: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    width: 100%;
    max-width: 95vw;
    padding: 16px 24px;
    border-radius: 10px;
    z-index: 999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 32px;
}

.hamburger {
    display: none;
    background-color: transparent;
    padding: 0px;
}

.navlink {
    font-size: 16px;
    color: var(--text-secondary);
}

.body-text {
    font-size: 16px;
    color: var(--text-secondary);
}

.content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    padding: 0px 16px;
    gap: 80px;
}

.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.title-box {
    display: flex;
    flex-direction: column;
    max-width: 660px;
    text-align: center;
    gap: 24px;
    align-items: center;
}

.intro {
    font-size: 18px;
    color: var(--text-secondary);
    font-family: Poppins;
}

.img-fitted {
    object-fit: contain;
}

.bubble {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 300;
    padding: 4px 16px;
    background-color: black;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    width: auto;
    border-radius: 20px;
}

.section-title {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 800px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* zwei Spalten */
    gap: 16px;
    max-width: 800px;
}

.container-frosted {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    max-width: 100%;
    gap: 16px;
}

.card-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.left {
    display: flex;
    flex-direction: row;
}

.ttb {
    display: flex;
    flex-direction: column;
}

.icon-holder {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    border: 1px solid var(--border);
    padding: 4px;
    background-color: var(--background-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon {
    color: var(--primary);
}

.benefit-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 50%;
}

.divider {
    width: 100%;
    height: 0px;
    border: 0.5px solid var(--border);
}

.benefit-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.text-benefit {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

.small {
    font-size: 14px;
}

.spacing-bottom {
    margin-bottom: 8px;
}

.gap-m {
    gap: 32px;
}

.space-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media only screen and (max-width: 968px) {
    body {
        font-size: 14px;
    }

    .mobile-menu.show {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    header {
        max-width: 90vw;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .hidden-mobile {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .intro {
        font-size: 14px;
    }

    section {
        padding: 40px 0px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container-frosted {
        align-items: center;
        max-width: 400px;
        text-align: center;
    }

    .img-fitted {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .card-img {
        max-width: 400px;
    }

    .text-benefit {
        font-size: 14px;
    }

    .left {
        display: flex;
        flex-direction: column;
        align-items: start;
        max-width: 100%;
    }

    .benefit-box {
        max-width: 100%;
    }


}

@media only screen and (max-width: 800px) {
    .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        padding: 32px 0px;
    }

    .content {
        gap: 32px;
    }
    
    .button:hover{
        background-color: transparent;
    }

    .icon {
        width: 32px;
        height: 24px;
    }

    .icon-holder {
        width: 32px;
        height: 32px;
    }

    .text-benefit {
        font-size: 12px;
        line-height: 1.2em;
    }

    header {
        max-width: 80vw;
    }

    h1,
    h2,
    h3,
    h4 {
        letter-spacing: -0.5px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cards-grid {
        justify-content: center;
        justify-items: center;
    }

    .container-frosted {
        max-width: 100%;
    }

    .footer-row {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
}