@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&display=swap'); /* font-family: 'Akaya Telivigala', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap'); /* font-family: 'Indie Flower', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); /* font-family: 'Pacifico', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@399&display=swap'); /* font-family: 'Josefin Sans', sans-serif; */
/* CSS Document */

#wrapper {
}

.navLogo {
	width: 100px;
	height: auto;
}

.slideshowImage {
	margin: 0 auto;
	width: 40%; 
	height: auto;
	padding: 0 auto;
}

.slideshowText {
	background: rgba(59, 59, 59, 70%);
	width: 40%;
	margin: 0 auto;
	border-radius: 10px;
	padding:10px;
}

.slideshowText h5{
	font-size: 2.625em; /* 42/16 */
}

#homeHeader {
	height: 60px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2.8125em; /* 45/16 */
	color: white;
	padding: 3px 10px 10px 10px; /* T,R,B,L */
}

.footerLink {
	float: right; 
	background-color: #E9ECEF;
	width: 100%;
	text-align: center;
}

/* end of home page */




/* Gallery Page */

#galleryWrapper {
	margin-left: 4%;
	width: 100%;
	position: relative;
}

.galleryContainer {
	width: 15%;
	height: 300px;
	position: relative;
	margin: 0 auto; 
	overflow: hidden;
	display: inline-block;
}
.image {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
	
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.galleryContainer:hover .image {
  opacity: 0.3;
}

.galleryContainer:hover .middle {
  opacity: 1;
}

.text {
	background: rgba(226, 113, 58, 70%);
	color: white;
	font-size: 12px;
	width: 300px;
	padding: 10px;
	text-align: center;
}

/* end of gallery page */

/* about us page */


#aboutUsWrapper {
	margin: 0 auto;
	padding: 15px;
	background: rgba(34, 91, 110, 90%);
	color: white;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

#aboutUsWrapper p {
	font-family: 'Akaya Telivigala', cursive;
	font-size: 24px
}

#aboutWrapper {
	width: 85%; /* controls the width of the entire header video item */
	margin: 0 auto;
}
#formWrapper {
	margin: 10px 50px;
	padding: 10px;
}

#formWrapper h1{
	margin: 0 auto;
	padding: 10px;
	font-size: 36px;
	text-align: center;
	font-weight: bold;
}


/* video-header - based on and inspired by:https://startbootstrap.com/snippets/video-header*/
header {
  position: relative;
  background-color: black;
  height: 200px;
  min-height: 500px; /* height of the video */
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%; /* adjusts the video's height within the video box*/
  left: 50%;
  min-width: 90%; 
  min-height: 10%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 35%;
  width: 100%;
  background: rgba(34, 91, 110, 90%);
  opacity: 0;
  z-index: 1;
}

/* form styles */
.firstName {
	width: 24%;
	margin-right: 5px;
}

.lastName {
	width: 24%;
}

.phoneNumber {
	width: 15%;
	margin-left: 5px;
	margin-right: 10px;
}

.animalType {
	margin-left: -160px;
	margin-top: 31px;
	width: 150px;
}

.commentsBox {
	margin-left: 5%;
	width: 62%;
}


/* end of video header */

/* end of about us page */


/* adopt page */
html.adopt,body.adopt{margin:0;padding:0;height:100%;}

#pageUnderConstruction {
	text-align: center;
	background-color: #ffd000;
	margin: 0 auto;
	height: 100%;
}

#pageUnderConstruction img {
	width: 300px; 
	height: auto; 
	position: relative;
	
}

#pageUnderConstruction footer {
	background-color: #E9ECEF; 
	position: fixed; 
	bottom: 0px; 
	left: 0px; 
	width: 100%;
}

#pageUnderConstruction h1 {
	padding: 2% 0;
	font-size: 2.75em;
}

#pageUnderConstruction h2, #pageUnderConstruction h3 {
	font-size: 2.125em;
	padding: 5px 10%;
}

#contactStyles {
	text-align: center;
	background: rgba(226, 113, 58, 100%);
	width: 50%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px 1px #888888;
}

.mailButton {
	text-align: center;
	background: rgba(56, 107, 124, 100%);
	width: 20%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
}

.adoptContainer {
	border: 2px solid black;
	width: 19%;
	height: 400px;
	position: relative;
	margin: 0 7px;
	overflow: hidden;
	display: inline-block;
}

.adoptImage {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

.adoptMiddle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.adoptContainer:hover .adoptImage {
  opacity: 0.3;
}

.adoptContainer:hover .adoptMiddle {
  opacity: 1;
}

.adoptText {
	background: rgba(226, 113, 58, 70%);
	color: white;
	font-size: 15px;
	width: 400px;
	padding: 10px;
	text-align: center;
}

.adoptFont {
	font-size: 14px;
	font-weight: bold;
}
/* end of adopt page */

@media only screen and (max-width: 1590px) {
	
.slideshowImage {
margin: 0 auto;
width: 50%;
}
	
.slideshowText {
width: 70%;
font-size: 16px;
margin: 0 auto;
}
	
.slideshowText h5{
font-size: 34px;
}

}

@media only screen and (max-width: 1175px){
.slideshowText {
width: 85%;
margin: 0 auto;
padding: 8px 8px;
}
	
.slideshowText h5{
font-size: 18px;
}
.slideshowImage {
margin: 0 auto;
width: 60%;
}
	
}

@media only screen and (max-width: 768px) {

.slideshowText {
width: 100%;
margin: 0;
padding: 2px 9px;
font-size: 19px;
}
	
.slideshowText h5{
font-size: 48px;
}
.slideshowImage {
margin: 0 auto;
width: 100%;
}
}

@media only all and (max-width: 515px) {
.slideshowText {
width: 50%;
height: 50px;
margin: 0 auto;
}
	
.slideshowText p {
display: none;
}
	
.slideshowText h5{
margin: 0 auto;
font-size: 30px;
}
.slideshowImage {
margin: 0 auto;
width: 100%;
}
	
}/* end of home page queries */

/* gallery page queries */

@media only screen and (max-width: 1775px) {
#galleryWrapper {
	margin-left: 8%;
	width: 100%;
	position: relative;
}

}
@media only screen and (max-width: 1430px) {
#galleryWrapper {
	margin-left: 11%;
	width: 100%;
	position: relative;
}

}

@media only screen and (max-width: 710px) {
#galleryWrapper {
	margin-left: 20%;
	width: 100%;
	position: relative;
}

}

@media only screen and (max-width: 460px) {
#galleryWrapper {
	margin-left: 14%;
	width: 100%;
	position: relative;
}

.galleryContainer {
	width: 100%;
	height: 350px;
	position: relative;
	margin: 0 auto; 
	overflow: hidden;
	display: inline-block;
}
.image {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.galleryContainer:hover .image {
  opacity: 0.3;
}

.galleryContainer:hover .middle {
  opacity: 1;
}

.text {
	background: rgba(226, 113, 58, 70%);
	color: white;
	font-size: 12px;
	width: 300px;
	padding: 10px;
	text-align: center;
}

}
/* end of gallery page queries */


/* about page queries */
@media only screen and (max-width: 1025px) {
	#contactStyles {
	text-align: center;
	background: rgba(226, 113, 58, 100%);
	width: 100%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px 1px #888888;
}

.mailButton {
	text-align: center;
	background: rgba(56, 107, 124, 100%);
	width: 20%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
}
}

@media only screen and (max-width: 510px) {
	#contactStyles {
	text-align: center;
	background: rgba(226, 113, 58, 100%);
	width: 100%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px 1px #888888;
}

.mailButton {
	text-align: center;
	background: rgba(56, 107, 124, 100%);
	width: 60%;
	height: auto;
	margin: 15px auto;
	padding: 10px 20px;
	border-radius: 10px;
}
}
/* end of about page queries */

/* adopt page queries */

@media only screen and (max-width: 1030px) {
	html.adopt,body.adopt{margin:0;padding:0;height:100%;}

#pageUnderConstruction {
	text-align: center;
	background-color: #ffd000;
	margin: 0 auto;
	height: 100%;
}

#pageUnderConstruction img {
	width: 300px; 
	height: auto; 
	position: relative;
}

#pageUnderConstruction footer {
	background-color: #E9ECEF; 
	position: fixed; 
	bottom: 0px; 
	left: 0px; 
	width: 100%;
}

#pageUnderConstruction h1 {
	padding: 2% 0;
	font-size: 2.75em;
}

#pageUnderConstruction h2, #pageUnderConstruction h3 {
	font-size: 2.125em;
	padding: 5px 10%;
}
}
@media only screen and (max-width: 777px) {
	#pageUnderConstruction img {
		width: 200px;
	}
}


/* end of adopt page queries */
