/* Allgemeine Stile */
* {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    width: 100vw;
    height: 100vh;
    color: #333;
    overflow-x: hidden;
    padding-top: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

/* Hauptinhalt */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

/*li::before {
    content: "•";
    color: #ff9a9e;
    position: absolute;
    left: -20px;
    font-size: 1.5rem;
}*/

/* CTA (Call to Action) Section */
.cta-section {
    background-color: #ff9a9e;
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.invite-code {
    font-weight: bold;
    color: #ff5722;
    background-color: white;
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.8rem;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    /*background-color: #423a3a;*/
    color: #2b2626;
    text-align: center;
}
footer p {
    margin: 0;
    color: #353232;
    font-size: 12px;
    font-weight: 300;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}
