/* Styling for the konya-logo class */

 header {
    padding: 0 120px
    }
	
.konya-logo-container {
	max-width: 100%; 
	height: auto;
	border: 2px solid gray; 
	border-radius: 0px;
	display: flex;
	margin: 0 auto;
	position: center;
	justify-content: center;
	color: blue;
}

.text-box > p {
	color: black;
	padding: 0 30px
}

.social-box {
    position: absolute;
	right: 0;
	color: black;
	padding-top: 30px;
    padding-bottom: 0px;
    padding-left: 0px;
	padding-right: 150px
}


img {
  border: none;
}

/* Horizontal Navigation List Styles */

nav ul {
  display: flex;
  margin: 5;
  padding: 5;
  justify-content: center;
}

nav li {
  display: inline; 
  padding: 15px;
}

nav a {
  text-decoration: none;
}
nav.horizontal ul {
	height: 60px;
	background-color: green;
}

nav a {
	text-decoration: none;
	color: black;
	display: block;
	padding: auto;
}

nav a:hover {
	color: red;
}




/* Slideshow container */
.slideshow-container {
  max-width: 1650px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px; /* Adjust based on your arrow size to perfectly center */
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8); /* Added for better visibility */
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,1);
  color: red;
}

/* Image styles */
.mySlides img {
  width: 100%;
  height: 800px;
}



