/* Base styles for the site */
body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero section styling 
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
}
*/
/* Hero section styling 
.hero {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0b1220;
  color: #fff;
  padding: 180px 0;
}
*/



/* Hero section styling */
.hero {
  position: relative;
  min-height: 340px;
  background: #08111f;
  display: flex;
  align-items: center;
  justify-content: center;
 overflow: hidden;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #08111f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
/*  background: rgba(5, 12, 24, 0.28);
    background: rgba(0, 0, 0, 0.45); */
  background: linear-gradient(
    rgba(5,15,35,0.65),
    rgba(5,15,35,0.45),
    rgba(5,15,35,0.65)
  );
  z-index: 1;
}

/*
.hero-overlay-content {
  position: relative;
  z-index: 2;
  min-height: 340px;
} */

.hero-overlay-content {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-10px);
}


.hero h1,
.hero .lead,
.hero .fw-semibold {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero h1 {
  font-size: 2.4rem;
}

.hero .lead {
  font-size: 1.05rem;
}

.hero .fw-semibold {
  font-size: 0.95rem;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}


.hero h1 {
  color: #ffffff;
  font-weight: 800;
}

.hero .lead {
/*  color: #000000; */
  font-weight: 600;
}

.hero .fw-semibold {
  /*color: #000000; */
  font-weight: 600;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Navbar adjustments */

.navbar-brand {
  font-size: 1.1rem;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-size: 0.92rem;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-weight: 500;
}

.navbar {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Card styling */
.card {
  border: none;
  border-radius: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-weight: 600;
}

.card-text {
  color: #555;
}

/* Footer styling */
footer {
  margin-top: auto;
}

/* Table styling in admin interface */
.table th, .table td {
  vertical-align: middle;
}

/* Buttons adjustments */
.btn-outline-primary {
  border-width: 2px;
}

/* Admin form spacing */
form .mb-3 {
  margin-bottom: 1rem;
}


.btn-primary {
  background-color: #9a6b1f !important;
  border-color: #9a6b1f !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #7c5518 !important;
  border-color: #7c5518 !important;
  color: #fff !important;
}

.justify-text {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  font-size: 1.08rem;
}

/* Navbar text improvement */

.navbar {
  background-color: #111 !important;
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  color: #e8e8e8 !important;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 14px;
  padding-right: 14px;
}

.navbar-nav .nav-link:hover {
  color: #f5c542 !important;   /* soft gold hover */
}

.navbar-nav .nav-link.active {
  color: #f5c542 !important;
  font-weight: 700;
}

.narrow {
  max-width: 1140px;
}

.container.my-5.narrow.justify-text {
  margin-top: 2.5rem !important;
  margin-bottom: 2rem !important;
}
