@charset "utf-8";

/* Google Web fonts -----------------------------------------------------------------------------*/
@font-face {font-display: swap; font-family: 'Raleway'; font-style: normal; font-weight: 400; src: url('../fonts/raleway-v37-latin-regular.woff2') format('woff2');}
@font-face {font-display: swap; font-family: 'Raleway'; font-style: italic; font-weight: 400; src: url('../fonts/raleway-v37-latin-italic.woff2') format('woff2');}
@font-face {font-display: swap; font-family: 'Raleway'; font-style: normal; font-weight: 900; src: url('../fonts/raleway-v37-latin-900.woff2') format('woff2');}
@font-face {font-display: swap; font-family: 'Raleway'; font-style: italic; font-weight: 900; src: url('../fonts/raleway-v37-latin-900italic.woff2') format('woff2');}


html {
	font-size: 62.5%;/*set fontsize 1rem is 10px*/
	overflow-y: scroll; 
	text-size-adjust: none;
	/*font-smoothing: antialiased;*/
	text-decoration: none !important;
}
html * {max-height:1000000px;}/*patch for bug infont scaling on mobile chrome*/

html a:hover, a:visited, a:active, a:link {
    text-decoration: none !important;
}

body { margin:0px;}

a[href^=tel]{color:inherit; text-decoration:none;}


input::-moz-focus-inner {border: 0;}


* { /* removes the green highlight when transparent buttons are pressed on mobile */
    -webkit-tap-highlight-color: transparent;
}

h1{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-align:inherit;
	margin: 0;
	padding: 0;
}
h2{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-align:inherit;
	line-height:  inherit;
	margin: 0;
	padding: 0;

}
h3{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-align:inherit;
	line-height:  inherit;
	margin: 0;
	padding: 0;

}

/* Main layout divs Content inside Conainer inside Wrapper*/
.whitePage_Wrapper {
	padding-top:1.0rem;
	width:100%;
	padding-bottom:5.0rem;
}

.whitePage_Container {
	width: calc(92%);
	margin:auto;
	max-width: 1800px;
}
.whitePage_Content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content:center;
	gap: 20px;
}

.reset-button {/* Removes all styling from button and inherits styling from parent */
    background: transparent; /* No background */
    border: none;           /* No border */
    font: inherit;         /* Inherit font properties from parent */
    color: inherit;        /* Inherit text color */
    padding: 0;            /* No padding */
    margin: 0;             /* No margin */
    cursor: pointer;       /* Change cursor to pointer */
    text-align: inherit;   /* Inherit text alignment */
}

.headerWrapper{
	width: 100%;
	box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 14px 0px;
}
.heatherText{
	padding-top: 2rem;
	padding-bottom: 2rem;
	text-align: center;
	font-family:'Raleway', sans-serif; color:black; font-size:1.6rem; font-weight: 400; letter-spacing:0.2rem; line-height:2.0rem;
	text-transform: uppercase;
	opacity:1.0;
}
.emialText{
	font-size:1.4rem;color:darkorange;text-transform:lowercase;font-style: italic; font-weight: 100; letter-spacing:0.15rem;
}
.catagory{
	width:100%;
	height:2rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: rgba(255,255,255,0.1);
	cursor:pointer;
}
.catagoryText{
	text-align: center;
	font-family:'Raleway', sans-serif; color:slategrey; font-size:1.5rem; letter-spacing:0.3rem; line-height:2rem;
}
.catagoryLine{
	background-color: black;
	height: 0.1rem;
	width: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.catagory:hover .catagoryLine{
	opacity: 1.0
}

/* thumbnail Gallery */
#gallery{
}

.thumbNailGallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.thumnailImg{
	width: 30rem;
	height: 30rem;
	object-fit: cover;
	aspect-ratio:1/1;
	margin: 0.5vw;
	cursor:pointer;
}
/* END thumbnail Gallery */


/* full frame image*/
.photographyWrapper{
	display: none;
	position: relative;
}
.fullScreenPhoto{
	display: flex;
	position:fixed;
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(rgb(60,60,60) 0%, black 100%);
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	flex-shrink: 2;
	z-index: 50;
}

.fullScreenPhoto img{
	background-color: white;
    padding: 0.1vw;
}
.fullScreenPhotoNavWrapper{
	display: flex;
	position:fixed;
	align-items: center;
	justify-content: center;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	flex-shrink: 2;
	opacity: 0.85;
	z-index: 100;
}
.fullScreenPhotoNavInner{
	position: relative;
	width:90vw;
	height:90vw;
	z-index: 100;
}
.closePhoto{
	position: absolute;
	top:0%;
	display: flex;
	align-items:flex-start;
	justify-content:flex-end;
	right:0%;
	z-index: 100;
	width:20rem;
	height:8rem;
	cursor:pointer;	
	opacity: 0.5;
	padding-top: 1rem;
	padding-right: 1rem;
}
.closePhoto img{
	width:3rem;
	aspect-ratio:1/1;
}
.nextPhoto{
	position: absolute;
	top:0%;
	display: flex;
	align-items: center;
	justify-content:flex-end;
	right:0%;
	z-index: 50;
	width:30%;
	height:100%;
	cursor:pointer;	
	opacity: 0.5;
}
.nextPhoto img{
	width:3rem; /*(parent height/2) - (image width /2) */
	aspect-ratio:1/1;
}
.prevPhoto{
	position: absolute;
	top:0%;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	left:0%;
	z-index: 100;
	width:30%;
	height:100%;
	cursor:pointer;	
	opacity: 0.5;	
}

.prevPhoto img{
	width:3rem;
	aspect-ratio:1/1;
}

.nextPhoto_OutsideImage{ /* extra button when pressed right of the image */
	position: fixed;
	top:25vh;
	right:0px;
	height: 50vh;
	width: 45vw;
	background-color: yellow;
	opacity: 0.0;
	z-index: 12;
}
.prevPhoto_OutsideImage{ /* extra button when pressed left of the image */
	position: fixed;
	top:25vh;
	left:0px;
	height: 50vh;
	width: 45vw;
	background-color: green;
	opacity: 0.0;
	z-index: 12;
}
.closePhotoTop_OutsideImage{ /* extra button when pressed above image */
	position: fixed;
	top:0px;
	left:0px;
	height: 25vh;
	width: 100vw;
	background-color: blue;
	opacity: 0.0;
	z-index: 12;
}
.closePhotoBottom_OutsideImage{ /* extra button when pressed below image */
	position: fixed;
	top:75vh;
	left:0px;
	height: 25vh;
	width: 100vw;
	background-color: blue;
	opacity: 0.0;
	z-index: 12;
}
/* END full frame image*/

.footer_LFC{
	padding-top:2rem;
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.copyright { 
	padding-top:1rem;
	font-family:'Raleway'; font-style:normal; font-size:1.25rem; color:gray; text-align:center; vertical-align:middle; letter-spacing: 0.1rem;
	width: 100%;
}



/* Media Query note: Make sure there is a corresponding media query in general CSS */

@media (hover:hover){ /* targets devices that can hover */
	.nextPhoto:hover{ opacity: 1; transition: all 0.3s ease-in-out;}
	.prevPhoto:hover{opacity: 1;transition: all 0.3s ease-in-out;}
	.closePhoto:hover{opacity: 1;transition: all 0.3s ease-in-out;}
}
@media (hover:none){ /* targets devices that don't hover like mobile */
	
}

/* Phone in portrait */
@media only screen and (max-device-width: 767px) and (orientation : portrait) {

	.thumnailImg {width: 20rem;	height: 20rem;}
	.whitePage_Container{width: 98%;}
	.catagoryText{ font-size:1.5rem; letter-spacing:0.2rem; line-height:2rem;}
	.heatherText{font-size:1.6rem; letter-spacing:0.2rem; line-height:2rem; padding-top: 3rem; padding-bottom: 2rem; transform: scaleX(0.8);transform-origin: center;}
	.closePhoto img{width:2rem;	aspect-ratio:1/1;}
}
/* Phone in landscape */
@media only screen and (max-device-height: 767px) and (orientation : landscape) {

	.thumnailImg {width: 20rem;	height: 20rem;}
	.whitePage_Container{width: 98%;}
	.catagoryText{ font-size:1.5rem; letter-spacing:0.2rem; line-height:2rem;}
}



@media only screen and (max-device-width: 767px){
	.thumnailImg {width: 18rem;	height: 18rem;}
	.whitePage_Container{width: 98%;}
}
