@charset "UTF-8";

body {
	background:#fff;
	margin:0px;
	padding:0px;
	align-content: center;
	width: 100%;
	text-align: center;}
	
#header {
	margin:0px;
	position:fixed;
	left:0px;
	top:0px;
	background-color:white;
	height:200px;
	width:100%;
	opacity:0.85;
	filter:alpha(opacity=75);
	z-index:1000;
    align-content:center;}


#print_header {
	display:block;
	margin-top:0px;
	margin-left: auto;
	margin-right:auto;
	position:absolute;
	background-color:white;
	height:170px;
	width:350px;
	opacity:0.85;
	filter:alpha(opacity=75);
	z-index:1;
    align-content:center;}

#client_header {
	margin:0px;
	position:fixed;
	left:0px;
	top:10px;
	background-color:white;
	height:50px;
	width:100%;
	z-index:1;
    align-content:center;}

#logo_img {
  margin-top:23px;
   display: block;
  margin-left: auto;
  margin-right: auto;
}
	
#navbar {
  width: 100%;
  margin: 10px auto;
  text-align: center;
  height: auto;
}

#navbar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Optional for responsiveness */
  gap: 30px; /* Nice spacing between items */
}

#navbar ul li {
  width: auto; /* Removes fixed width that causes layout breaks */
}

#navbar ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
  font-family: 'Josefin Slab', serif;
  font-size: 20px;
}

#navbar ul li a:hover {
  text-decoration: underline;
}

#navbar ul li a:active {
  text-decoration: line-through;
}


#pictimeIntegration {
    position:relative;
    top:170px;
    height:100%;
	width:100%;
    margin-left:auto;
    margin-right:auto;}



#copy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #969696;
	font-weight: lighter;
	position: relative;
	bottom: -130px;
	text-align: center;}

#copy_contact {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #969696;
	font-weight: lighter;
	position: bottom;}

.center {
 text-align: center;}

#about_div {width:80%;
	margin-left:auto;
	margin-right: auto;
	margin-top: 210px;
}

#about_img {
	float: left;
	padding-right: 40px;
	padding-bottom: 25px;
}
#about_txt {
    text-align: left;
	font-size: 16px;
}

.booking_link {text-decoration:underline;}
	
#booking_home_link {align-content: center;
width: 100%;}

#home_link {
	padding-top:12px;
	margin-bottom:-160px;
	text-align:center;
	align-content: center;}

#payment_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;              /* Space between buttons */
  margin-top: 15px;
  flex-wrap: nowrap;     /* Forces them to stay on ONE line */
}

/* Optional: scale down slightly on smaller screens */
@media screen and (max-width: 900px) {
  #payment_links {
    transform: scale(0.9);
  }
}

@media screen and (max-width: 700px) {
  #payment_links {
    transform: scale(0.8);
  }
}