@charset "utf-8";
* {
  margin: 0;
  padding: 70;
  box-sizing: border-box;
}
body {
  background-color:#C59192;
  margin: 0;
  padding: 0;
  background-image:url('../assets/ap-background.jpg');
  background-attachment:fixed;
  background-size: auto; 
}

.navbar.fixed-top.navbar-expand-lg.navbar-dark.bg-dark.navbar-custom #navbarSupportedContent1 {
    padding-right: 20px;
}

.navbar-brand {
	font-family: 'Dancing Script', cursive !important;
	color:goldenrod !important;
	text-shadow: 1px 1px 1px black;
	padding-top: 0px;
    padding-bottom: 0px;
	padding-left: 20px;
	}

.bg-dark{
	background: transparent !important;
	transition: 1.5 ease;
	
}
.bg-dark.scrolled {
	background: #212121 !important;
	box-shadow: 2px 2px 3px goldenrod;
	
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link
{
    background-color:rgba(22,20,20,0.35);
	color: goldenrod;
	}

/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(187,123,19,1.00)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.grid-gallery {
  width: 100%;
  max-width: auto;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.grid-gallery .grid-item {
  position: relative;
  background-color: #CB842B;
  overflow: hidden;
}

.grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: top;
  transition: transform 0.5s cubic-bezier(#212329);
}

.grid-gallery .grid-item:hover img {
  transform: scale(1.1);
}

.grid-gallery .grid-item a {
  cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(3n - 2) {
  grid-column: span 2;
  grid-row: span 2;
}
.col-md-4 a .rounded.img-fluid.zoom {
    padding-bottom: 20px;
}



/* Let's make it responsive */
@media (max-width: 1080px) {
  .grid-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: unset;
    grid-row: unset;
  }
}



#hero {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: -70px;
    width: auto;
    position: relative;
}

.row .col-md-4 h1 {
    font-family: 'Dancing Script', cursive;
	color: palegoldenrod;
	text-shadow: 2px 2px 1px black;
	padding-top: 20px;
	padding-bottom: 10px;
   
	padding-left: 20px;
	background: #212121;
	
}



.row .col-md-4 p {
    letter-spacing: 2px;
	color: palegoldenrod;
}

#logo {
    background-color: #212121;
    padding-bottom: 26px;
	padding-top: 30px;
	float: left;
}
.row .col-xl-4 h5 {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    color: white;
    padding-top: 40px;
	padding-bottom: 40px;
    font-style: normal; 
    text-shadow: 1px 1px 2px rgba(224,174,0,0.50);
}
.row .col-xl-4 h2 {
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    color: white;
    padding-top: 40px;
	padding-bottom: 40px;
    font-style: normal; 
    text-shadow: 1px 1px 2px rgba(224,174,0,0.50);
}
.zoom:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

#galeryLinks {
	padding-bottom: 50px;
	padding-left: 30px;
	padding-right:30px;
}


#contactSection .text-center {
	color:floralwhite;
	word-spacing: 1px;
	padding-top: 70px;
}
#contactSection p {
	color:floralwhite;
	word-spacing: 1px;
}
.row .col-xl-4 label {
	color: palegoldenrod;
	padding-top: 10px;	
}



/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}


.row #contactFields input, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid palegoldenrod; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  
}


#contactSection {
	padding-bottom: 30px;

}


.row #contactFields button {
  display: inline-block;
  border-radius: 4px;
  background-color:darkgreen;
  border: gold;
  color: whitesmoke;
  text-emphasis: bold;
  text-align: center;
  font-size: 18px;
  padding: 2px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.row #contactFields button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.row #contactFields button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.row #contactFields button:hover span {
  padding-right: 25px;
}

.row #contactFields button:hover span:after {
  opacity: 1;
  right: 0;
}
.row .col-xl-4 p {
	text-align: right;
	color: darkgoldenrod
}


#contactSection .row #contactFields {
	background: rgba(0,0,0,0.69)
}


#gallerylogo {
    padding-top: 0px;
    margin-top: -30px;
}
.footer.py-4 {
    background-color: #424242;
}

#contactSection .row .col-xl-4 {
    	background: rgba(0,0,0,0.69)
}
.row #logofooter .img-fluid {
    position: relative;
    top: 30%;
}
.container-fluid .text-center {
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    color: white;
    padding-top: 40px;
	padding-bottom: 40px;
    font-style: normal; 
    text-shadow: 1px 1px 2px rgba(224,174,0,0.50);
}
#galeryLinks .col-md-4 {
    border: thin solid #E5E5E5;
    border-radius: 1px;
    padding-bottom: 10px;
}
