header {
    background-color: #ffffff !important;
}

.nav-link {
    color: #f8f9fa !important;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #212BC0;
    color: #f8f9fa;
}

/* Home-page */
/* code welkom_homepage*/
.welcome-section input {
    margin-top: 15px;
}

.welcome-section {
    background-image: url('../media/voruna\ foto.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.equal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;

}

/*searchbar*/
.search-container {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.search-results {
    position: absolute;
    width: 100%;
    background: white;
    color: black;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.search-results div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.search-results div:last-child {
    border-bottom: none;
}

.search-results div:hover {
    background: #f8f9fa;
}

/* Style intro tekst */
.intro-text {
    background: rgba(0, 0, 0, 0.7);
    color: #ddd;
    font-size: 1.2rem;
    max-width: 80%;
    margin: auto;
    border-left: 5px solid #007bff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.highlight {
    color: #00d4ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1rem;
        padding: 2rem;
        max-width: 95%;
    }
}

/* socialmedia bar */
.social-bar {
    position: relative;
    width: 100%;
    background: #222;
    transform: skewY(-5deg);
    padding: 15px 0;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #FFD700;
}

.social-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #f8f9fa;
}

/* Code voor carousel-homepage*/
.carousel {
    position: relative;
    max-width: 70%;
    margin: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators {
    bottom: 10px;
}

.carousel-indicators button {
    background-color: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/*login pagina*/
.login-container {
    max-width: 400px;
    margin: 100px auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

body.login-page {
    background-color: #121212;
    color: #fff;
}

.login-text{
	color: #0d6efd;
}

.login-container .form-label {
    color: #000;
}

.login-container a {
    color: #0d6efd;
}


/* wapens-pagina */
/* Neonlijn onder secties op wapen en frames */
.neonline {
    position: relative;
    padding-bottom: 40px;
}

.neonline::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, #00d4ff, #007bff);
    box-shadow: 0px 0px 10px #00d4ff;
    border-radius: 5px;
}

/* wapens wapen_naam sectie */
.weapon-img {
    max-width: 70%;
    height: auto;
}

@media (max-width: 768px) {
    .weapon-img {
        max-width: 70%;
    }
}

.weapen-intro-photo {
    background: rgba(187, 187, 187, 0.2);
}

/* wapens hoe krijgen sectie */
.relic-img {
    max-width: 80%;
    height: auto;
}

@media (max-width: 768px) {
    .relic-img {
        max-width: 100%;
    }
}

/* frames pagina */
/* Aanvallen sectie */
.attack-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00d4ff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 10px;
    box-shadow: 0px 0px 15px #00d4ff;
    transition: transform 0.3s ease-in-out;
    color: white;
}

/* Flexbox container voor icon + image */
.attack-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.attack-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.attack-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.attack-content h4 {
    font-size: 1.2rem;
    color: #00d4ff;
    margin-top: 10px;
}

.attack-content p {
    font-size: 1rem;
    color: #f8f9fa;
}

/* Contactpagina */
.contact-section {

    padding: 50px 0;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 212, 255, 0.5);
}

/* Formulier styling */
form {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

form .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #00d4ff;
    color: white;
}

form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

form .btn-primary {
    background: #00d4ff;
    border: none;
}

form .btn-primary:hover {
    background: #007bff;
}

@media (max-width: 768px) {
    .contact-img {
        margin-bottom: 20px;
    }
}
