/* Allgemeines Styling */
* {
    overflow: auto;
}

a {
    text-underline: none;
    font-family: Arial, sans-serif;
    background: #3070b3;
    background-size: 100px 50px;
    color: white;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Wasserzeichen */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* Hintergrundfarbe */
    background-size: 200px 200px;
    z-index: -1;
}/* Allgemeines Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Wasserzeichen */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* Hintergrundfarbe */

}

header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3070b3;
    padding: 10px 20px;
    color: white;
}



.logo img {
    height: 100px;
}

.navbar .nav-links li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Allgemeine Hover-Farbe */
.navbar .nav-links li a:hover {
    color: #fff;
}

/* Unterstreichungsanimation für alle außer Erste Hilfe */
.navbar .nav-links li:not(:nth-child(3)) a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f9a825;
    transition: all 0.3s ease;
}

.navbar .nav-links li:not(:nth-child(3)) a:hover::after {
    width: 100%;
    transform: scaleY(1.5);
    transition: all 0.3s ease, transform 0.2s ease;
}

/* Glüh-Animation für Erste Hilfe */
.navbar .nav-links li:nth-child(3) a:hover {
    text-shadow: 0 0 8px #ff7043, 0 0 12px #ff7043;
}


main {
    padding: 40px 20px;
    text-align: center;
}


header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3070b3;
    padding: 10px 20px;
    color: white;
}

.logo img {
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

main {
    padding: 40px 20px;
    text-align: center;
}
.watermark {
    position: fixed; /* Fixiert das Wasserzeichen, unabhängig vom Scrollen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none; /* Verhindert Interaktion mit dem Wasserzeichen */
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 150"%3E%3Ctext x="0" y="100" font-family="Arial" font-size="20" fill="rgba(200, 200, 200, 0.2)" transform="rotate(-45)"%3EExzellenz beim Dating%3C/text%3E%3C/svg%3E') repeat;
    background-size: 400px 200px; /* Anpassung der Größe für bessere Wiederholung */
}

/* Container für das PDF */
.pdf-container {
    width: 60%; /* Festlegen der Breite */
    height: 900px; /* Festlegen der Höhe */
    margin: 0 auto; /* Zentriert den Container */
    border: 1px solid #ccc; /* Optionale Umrandung */
    overflow: auto; /* Ermöglicht Scrollen innerhalb des Containers */
    position: relative;
}

.shop-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: white;
    background: linear-gradient(90deg, #3070b3, #5ab7e1);
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shop-button:hover {
    background: linear-gradient(90deg, #5ab7e1, #3070b3);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.shop-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: skewX(-45deg);
    z-index: 0;
}

.shop-button:hover::before {
    left: 100%;
}

.shop-button span {
    position: relative;
    z-index: 1;
}
