:root {
  --logodkbrown: #452f00;
  --logomedbrown: #855c02;
  --logoltbrown: #e8c486;
  --offwhite: #fbf5e9;      /* #f0f0f0*/
  --offblack: #0c110c;     /* #0c240c; */
  --mainthemecolor: #ce5526;
  --accentcolor1: #3b6767;
  --accentcolor2: #f4dd6e;
  --charcoalgrey: #333;
  --mediumgrey: #888;
  --lightgrey: #ddd;
  --i: 1;
}
html body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Geologica", sans-serif; 
	background-color: var(--offwhite);
}
.bodytext {
	margin: 72px;
	font-size: 16px;
}
@media screen and (max-width: 600px) {
	.bodytext {
		margin: 36px;
		font-size: 16px;
	}
}

h1, h2, h3, h4, h5, h6 {
	text-align: center;
}

/*
Source - https://stackoverflow.com/a/20358308
Posted by FredTheLover, modified by community. See post 'Timeline' for change history
Retrieved 2026-03-27, License - CC BY-SA 3.0
*/
a.anchor{display: block; position: relative; top: -100px; visibility: hidden;}

/********************************************
top background
********************************************/
.topbackground {
	background-color: rgb(0,0,0,0.5);
	height: 94px;
	min-height: 94px;
	max-height: 94px;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 0;
	/* padding: 4px; */
	box-sizing: border-box;
	position: fixed;
	top: 0;
}

/* nav logo size/settings */
.navlogo {
	height: 86px;
	max-height: 86px;
	min-height: 86px;
	position: fixed;
	top: 4px;
	right: 4px;
}
@media screen and (max-width:600px) {
	.topbackground {
		height: 54px;
		min-height: 54px;
		max-height: 54px;
	}
	.navlogo {
		height: 50px;
		max-height: 50px;
		min-height: 50px;
		top: 2px; 
		right: 2px;
	}
}


/* make a div surrounding the entire nav bar as sticky  */
.sticktotop {
	position: fixed;   /* sticky */
	top: 0;
	z-index: 105;
}


/***********************************************
  navigation bars
************************************************/

/* Add a black background color to the top navigation */
.topnav {
  background-color: var(--mainthemecolor);
  overflow: hidden;
  border-bottom: solid var(--logodkbrown);
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: var(--offwhite);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Add an active class to highlight the current page */
.active {
  background-color: var(--accentcolor1);
  color: var(--offwhite);
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px; 
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: var(--offblack);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: var(--charcoalgrey);
  color: var(--offwhite);
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--lightgrey);
  color: var(--offblack);
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
  .responsive .navlogo {
	  display: none;
  }
}

/************************************************
   flex container for centering content divs 
************************************************/
.flexcontainer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}


/***********************************************************
    social media/contact Buttons 
***********************************************************/
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  border-radius: 0 10% 10% 0;
}
@media screen and (max-width: 600px) {
	.icon-bar a {
		font-size: 16px;
		padding: 10px;
	}
}
	

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}
.twitter {
  background: #55ACEE;
  color: white;
}
.google {
  background: #dd4b39;
  color: white;
}
.linkedin {
  background: #007bb5;
  color: white;
}
.youtube {
  background: #bb0000;
  color: white;
}
.phonecall {
  background: #00bb00;
  color: white;
}
.textmessage {
  background: #0000bb;
  color: white;
}
.instagram {
  background: #833AB4;
  color: white;
}
.email {
	background: #515BD4;
	color: white;
}


/****************************************************
  main picture
****************************************************/
.toppic {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	border: none;
	padding: 0;
	margin: 0;
}
.toppic img:not(.navlogo) {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	border: none;
	padding: 0;
	margin: 0;
}
/*   edit for screen width at some point  */

/*************************************************
  responsive pics
**************************************************/
.responsive img {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	border: 0;
	padding: 0;
	margin: 0;
}

img.pricelist {
	width: 92%;
	max-width: 92%;
	min-width: 92%;
	border: 0;
	padding: 0;
	border-radius: 5%;
}
@media (max-width: 600px) {
	img.pricelist {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		border-radius: 0;
	}
}

/*************************************************/
/*       Footer                                  */
/*************************************************/

.footer {
	font-size: 14px;   /* default */
	font-weight: 200;	
	margin-top: 36px;
	padding: 36px 36px 0 36px;
	display: block;
	width: 100%;
	background-color: rgb(0,0,0,0.2);   /* var(--oakbark); */
	color: var(--cloudwhite);
	border-top: 2px solid var(--charcoalgrey);
	box-sizing: border-box;
	font-size: 16px;
}
.footer1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	box-sizing: border-box;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.footer2 {
	font-size: 12px;
	padding-bottom: 4px;
	/* padding-top: 24px;
	padding-bottom: 8px;
	margin-bottom: 0; */
}

@media screen and (max-width: 600px) {
	.footer-company {
		width: 100%;
		text-align: center;
	}
	.shortcut-icons {
		width: 100%;
	}
}
.shortcut-icons {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	box-sizing: border-box;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.shortcut-icons a {
	text-decoration: none;
	padding: 12px;
	box-sizing: content-box;
	color: var(--offblack);
	font-size: 36px;
}
.shortcut-icons a:hover {
	background-color: rgb(0,0,0,0.4);
}
