

/*
 *  PacificAirVideo.com
 *  
 *  CSS display configuration.
 *  
 *  Created by Scott Johnstone 
 *  ©2025 Pacific Air Video Services
 *  
 *  info@pacificairvideo.com
 * 
 */


/* *** GLOBAL *** */

:root {
	
	--col_orange: #D3935C;
	--col_orange_dark: #a4642c;
	--col_orange_light: #de9e68;
	--col_orange_xlight: #f9dcc3;
	
	--col_bg_body: #fff;
	--col_bg_nav: #fff;
	--col_bg_nav_sub: #eee;
	
	--width_center_column: 800px;
	
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-family: 'Montserrat', 'Verdana', sans-serif;
	vertical-align: baseline;
	background: transparent;
	color: var(--col_bl);
}

html, body {
	width: 100%;
	min-height: 100vh;
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	background: var(--col_bg_body);
}

#pageload_fadein {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: opacity 0.2s;
	z-index: 100;
}

div.float_clear {
	clear: both;
}

div.spacer {
	height: 2v;
	margin: 0;
}

.disabled {
	color: var(--col_disabled);
}

.nowrap {
	white-space: nowrap;
}

.pointer {
	cursor: pointer;
}





/* *** MAIN CONTENT elements *** */


#main_cont {
	position: relative;
	flex-grow: 1;
}

#content_cont {
	margin: 0 auto;
	width: 80vw;
	max-width: var(--width_center_column);
}

.content_title {
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: min(2vw, 2vh);
	text-transform: uppercase;
}

.txt_btn {
	display: inline-block;
	margin: min(2vw, 2vh) 0;
	padding: 10px;
	background: var(--col_orange);
	border-radius: 10px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.txt_btn:hover {
	background: var(--col_orange_light);
}






/* *** NAV MENU *** */

#nav_cont {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100vw;
}

#nav_cont a:link,
#nav_cont a:visited,
#nav_cont a:hover,
#nav_cont a:active {
	text-decoration: none;
}


#nav_mnml_cont {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-150%);
	display: flex;
	flex-flow: row wrap;
	transition: 0.5s;
}
	
#nav_mnml_main_cont {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: min(1vw, 1vh);
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	background: var(--col_bg_nav);
	box-shadow: 0 1px min(2vw, 2vh) black;
}
			
#nav_mnml_cont a,
#nav_mnml_cont a:visited {
	font-size: 1.1em;
}

#nav_mnml_cont a:hover {
	
}

#nav_mnml_menu_icon {

}

#nav_mnml_sub_cont {
	position: absolute;
	z-index: 0;
	top: 100%;
	left: 0;
	width: 100%;
	transform: translateY(-150%);
	padding: min(2vw, 2vh) 0 min(1vw, 1vh) 0;
	box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
	background: var(--col_bg_nav_sub);
	box-shadow: 0 1px min(2vw, 2vh) black;
	transition: 0.5s;
}

#nav_mnml_sub_cont a,
#nav_mnml_sub_cont a:visited {
	font: 1em 'Montserrat', sans-serif;
}

#nav_mnml_sub_cont a:hover {
	
}


#nav_full_cont {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-150%);
	padding: min(1vw, 1vh);
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	background: var(--col_bg_nav);
	box-shadow: 0 1px min(2vw, 2vh) black;
	transition: 0.5s;
}
	
#nav_full_buttons {
	
}

#nav_full_buttons a,
#nav_full_buttons a:visited {
	margin: 0 min(2vw, 2vh);
}

#nav_full_buttons a:hover {
	text-shadow: #bbb 0 0 2px;
}

#nav_full_bname {
	
}

#nav_full_bname a,
#nav_full_bname a:visited {
	margin: 0 min(2vw, 2vh);
	font-size: 1.2em;
}





/* *** FOOTER *** */

#ftr_cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: min(4vw, 4vh);
	background: #000;
    outline: 5px double #000;
    color: #fff;
	animation-duration: 1s;
	animation-delay: 0.5s;
}

#ftr_cont * {
	padding: min(1vw, 1vh) 0;
	font-size: 0.95em;
	text-decoration: none;
}

#ftr_cont a:hover {
	text-shadow: #fff 0 0 1vh;
}





#ftr_content_cont,
#ftr_cc_separator {
	width: 80vw;
	max-width: var(--width_center_column);
}

#ftr_content_cont {
	display: flex;
	flex-flow: column;
}

#ftr_blurb_cont {
	flex-basis: 40%;
}

.ftr_title {
	font-size: 1.4em !important;
	margin: min(1.5vw, 1.5vh) 0;
}

#ftr_contact_cont {
	flex-basis: 40%;
	padding-left: min(2vw, 2vh);
}

#ftr_contact_deets * {
	padding: 0;
	vertical-align: middle;
	font-size: 1em;
}

.ftr_contact_icon {
	height: 1.4em;
    margin: min(0.3vw, 0.3vh);
    margin-left: 0;
}

#ftr_menu_cont {
	margin-top: min(1.5vw, 1.5vh);
	display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

#ftr_menu_cont a,
#ftr_menu_cont a:visited {
	color: var(--col_orange_dark);
}

#ftr_menu_cont a:hover {
	text-shadow: #bbb 0 0 2px;
}

#ftr_cc_separator {
	height: 1px;
	padding: 0;
	background: #fff
}

#ftr_cc p {
	font-size: 0.7em;
}





#debug {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 50px;
	max-height: 200px;
	overflow: scroll;
	background: #000; 
	color: #0a0; 
}




#page_bottom {
	position: absolute;
	bottom: -50000px;
}





/* ---------- BREAK-POINTS ------------------------------------------------------------------------------------------------------------- */


@media (min-width: 690px) { 
	

	#ftr_cont {
		
	}

	#ftr_content_cont {
		flex-flow: row nowrap;
	}

	#ftr_menu_cont {
	    flex-flow: column;
		flex-basis: 20%;
	    justify-content: space-between;
	    text-align: right;
	}


}



@media (min-width: 1950px) { 
	
	html {
		font-size: 1.3em;
	}

}






/* ---------- CUSTOM FONTS ------------------------------------------------------------------------------------------------------------- */


@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}





/* ---------- KEYFRAMES ------------------------------------------------------------------------------------------------------------- */


@keyframes contact_pulse {
	0% {
		background: #000;
	}
	10% {
		background: #ccc;
	}
	100% {
		background: #000;
	}
}
