/* Algemene stijlen */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e0f7fa;
    color: #333;
    overflow-x: hidden;
}

header {
    background-color: #4dd0e1;
    color: #ffffff;
    padding: 1rem 0;
    position: relative;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.logo img {
    max-width: 150px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

nav {
    margin-top: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background-color: #b2ebf2;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    background-color: #80deea;
    color: #004d40;
    transform: scale(1.05);
}

.language-switcher {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.language-switcher button {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: none;
    background-color: #80deea;
    color: #004d40;
    cursor: pointer;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-switcher button:hover {
    background-color: #4dd0e1;
    color: white;
    transform: scale(1.05);
}

.hero {
    background: none;
    color: #004d40;
    text-align: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero h1:hover {
    transform: translateY(-10px);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #004d40;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #00251a;
    transform: scale(1.05);
}

section {
    padding: 4rem 0;
}

h2 {
    color: #004d40;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    margin: 1rem;
    box-sizing: border-box;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item img:hover {
    transform: scale(1.05);
}

/* Pricing */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 1rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Discount badge styles */
.discount-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transform: rotate(15deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.05); }
    100% { transform: rotate(15deg) scale(1); }
}

/* Offer styles */
.original-offer {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.discounted-offer {
    color: #004d40;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    color: #004d40;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.signup-button {
    background-color: #004d40;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.signup-button:hover {
    background-color: #00251a;
    transform: scale(1.05);
}

/* Discord Contact */
.discord-contact {
    text-align: center;
    margin: 50px 0;
}

.discord-contact a {
    text-decoration: none;
    color: inherit;
}

.discord-contact img {
    width: 100px; /* Pas de grootte aan zoals gewenst */
    height: auto;
}

.discord-contact h2 {
    margin-top: 10px;
    font-size: 1.5em; /* Pas de grootte van de tekst aan zoals gewenst */
}

footer {
    background-color: #4dd0e1;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}
