/* --------------- Revised - Saturday, July 26th, 2025, 8:00 am -------------- */

* {
    box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #4E4E4E;
	font-family: Raleway, montserrat, sans-serif;
}

a:link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

a:visited {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

a:active {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.spacer {
	float: left;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 20px;
}

.spacer-black {
	
	align-items: center;
	text-align: center;
	width: 100%;
	height: 20px;
	background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
	/* background-color: #000; */
}

.spacer-big {
	float: left;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 50px;
	padding: 8px;
}

.seperator {
	width: 100%;
	background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1), rgba(0,0,0,0));
	height: 2px;
	max-height: 2px;
	margin: 25px 0;
	z-index: 1;
}

hr.news {
	width: 100%;
	/* border: 1px solid black; */
}

/* -------------- Nav Menu -------------- */

.nav {
	display: flex;
	align-items: center;
	margin: 11px 0 0 0;
    background-color: #000;
    position: fixed;
	width: 100%;
	z-index: 2;
	box-shadow: 0 8px 18px rgba(0,0,0,1);
}

.nav > .nav-links {
    float: none;
	margin-left: 5%;
    letter-spacing: 0.2em;
}

.nav > .nav-links > ul{
    padding: 0;
	margin: 0;
    list-style: none;
}

.nav > .nav-links > ul li{
    background-color: #000;
}

.nav > .nav-links > ul li a{
	padding: 8px 35px;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
	text-align: left;
	/* border: 1px solid purple; */
}

.nav > .nav-links > ul li a:hover{
	color: #000;
	background-color: #ABABAB;
	animation-name: menu-hover;
	animation-duration: 1.0s;
}

.nav > .nav-btn {
    display: none;
}

.nav > #nav-check {
	display: none;
}

.nav .nav-links ul a.icon{
	/* margin-left: 80px; */
	/* margin-right: 10px; */
}

/* Icon circle */
.nav .nav-links ul a i{
    background-color: #fff;
    border-radius: 50px;
    padding: 7px;
}

/* -------------- Portfolio Dropdown Menu -------------- */

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

li {
	float: left;
}

.dropbtn {
	cursor: default;
}

li a, .dropbtn {
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
	color: #000;
  	background-color: #ABABAB;
	animation-name: menu-hover;
	animation-duration: 1.0s;
}

li.dropdown {
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #000;
	width: 220px;
	box-shadow: 0px 8px 18px rgba(0,0,0,1);
	z-index: 1;
}

.dropdown-content a {
	text-decoration: none;
	display: block;
	border: 1px solid #1A1A1A;
}

.dropdown-content a:hover {
	cursor: pointer;
	color: #000;
	background-color: #ABABAB;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* --------------- Header Artwork -------------- */

.header-art {
	overflow: hidden;
	line-height: 0;
	box-shadow: 0px 8px 18px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
	border-bottom: 6px solid black;
}

.header-art img {
	width: 100%;
	height: auto;
	margin: 33px 0 0 0;
}

/* --------------- Header Logo -------------- */

.logo {
	position: absolute;
	top: 1.5%;
	left: 5%;
	width: 17%;
	height: auto;
	transform: scale(1);
	transition: all 1.2s ease-out;
}

.logo img {
	/* position: absolute; */
}

.logo:hover{
	transform: scale(1.05);
	transition: all 0.2s ease-out;
}

/* --------------- Page Specific -------------- */

.page-wrapper {
	
}

.page-headline {
	margin: 2% 0 0 0;
}

.page-content {
	
}

.page-content-index {
	margin: 2% 15% 10% 15%;
	padding: 2% 10% 6% 10%;
	background-color: #E3E3E3;
	box-shadow: 0 8px 18px rgba(0,0,0,0.2);
	border: 2px solid #000;
}

.page-content-news {
	width: 100%;
	height: 100%;
	padding: 3% 0%;
	overflow: hidden;
	background-color: #E3E3E3;
	/* box-shadow: 0 8px 18px rgba(0,0,0,0.2); */
	/* border: 1px solid #000; */
}
.page-content-news img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 2px solid #000;
}

.page-content-about {
	margin: 2% 15% 10% 15%;
	padding: 2% 10% 6% 10%;
	background-color: #E3E3E3;
	box-shadow: 0 8px 18px rgba(0,0,0,0.2);
	/* border: 1px solid deeppink; */
}

.icon-container {
	display: grid;
	align-items: center;
	justify-content: center;
	grid-template-columns: auto auto auto auto;
}

.icon-container div {
	background-color: #505050;
	border: 2px solid #ABABAB;
	border-radius: 8px;
	box-shadow: 0 5px 18px rgba(0,0,0,0.5);
	margin: 10px;
	font-size: 0.6em;
	text-align: center;
}

.icon-container div img {
	width: 80%;
	padding: 10px 5px;
}

.image-container {
	width: 100%;
	padding-bottom: 20px;
}

/* --------------- Contact -------------- */

.sbutton {
	width: 6em;
	height: 2em;
	font-size: 1em;
}

/* --------------- Gallery -------------- */

#container {
	margin: 1% 3% 5% 3%;
	/* border: 1px solid green; */
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 0;
	align-items: center;
	/* border: 1px solid aqua; */
}

.image-gallery .image {
	width: 300px;
	margin: 20px;
	overflow: hidden;
	box-shadow: 0px 8px 18px 0 rgba(0, 0, 0, 0.2), 0 16px 20px 0 rgba(0, 0, 0, 0.19);
	border: 4px solid #000;
	/* border: 4px solid #949494; */
}

.image-gallery img {
	width: 100%;
	margin: 0;
	padding: 0;
	transition: transform 0.3s ease-out;
}

.image-gallery img:hover {
	transform: scale(1.2);
}

.lazy img {
  background: #505050;
  height: 300px;
  width: 300px;
  display: block;
  border: 0;
}

/* --------------- Responsive -------------- */

@media (max-width:900px) {
	.nav > .nav-links > ul li a{
		padding: 8px 15px;
	}
}

@media (max-width:700px) {
    .nav > .nav-btn {
		display: inline-block;
		position: absolute;
		right: 0px;
		top: 0px;
	}
	
    .nav > .nav-btn > label {
		display: inline-block;
		width: 50px;
		height: 50px;
		padding: 13px;
	}
	
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
		color: #000;
		background-color: #ABABAB;
		animation-name: menu-hover;
		animation-duration: 1.0s;
		border-radius: 5px;
	}
	
    .nav > .nav-btn > label > span {
		color: #000;
		display: block;
		width: 25px;
		height: 10px;
		border-top: 2px solid #eee;
	}
	
    .nav > .nav-links {
		position: absolute;
		display: block;
		width: 100%;
		background-color: #333;
		height: 0px;
		transition: all 0.3s ease-in;
		overflow-y: hidden;
		top: 50px;
		left: 0px;
	}
	
    .nav > .nav-links > ul li a {
		display: block;
		width: 100%;
	}
	
    /*   */
	.nav > .nav-links > ul li{
        display: block;
        margin-bottom: 20px;
        padding: 0;
        background-color: #333;
		
	}
	.nav > .nav-links > ul li a{
		margin-left: 40%;
	}
	.nav .nav-links ul a.icon{
        margin-left: 33%;
	}
	
    /*   */
    .nav > #nav-check:not(:checked) ~ .nav-links {
		height: 0px;
	}
    .nav > #nav-check:checked ~ .nav-links {
		height: calc(100vh - 50px);
		overflow-y: auto;
	}
}

/* --------------- Hover Effect -------------- */

@keyframes menu-hover {
	0% {color: #fff;}
	100% {color: #000;}
	0% {background-color: #F0F0F0;}
	100% {background-color: #ABABAB;}
}

/* --------------- Fonts -------------- */

p {
	font-weight: 400;
	font-size: 0.9em;
	color: #000;
	letter-spacing: 0.05em;
	line-height: 1.3em;
}

p.news {
	font-weight: 400;
	font-size: 0.9em;
	color: #000;
	letter-spacing: 0.05em;
	line-height: 1.3em;
}

p.white {
	color: #fff;
	letter-spacing: 0.15em;
}

h1 {
	font-weight: 500;
	color: #000;
	letter-spacing: 0.25em;
}

.version1 {
	text-align: center;
	color: #ABABAB;
}

.version2 {
	text-align: center;
	color: #000;
}

h2 {
	font-weight: 400;
	color: #000;
	letter-spacing: 0.1em;
}

h3 {
	font-weight: 600;
	color: #1F5972;
	letter-spacing: 0.05em;
	line-height: 1em;
}

h4 {
	color: #000;
	letter-spacing: 0.15em;
}

h5 {
	font-size: 0.8em;
	font-weight: 600;
	color: #000;
	line-height: 2em;
	/* letter-spacing: 0.1em; */
}