:focus {
 outline: none !important;
 box-shadow: none !important;
}

.form-control:focus,
.btn:focus,
.input-group-text:focus {
 border-color: #ced4da !important;
}

.hero-section {
 height: calc(100vh - 150px);
 background: url('../../assets/img/bg-hero.jpg') center center / cover no-repeat;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 color: white;
 position: relative;
}

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

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

.hero-section h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  /*text-transform: uppercase;*/
  text-shadow: 0 5px 4px rgba(0, 0, 0, 0.8);
}

.sub-hero-section {
  height: 300px;
  background: url('../../assets/img/bg-hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.sub-hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.sub-hero-section .sub-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.sub-hero-section h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-shadow: 0 5px 4px rgba(0, 0, 0, 0.8);
}

.sub-hero-section p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.btn-nori {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 background-color: #fefaf2;
 color: #1e4b75;
 font-weight: 500;
 font-size: 1.125rem;
 line-height: 1.25;
 padding: 0.85rem 1.4rem;
 border-radius: 16px;
 border: 1px solid #e5e5e5;
 text-decoration: none;
 min-width: 200px;
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
 transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
 transform: translateY(0);
}

.btn-nori:hover {
 background-color: #ffffff;
 box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
 transform: translateY(-2px) scale(1.015);
 text-decoration: none;
}

.btn-nori img {
 height: 36px;
 width: auto;
 display: block;
}

@media (max-width: 991.98px) {
 .hero-section {
  height: calc(100vh - 99px);
 }
}

#topNavbar {
 transition: transform 0.3s ease;
 position: relative;
 z-index: 1050;
}

#topNavbar.hidden {
 transform: translateY(-100%);
}

#subNavbar {
 position: sticky;
 top: 0;
 z-index: 1030;
 transition: box-shadow 0.3s ease;
}

.social-icon {
 font-size: 1.25rem;
 color: #555;
 margin: 0 8px;
 transition: transform 0.3s ease, color 0.3s ease;
 display: inline-block;
}

.social-icon:hover {
 color: #000;
 transform: scale(1.2);
}

.fade-links a {
 transition: opacity 0.3s ease, color 0.3s ease;
}

.fade-links a:hover {
 color: #000;
 opacity: 1;
}

.sup-tiny {
 font-size: 12px;
 color: #6c757d;
 position: relative;
 top: -19px;
}
