@font-face{
    font-family: 'Poppins';
    src: url("font/Poppins-Bold.ttf");
    font-weight: 700;
}
@font-face{
    font-family: 'Poppins';
    src: url("font/Poppins-Medium.ttf");
    font-weight: 500;
}
@font-face{
    font-family: 'Poppins';
    src: url("font/Poppins-SemiBold.ttf");
    font-weight: 600;
}
/* Farben und Variablen */
:root {
    --primary-color: #ffffff;
    --accent-color: #606060;
    --hover-color: #ffffff;
}
@keyframes glideInFromBottom{
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Globales Styling */
body {
    background-color: #000000;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: #6464642d;
    /* Grau als Hintergrundfarbe */
}
::-webkit-scrollbar {
    display: none;
}
/* Header Container */
.header-container {
    background-color: #1b1a1a2c;
    backdrop-filter: blur(10px);
    padding: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin: 40px auto 0;
    transition: all 0.3s ease;
}
/* Header-Inhalt */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    background-color: transparent;
    padding: 0 20px;
    animation: glideInFromBottom 1s ease forwards;
}
/* Header-Titel */
.header-title {
    color: #FFF;
    font-size: 17px;
    font-weight: 500;
    flex-grow: 1;
    text-align: left;
    margin-left: 25px;
    cursor: pointer;
}
/* Logo */
.logo {
    width: 22px;
    height: auto;
    user-select: none;
    /* Verhindert die Textauswahl */
    z-index: 1001;
    cursor: pointer;
}
/* Navigation */
.nav {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    user-select: none;
    /* Verhindert die Textauswahl */
}
.nav a {
    color: #dadada;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 28px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}
/* Linie-Effekt unter dem Link */
.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFF;
    /* WeiÃŸe Farbe der Linie */
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
}
/* Hover-Effekt: Linie breitet sich von der Mitte aus nach links und rechts aus */
.nav a:hover::after {
    width: 60%;
    /* Linie breitet sich Ã¼ber die gesamte Breite aus */
}
/* Icons (menu button) for mobile */
.icons {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #FFF;
    position: relative;
    z-index: 1001;
}
/* Responsive Design for Mobile */
@media (max-width: 616px){
    .header-container {
        padding: 15px;
        width: 100%;
        max-width: 350px;
        margin: 30px auto;
        border-radius: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    header {
        justify-content: space-between;
    }
    .header-title {
        margin-left: -50px;
        text-align: center;
        flex-grow: 1;
        z-index: 1001;
    }
    /* Show menu icon and hide nav on mobile */
    .icons {
        display: block;
    }
    /* Hide nav by default on mobile */
    /* Mobile MenÃ¼ - initial verstecken */
    .nav {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        /* Fixieren, damit Blur besser sichtbar wird */
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 1000;
        background-color: rgb(8, 9, 10);
        /* Halbtransparent fÃ¼r den Hintergrund */
        z-index: 1000;
        /* Sicherstellen, dass der Hintergrund Ã¼ber anderen Inhalten liegt */
    }
    /* Klasse zur Anzeige des MenÃ¼s */
    .nav.mobile-shown {
        visibility: visible;
        opacity: 1;
    }
    /* MenÃ¼-Link-Design fÃ¼r mobile Ansicht */
    .nav a {
        font-size: 24px;
        color: #dadada;
        margin: 10px 0;
        text-decoration: none;
        padding: 10px;
        transition: color 0.3s;
    }
    /* Effekt beim Hover Ã¼ber Links */
    .nav a:hover {
        color: #ffffff;
    }
    /* Icon im Header sichtbar in der mobilen Ansicht */
    @media (max-width: 616px){
        .icons {
            display: block;
        }
    }
}
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-top: 220px;
    margin-top: 0;
}

.pricing-card {
    background-color: black;
    padding: 25px 20px;
    border-radius: 15px;
    width: 300px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: max-height 0.4s ease, transform 0.3s ease;

}

.pricing-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.pricing-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-card select {
    width: 100%;
    padding: 10px;
    margin-bottom: 0px;
    background-color: #101010;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.subscription-card ul {
    margin-top: 0px; /* of 16px als je meer ruimte wilt */
}

.pricing-card ul li {
    margin-bottom: 8px;
}

.guild .price {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0;
}

.guild .price span {
    font-weight: 400;
    font-size: 16px;
    color: #ccc;
}

.guild button {
    width: 100%;
    padding: 10px;
    background-color: #1e1e1e;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.guild button:hover {
    background-color: #2e2e2e;
}

/* zorgt voor animatie bij een week optie */
.extra-feature {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 8px;
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        max-height 0.4s ease,
        margin-bottom 0.3s ease;
}

.extra-feature.hidden {
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    pointer-events: none;
}


/* get started button voor 1e tegel */
.get-started {
    width: 100%;
    padding: 10px;
    background-color: #1e1e1e;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscription-card .get-started {
    margin-top: 20px;
}

.get-started:hover {
    background-color: #2e2e2e;
}

/* nieuwe vinkjes */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #ccc; /* Of wit (#fff) als je het lichter wil */
  margin-top: 2px;
  flex-shrink: 0;
}

