@charset "utf-8";
/* CSS Document */

/* @font-face { font-family: Display; src: url('images/display.ttf'); }  */


body {
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: top center; /* Aligns the background to the top center */
	background-repeat: no-repeat;
	background-size: cover; /* Ensures the background covers the entire viewport */
	background-color: #000000;
	color: #2F343B;
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-size: 16px; 
	border: 0px;
	margin: 0; /* Removes default body margin that might cause spacing issues */
	padding: 0;
}

img { border: 0px; }


/* TEXT */
.text-blue-large {
	color: #2F343B;
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.text-blue-med{
	color: #2F343B;
	font-family: "Montserrat", sans-serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
}

.text-blue-med-bold{
	color: #2F343B;
	font-family: "Montserrat", sans-serif;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.text-blue-small{
	color: #2F343B;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
}


/* ND */

.znd{
	color: #EFE5D5;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
    text-transform: uppercase;
	padding: 10px;
	font-weight: 300;
	letter-spacing: 0.2em;
}

.znd a{
	color: #EFE5D5;
	text-decoration: none;
}


.section-title {
  font-family: "Fjalla One", sans-serif;
	text-transform: uppercase;
  font-weight: 700;
  font-size: 48px; /* adjust as needed */
  color: #2F343B; /* your dark navy-ish color */
  margin-bottom: 5px;
}

.section-underline {
  width: 100%;
  max-width: 900px; /* control line length */
  height: 5px;
  background-color: #EFE5D5; /* your beige color */
}


/* MENU */
.menu-index {
    background-color: #A4A8AA;
    width: 572px;
    height: 50px;
    color: #353d47;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
	font-weight: 900;
    text-align: center;
    white-space: nowrap;
}

.menu-index a {
    display: inline-block;
    text-decoration: none;
    color: #353d47;
    padding: 0px 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-index a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


/* LINKS AND BORDER */

a {
	color: #9f9f9f;
}

.border {
	border: 3px solid #9f9f9f;
}
.pageborder {
	box-shadow: 0px 1px 10px 5px rgba(0,0,0,0.85); }



/* BACKGROUNDS */

.sub-bg {
	background-color: #FAFCFC;
	padding: 20px;
}


 