@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* ===========================
   Global defaults
   =========================== */
body {
	background-color: rgba(72,88,80,0.55);
	font-family: 'Roboto', sans-serif;
	color: #212529;
	font-size: 1rem;
}

h1, h2, h3 {
	font-family: 'Goldman', sans-serif;
}

.site-header-img {
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

header .navbar {
	margin-top: 0 !important;
}

/* ===========================
   Home hero
   =========================== */
.home-hero {
  position: relative;
  min-height: 75vh;
  border-radius: 1rem;
  overflow: hidden;
  background: #f3f4f6; /* fallback while image loads */
}

/* Picture wrapper fills hero */
.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Image fills wrapper */
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

/* Overlay above image (for contrast) */
.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.20)
  );
}

/* Decorative corner lines */
.corner-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.corner-lines::before,
.corner-lines::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 110px;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.corner-lines::before {
  top: 2rem;
  left: 2rem;
  border-right: 0;
  border-bottom: 0;
}

.corner-lines::after {
  bottom: 2rem;
  right: 2rem;
  border-left: 0;
  border-top: 0;
}

/* Content layer (centers glass card) */
.home-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(12vh);
}

/* Glass card styling */
.glass-card {
  background: rgba(15, 38, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* ===========================
   Navigation
   =========================== */

.navbar-nav .nav-link {
	color: white;
	font-family: "Goldman", sans-serif;
	text-transform: uppercase;
	position: relative;
	transition: all 0.4s ease;
}
.navbar-nav .nav-link:hover {
	color: #FFD700;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Railroad track effect - TOP RAIL */
.navbar-nav .nav-link::before {
	content: '';
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 0;
	height: 2px;
	background: repeating-linear-gradient(
		to right,
		#FFD700 0px,
		#FFD700 8px,
		transparent 8px,
		transparent 12px
	);
	transition: width 0.4s ease;
}

/* Railroad track effect - BOTTOM RAIL */
.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: repeating-linear-gradient(
		to right,
		#FFD700 0px,
		#FFD700 8px,
		transparent 8px,
		transparent 12px
	);
	transition: width 0.4s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after {
	width: 100%;
}


/* ===========================
   Media Queries
   =========================== */

@media (max-width: 700px) {
  .home-hero-content {
    transform: translateY(1vh);
  }
}
