@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;
}

.hero-container{
  position: relative;
}

.hero-overlay-card{
  position: relative;         /* was absolute */
  left: auto;
  top: auto;
  transform: none;

  z-index: auto;
  width: 100%;
  max-width: none;

  background: #fff;
  padding: 1.5rem 1.75rem;
  text-align: center;

  border-radius: 1rem 1rem 0 0;          /* matches hero-container rounding */
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;                       /* optional: keep clean, not "modal" */
}

/* tighten on small screens */
@media (max-width: 768px){
  .hero-overlay-card{
    padding: 1.25rem 1rem;
  }
}


/* ===========================
   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%;
}


/* ===========================
   Two-column hero layout - Unified design
   =========================== */
.home-hero-split {
  margin-bottom: 2rem;
}

.hero-container {
  background: rgba(72, 88, 80, 0.95); /* Green background wraps entire hero */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 1rem 0 0 1rem; /* Rounded left corners only */
}

.hero-image-wrapper img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

/* Right column content area */
.hero-content-col {
  background: rgba(72, 88, 80, 0.95); /* Matches container green */
  border-radius: 0 1rem 1rem 0; /* Rounded right corners only */
}

.hero-content-inner {
  color: #fff;
}

/* Mobile: Stack vertically */
@media (max-width: 991.98px) {
  .hero-image-wrapper {
    min-height: 300px;
    border-radius: 1rem 1rem 0 0; /* Top corners rounded on mobile */
  }
  
  .hero-content-col {
    border-radius: 0 0 1rem 1rem; /* Bottom corners rounded on mobile */
  }
}



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

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