@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins/Poppins-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}


@font-face {
    font-family: 'Poppins';
    src: url('./fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: Poppins, sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

header {
    font-family: Poppins, sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.margin-divider {
    width: 100%;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-divider-small {
    width: 100%;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.horizontal-divider {
    width: 100%;
    border: none;
    border-top: 2px solid black;
    margin-bottom: 0;
}

.horizontal-stat-divider {
    width: 50%;
    border: none;
    border-bottom: 4px solid black;
    margin-bottom: 0;
    margin-top: 2rem;
}

.main-content {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 3rem; 
}

.vertical-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: black;
    height: 100%;
    z-index: 1;
}

.left-column {
    flex: 1;
    padding-right: 2rem; 
}

.right-column {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 2rem; 
}
.right-column img,
.right-column video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1em;
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
    user-select: none;
}

.cta-button:hover {
    background-color: #444;
    box-shadow: 6px 6px 0px #000;
    transform: translate(-2px, -2px);
}

.cta-button:focus {
    outline: none;
}

.imprint-link {
    color: inherit;
    text-decoration: none;
}

.imprint-link:hover {
    text-decoration: underline;
}


.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 15px;
}

.stat-item {
    border: none;
    padding: 10px;
    text-align: center;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
}

.stat-label {
    font-weight: normal;
    font-size: 0.8em;
}

.chug-anywhere {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.chug-anywhere::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: rotate(45deg);
    border: 2px solid #000;
}

.chug-anywhere span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1.2;
    z-index: 1;
}

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

.footer-left {
    margin-top: 2rem;
    font-size: 12px;
    color: #666;
}

@media screen and (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .vertical-divider {
        display: none;
    }

    .left-column, .right-column {
        padding: 0;
        width: 100%;
    }

    .right-column {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

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

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

@media screen and (max-width: 480px) {
    header {
        font-size: 1.8em;
    }

    .cta-button {
        display: block;
        text-align: center;
    }
}

.header-link {
    color: inherit;
    text-decoration: none;
}

.header-link:hover {
    text-decoration: none;
}

.main-content h2 {
    margin-top: 2rem;
    font-size: 1.8em;
}

.main-content p {
    margin-bottom: 10px;
}

.imprint-link {
    color: inherit;
    text-decoration: none;
}

.imprint-link:hover {
    text-decoration: underline;
}

.horizontal-stat-divider.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .horizontal-stat-divider.mobile-only {
        display: block;
    }
}