* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Lora', serif;
            background: linear-gradient(to right, #f8f9fa, #e6ddd4);
            color: #333;
            line-height: 1.6;
        }
		header {
			background: linear-gradient(to right, #f8f9fa, #e6ddd4);
			color: white;
			padding: 0px;
			text-align: center;
		}
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            background-color: #e9e9e9;
            font-size: 16px;
        }

.maindivindex {
    width: 60%;
    background-color: #ffffff;
    border-radius: 16px; 
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0 auto;
    overflow: hidden;
}

.maindivindex .header {
    background: #f5f5f7;   
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
	color: black;
}

.maindivindex .subfield {
    padding: 20px;
    font-size: 1rem;
    color: #333;
}

img {
	padding: 10px;
	position: relative;
	max-width: 80%;
}

nav ul li a {
    color: #3a3a3a;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-size: 20px; 
    font-weight: 505;
}
        nav ul li a {
            color: #3a3a3a;
            text-decoration: none;
            padding: 10px;
            display: block;
        }
        nav ul li a:hover {
            background-color: #F8F9FA;
        }
.hero {
    position: relative;
    background-image: url('..//image/kerk.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 200px 20px;
    text-align: center;
    text-shadow: 0 2px 5px rgba(217, 217, 217, 0.6);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6));
    pointer-events: none;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}
        .content {
            padding: 20px;
            max-width: 900px;
            margin: auto;
        }
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: #e9e9e9;
    color: black;
    z-index: 1000;
}

a.custom-link {
            color: #000000; 
}
            color: white; 
        @media (max-width: 600px) {
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 5px 0;
            }
        }
h2 {
    color: black;
}
p {
    color: black;
}

.section-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: #F8F9FA;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.slideshow-container {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.slide-text {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

.slide-text h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 1.2rem;
}

.slide-text.active {
  opacity: 1;
  z-index: 1;
}

        .button-container {
            display: flex;
            gap: 20px;
			justify-content: center;
			padding: 20px;
        }
        .button-container button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border: 0px solid;
            background: #e4e4e4c4;
            color: black;
            border-radius: 5px;
            transition: background-color 0.3s, transform 0.2s;
        }
		.button-container button .subbuttonfield {
			padding: 10px;
			font-size: 1rem;
			font-style: italic;
			color: #333333d4;
		}
        .button-container button:hover {
            background-color: #a1a1a1;
            transform: translateY(-3px);
        }

@media (max-width: 1024px) {
  .section-slide {
    display: none;
  }
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 15px;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }
    nav ul {
        flex-direction: column;
        display: none; 
        width: 100%;
        background-color: #e9e9e9;
    }
    nav ul.showing {
        display: flex;
    }
}