/* --- Header Background --- */
.container-header {
  background: linear-gradient(135deg, #1e4e8c, #2a69b8);
}

/* --- Logo --- */
.navbar-brand a {
  text-decoration: none !important;
}
.navbar-brand img {
  max-height: 65px;
  width: auto;
}

/* --- Menu Centering --- */
.container-header .container-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-header .mod-menu {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* --- Menu Items --- */
.container-header .mod-menu li a {
  color: #ffffff !important;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.container-header .mod-menu li a:hover {
  color: #cde6ff !important;
}

/* --- Search Box (right side) --- */
.container-search {
  margin-left: auto;
}
.mod-finder input[type="text"] {
  border-radius: 8px !important;
  padding: 0.45rem 0.75rem;
  border: 1px solid #ccc;
  width: 190px;
  height: 36px;
}
.mod-finder button {
  border-radius: 8px !important;
  margin-left: 6px;
  background-color: #2a69b8;
  border: none;
  color: #fff;
  padding: 0.45rem 0.8rem;
  transition: background-color 0.3s ease;
}
.mod-finder button:hover {
  background-color: #1e4e8c;
}
label.finder {
  display: none !important;
}

/* --- Banner --- */
.container-banner {
  background: url("/images/banners/site-banner.png") no-repeat center center;
  background-size: cover;
  height: 780px;
  position: relative;
}

/* --- Call Roy Button --- */
.call-roy-btn {
  background-color: #2a69b8;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.call-roy-btn:hover {
  background-color: #173a65;
  color: #fff;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
  .container-header .container-nav {
    justify-content: flex-start;
  }
  .container-search {
    margin-top: 10px;
  }
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 780px;
  color: #fff;
  padding: 0 1rem;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.hero-section h1,
.hero-section h2,
.hero-section p {
  position: relative;
  color: #fff !important;
  margin-bottom: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section h1,
  .hero-section h2,
  .hero-section p {
    white-space: normal;
    font-size: 1.5rem;
  }
}
.hero-section h1 { font-size: 2.8rem; }
.hero-section p { font-size: 1.25rem; }

/* --- Call Roy Button (Hero Section) --- */
.hero-section .btn-primary {
  display: inline-block;
  background: #007bff;
  border: 2px solid #ffffff;
  color: #ffffff !important;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  text-decoration: none !important;
}
.hero-section .btn-primary:hover {
  background: #0056b3;
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* === Top-A Banner + Bio Section === */
.topa-banner {
  position: relative;
  background: var(--hero-banner, url('/images/banners/Now-Selling.png')) no-repeat center center;
  background-size: cover;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.topa-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.topa-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 1rem;
}

.topa-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.topa-content p {
  font-size: 1.15rem;
  color: #f1f1f1;
  margin-bottom: 0;
}

/* Bio Section Below Banner */
.home-bio {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.home-bio h3 {
  color: #1e3c72;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.home-bio p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
