/* Grid weergave van plugins */
.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.plugin-item {
	max-width: 650px;  /* Hiermee beperk je de breedte van de plugin-items */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	 margin: 0 auto;  /* Centreert de items */
}

.plugin-item img {
    border-radius: 50%;
}

.plugin-item h3 {
    color: #0364c5;
    font-size: 1.2em;
}

.plugin-item .btn {
    display: inline-block;
    background-color: #00b896;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 10px;
}

.plugin-item .btn:hover {
    background-color: #0364c5;
}


/* Succesvolle actie - donkergroen */
.message-success {
    color: #006400; /* Donkergroen */
    font-size: 1.5em;
}

/* Mislukte actie - rood */
.message-failure {
    color: #FF0000; /* Rood */
    font-size: 1.5em;
}


/*plugin details*/
.plugin-detail {
    text-align: center;
    margin: 20px;
}

.plugin-image {
    max-width: 15%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.plugin-detail .price {
    font-size: 1.5em;
    color: #0364c5;
}

.plugin-detail .btn {
    background-color: #00b896;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    display: inline-block;
    margin-top: 20px;
}

.plugin-detail .btn:hover {
    background-color: #028f79;
}

/*Plugins */ 

.plugin-intro {
    text-align: center;
    padding: 20px;
    background-color: #0364c5;
    color: white;
}

.plugin-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f4f4f4;
}

.plugin-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 15px;
    padding: 20px;
    text-align: center;
}

.plugin-card img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.plugin-card h3 {
    margin: 10px 0;
    color: #0364c5;
}

.plugin-card .price {
    font-weight: bold;
    margin: 15px 0;
    color: #00b896;
}

.plugin-card .btn {
    background-color: #0364c5;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.plugin-card .btn:hover {
    background-color: #024e9a;
}
/*plugins search*/
.search-sort-form {
    text-align: center;
    margin: 20px 0;
}

.search-sort-form input, 
.search-sort-form select {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.search-sort-form button {
    background-color: #0364c5;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.search-sort-form button:hover {
    background-color: #024e9a;
}
/* Responsiveness */
@media (max-width: 768px) {
    .plugin-list {
        flex-direction: column;
        align-items: center;
    }

    .plugin-card {
        width: 90%;
    }
}


/*download sectie*/
.download-demo {
    text-align: center;
    margin: 40px 20px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-demo h2 {
    color: #0364c5;
    margin-bottom: 20px;
}

.download-demo p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    background-color: #00b896;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #0364c5;
}



/* Standaard menu layout */
/* Desktop menu centreren */
header {
    justify-content: space-between; /* Zorgt voor ruimte tussen logo en menu */
    align-items: center;
    padding: 20px;
    background-color: #0364c5;
    color: white;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 10px 20px;
    border-radius: 20px;
}

header nav ul li a:hover {
    background-color: #00b896;
    padding: 10px 25px;
}
.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Centreert het menu */
    flex-grow: 1; /* Dit zorgt ervoor dat het menu de resterende ruimte vult */
}

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

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


/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

/* Mobiel stijlen */
@media (max-width: 768px) {
    .nav-links {
		display:none;
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background-color: #0364c5;
        justify-content: center;
        align-items: center;
        transform: translateX(100%); /* Begin buiten beeld */
        transition: transform 0.3s ease-in;
        z-index: 100; /* Zorg dat het menu boven andere content ligt */
    }

    .nav-links.active {
        transform: translateX(0);
		display: flex; /* Schuift binnen als de hamburger is geactiveerd */
    }

    .hamburger {
        display: flex;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #0364c5;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
button {
    background-color: #00b896;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0364c5;
}

/* Form Inputs */
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #0364c5;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: #00b896;
}

/* Rounded Images */
img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Algemene stijlen voor alle schermgroottes blijven hetzelfde */


/* Hero section */
.hero {
    text-align: center;
    background-color: #00b896;
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero button {
    background-color: #fff;
    color: #00b896;
    border: 2px solid white;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #0364c5;
    color: white;
}

/* About section */
.about {
    text-align: center;
    padding: 40px 20px;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
}

/* Gallery section */
.gallery {
    padding: 40px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-container img {
    max-width: 30%;
    border-radius: 50%; /* Maakt de afbeelding volledig rond */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding goed blijft passen binnen de ronde vorm */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
















/* About section */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.about-item {
    width: 100%; /* Standaard wordt de breedte 100% */
    max-width: 300px;
}

/* Media queries voor schermen smaller dan 768px (mobiele telefoons) */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        align-items: center;
    }

    .about-item {
        width: 90%; /* Past het grid aan voor kleinere schermen */
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
.gallery-container img {
    max-width: 100%;
    border-radius: 50%; /* Maakt de afbeelding volledig rond */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding goed blijft passen binnen de ronde vorm */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    button {
        font-size: 1rem; /* Kleinere knoptekst voor mobiele schermen */
        padding: 8px 16px;
    }
}

/* Media queries voor schermen smaller dan 576px (kleine mobiele telefoons) */
@media (max-width: 576px) {
    .about-item {
        width: 100%; /* Zorgt ervoor dat de items de volledige breedte van het scherm nemen */
        padding: 15px;
    }

    .hero {
        padding: 30px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .gallery-container {
        flex-direction: column;
    }

   .gallery-container img {
    max-width: 100%;
    border-radius: 50%; /* Maakt de afbeelding volledig rond */
    object-fit: cover; /* Zorgt ervoor dat de afbeelding goed blijft passen binnen de ronde vorm */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


    button {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* About section */
.indexAbout {
    text-align: center;
    padding: 40px 20px;
}

.indexAbout h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.indexAbout p {
    font-size: 1.1rem;
}


.indexAbout-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.indexAbout-item {
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.indexAbout-item:hover {
    transform: translateY(-5px);
}

.indexAbout-item h3 {
    color: #0364c5;
    margin-top: 15px;
    margin-bottom: 10px;
}

.indexAbout-item p {
    color: #333;
}

.icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

button {
    margin-top: 20px;
    background-color: #0364c5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00b896;
}
/*ABOUT PAGE */
.about {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h1 {
    background-color: #00b896;
    color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-donate {
    display: inline-block;
    background-color: #00b896;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-donate:hover {
    background-color: #0364c5;
}
/* contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 2px solid #0364c5;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #00b896;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0364c5;
}


/* Donatie section */
.donation-section {
    text-align: center;
    padding: 20px;
    background-color: #00b896;
    color: white;
}

.donation-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.donation-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.donation-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.donation-button {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donation-button p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #0364c5;
}

.donation-button a.btn {
    display: block;
    background-color: #0364c5;
    color: white;
    padding: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.donation-button a.btn:hover {
    background-color: #024e9a;
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .donation-buttons {
        flex-direction: column;
    }

    .donation-button {
        width: 100%;
    }
}
