@charset "UTF-8";

@font-face {
 	font-family: myFirstFont;
	src: url('vineritc.eot'); 										/* IE9 Compat Modes */
  	src: url('vineritc.eot?#iefix') format('embedded-opentype'),	/* IE6-IE8 */
	     url('vineritc.woff2') format('woff2'),						/* Super Modern Browsers */
	     url('vineritc.woff') format('woff'),						/* Pretty Modern Browsers */
	     url('vineritc.ttf') format('truetype'),					/* Safari, Android, iOS */
	     url('vineritc.svg#svgFontName') format('svg');				/* Legacy iOS */	
	font-weight: normal;
	font-style: normal;
}



/* SECTION: HAMBURGER MENU */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	margin: 0 0 0 0;
	padding: 0;
	box-sizing: border-box; */ 	 /* removing this wildcard will cause MyFirstFont vineritc not to load */
}



/* SECTION: HEADER - used in js script. see also .logo below for positoning of h1/h2/h3 icons */
h1 {										/* Via Poetica */
	margin: 0 0 4px 0;
	padding: 18px 0 10px 0; 
	font-size: 45px;
	font-family: myFirstFont, Carolus FG;
	letter-spacing: -0.03em;
	font-style: normal;
	font-weight: normal;
	color: #000;
	border-bottom: none;
	width: 100%;
}

h2 {										/* Darcy Blahut rights reserved */
	position: absolute;
	left: 112px;
	top: 36px;
	font-family: "Poppins", sans-serif;
	font-size: 9px;
	font-style: normal;
	font-weight: normal;
	color: #666B6B;
}

h3{											/* header glyphicons - mandorla, triangle, sans tweet, links, mail, ribbon */
	position: absolute;
	left: -93px;
	top: 70px;
	height: 140vh;							/* Value above 100vh extends background sufficiently below bottom screen edge for cell devices */
}

h4{											/* Position of painting on menu appearing behind list items */
	position: absolute;
	top: 80px;
	right: 100px;
	color:#8A9A5B;
	z-index: -1;
}

/* frame around header */
.container {
  max-width: 1250px;
  width: 100%;
  margin: auto;
  height: 100vh;
}

.navbar {
  width: 100%;
  box-shadow: 0 1px 0 rgb(146 161 176 / 45%);		/* grey line beneath Via Poetica header */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: left;
  height: 100vh;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: normal;
	color: #228B22; 			/* forest green */
	background-color: none;
	text-decoration: none;
}

.nav-container {
  font-weight: bold;
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 32px;								/* height of container around hamburger lines */
  width: 40px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;								/* note: hamburger lines same z-index as .sticky div element below */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 5px;							/* thickness of hamburger lines */
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

/* frame around off-screen menu items */
.navbar .menu-items {
  padding-top: 70px;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  height: 150vh;	/* must remain as vh (and not %) */
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: 0px;
  padding-left: 0px;
  transition: transform 0.5s ease-in-out;
  text-align: left;
  line-height: 0.5;				/* reduced leading between menu items to fit on cell devices */
  background-color: #FFFFED;	/* light yellow */
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 5px;
  right: 490px;					/* adjusts VIA h1, h2, and h3 left and right in relation to hamburger icon. works with values in h1/h2/h3 above */
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}



/* SECTION: WILDCARD & BODY */
* {
	margin: 0;
	padding: 0 0 0 0; 	/* note: padding is always clockwise (top right bottom left) */
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0px 0px 0px 0px;					/* set for full width on cell devices */
  font: 16px Arial, Helvetica, Sans-Serif;
  line-height: 24px;
}



/* SECTION: MOUSE-OVER & LINKS */
a {
	color: #228B22;
	font-weight: bold;
	background-color: none;
	text-decoration: none;
	opacity: 0.6;
}

a:hover {
	color: #228B22;
	font-weight: bold;
	background-color: none;
	text-decoration: none;
	opacity: 1.0;
}

a img:hover {
	webkit-filter: blur(4px); /* Chrome, Safari, Opera */
    filter: blur(4px);
}


/* SECTION: PAGE FORMAT & PROPERTIES */
#page-wrap {
	width: 800px;
	margin: 0px auto 15px; /* gives margin at bottom of each page */
}


.sticky {							/* for coloured box behind Via Poetica header */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0px;
  background-color: #F3F8ED;
  border-bottom: 0px solid #FFFFFF;
  z-index: 2;
}

.content {							/* adjusting page to align right of header icons */
	padding-right: 20px;			/* right padding keeps text from touching scroll bar on cell devices */
	padding-left: 90px;
	padding-top:40px;
}

.poem {
	font-family: inherit;
}

.font-color {
    color: #228B22;					/* cascades forest green to all text tagged with this element */
}

img {
    max-width: 100%;
}

p { 
	margin: 0 0 16px 10px;
	text-align: justify;
	text-justify: inter-word;
}

/* dl contains both dd and dt columns */
dl {
	overflow-x: none;
	width: 800px;
	padding-left: 50px;
}

/* right column */
dd {
	width: 560px;
	padding-left: 5px;				/* adjusts right column */
	float: right;
	line-height:125%;
	/*text-align:;
	text-justify:; */	/* note: justifying the dd will skew word spacing between poem sub-titles. keep off. */
}

dd.clear { 
	float: none;
	margin: 0;
	height: 15px;
}

.clear {
	clear: both;
}

/* left column */
dt { 
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	float: left;
	text-align: right;
	padding: 0 20px 0 0;			/* adjusts left column to align with content above */
	width: 170px;					/* note: dt width needs to be in sync with dd width for horizontal alignment of columns */
	height: 100px;
	border-right: 1px solid #999;
}

dt.norm {
	font-style: normal;
}



/* SECTION: ALIGNS THREE FLOWER OF LIFE IMAGES ON MANDORLA PAGE IN ROWS/COLUMNS */
.image123 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
}

#images{
    text-align:center;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  flex-direction: column;
  padding-left: 25px;
  padding-right: 25px;
  flex: 1;
}


/* SECTION: "RETURN TO TOP" BUTTON ON GALLERY, PATRISTIC, AND INCIPITS PAGES */
#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	border-color: none;
	border-radius: 0px;
	z-index: 99;
	cursor: pointer;
	padding: 3px;
	opacity: 0.6;
	/* 
	font-size: 16px;
	border: none;
	outline: none;
	color: none; */
}

#myBtn:hover {
	background-color: #FFFFED;
	opacity: 1.0;
}

.arrow {
	width: 55px;
	height: 55px;
}





/* SECTION: PULSATING EMBLEM ON INDEX-TEST PAGE */
.dot {
	position: relative;
	left: 0;
	top: 0;
	opacity: 1;
}




/* TEST SECTION: ENLARGE IMAGE ON HOVER */
.enlarge-onhover {
	width: 100px;
	height: 150px;
}

.enlarge-onhover:hover {
     width: 210px;
	 height: 300px;
    
}