/* CSS Document */

/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background-color: #f2f2f2;*/
  padding: 10px;
}



.header-content {
  display: flex;
  align-items: center;
  text-align: center;
}

.header-info {
  margin-left: 25px;
  font-weight: bold;
}

.header-content h3 {
	color: #5a0004;
	font-size: 50px;
	margin-bottom: 0px;
	margin-top: 0px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 5px;
  font-size: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #5a0004;
  padding: 10px 15px;
  font-weight: bold;
}

nav ul li a:hover{
	background-color: #DCDCDC;
}


/* Mobile Nav */

#nav-mobile-links{
	display: none;
}

.nav-mobile{
	display: none;
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #000000;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}


/* ********* */

.header_logo {
	width: 130px;
}

.title{
	display: none;
}

.slideshow_images{
	width: 100%;
	float: right;
	margin-left: 0px;
}

main {
  padding: 20px;
  display: flex;
}

.main {
	padding-left: 90px;
	font-family: 'sans-srif';
	display: flex;
}

section {
  margin-bottom: 20px;
}

.main section p {
	padding-left: 25px;
	font-size: 125%
}

.operation_hours{
	margin-right: 3%;
	flex: 1;
}

.days-hours {
  display: flex;
}

.days {
  flex: 1;
  margin-right: 10px;
}

.hours {
  flex: 1;
}

.hours p{
	white-space: nowrap;
}

main h1{
	color: #5A0004
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  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;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

footer {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  font-size: 12px;
}

#logo_header {
	display: none;
}



@media screen and (max-width: 768px) {
	
	.desktop_nav{
		display: none;
	}
	
	.nav-mobile{
		display: inline-block;
	}
	
	#nav-mobile-links{
		
	}
	
	#nav-mobile-links a{
		display: block;
		background-color: #464646;
		text-decoration: none;
		color: white;
		padding: 14px 16px;
		font-size: 17px;
	}
	
	#nav-mobile-links a:hover{
		background-color: #6C6C6C;
	}
	
	main {
		flex-direction: column-reverse;
	}
	
	.operation_hours, .main {
		width: 100%;
	}
	
	.operation_hours {
		text-align: center; /* Specifically center the content of operation_hours */
	    justify-content: center; /* Centers vertically if needed */
        align-items: center; /* Centers horizontally */
	}
	
	.days-hours {
		margin: 0% 25% 0% 25%
	}
}
