@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Thin.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Hairline.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Hairline.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-ExtraLight.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-ExtraLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Light.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Regular.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Regular.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Medium.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Medium.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Semibold.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Semibold.woff') format('woff');
  font-weight: 700;
}

@font-face {
  font-family: 'Nuckle';
  src: url('../../../assets/fonts/Nuckle/Nuckle-Bold.woff2') format('woff2'),
       url('../../../assets/fonts/Nuckle/Nuckle-Bold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

body {
  font-family: 'Nuckle', sans-serif;
}

.banner {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.banner-slide {
  position: relative;
  width: 100%;
  height: 100%; /* changed from 550px → 100% */
}

.banner-img {
  width: 100%;
  height: 100%;
  min-height: 100%; /* added for proper scaling */
  object-fit: cover;
  object-position: center; /* ensures centered image focus */
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  top: -250px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.site-header > .container {
  background: #00000063;
  border-radius: 35px;
  padding: 5px 15px 10px 40px;
  margin-top: 25px;
}

.banner-content h1 {
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Nuckle';
  text-transform: uppercase;
}

.btn-outline-primary {
  color: white;
  border-color: #0d6efd;
  border-radius: 35px;
  padding: 10px 35px 13px;
  margin: 3px 0px 0px;
  background-color: #0d6efd;
}

.btn-outline-primary:hover{
  background-color: black;
}

.navbar-expand-md .navbar-collapse {
  justify-content: center;
}

.nav-item {
  margin: 0px 10px;
}

.nav-link {
  color: white;
}

.nav-link.active {
  color: #0d6efd;
}

.banner-content h2 {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-family: 'Nuckle';
}

/* Carousel Controls */
.carousel-control-prev-icon {
  background-image: url('../../../assets/images/prevArrow.svg');
}
.carousel-control-next-icon {
  background-image: url('../../../assets/images/nextArrow.svg');
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
}

/* Dots */
.carousel-indicators [data-bs-target] {
  background-color: #0d6efd;
  opacity: 0.5;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.carousel-indicators .active {
  opacity: 1;
}

/* Force full-height scaling for Bootstrap carousel */
.banner,
#heroCarousel,
.carousel-inner,
.carousel-item,
.banner-slide {
  height: 100%;
  min-height: 550px; /* same as your banner height */
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* maintains proportion */
  object-position: center; /* center focus */
  display: block;
}

.site-footer {
  background-color: #041321; /* deep navy */
  padding: 50px 0 20px;
  text-align: center;
  color: #b8c5d1; /* soft gray */
  font-family: "Poppins", sans-serif;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 55px;
  margin-bottom: 50px;
}

.footer-btn {
    color: white;
    border: 1px solid #3c4a5a;
    padding: 15px 80px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Nuckle';
    font-weight: 500;
}

.footer-btn::after{
  content:url('../../../assets/images/footerButtonArrow.svg');
}

.footer-btn:hover {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #1f2b39;
  width: 80%;
  margin: 10px auto 20px;
}

.footer-copy {
  font-size: 16px;
  color: #b8c5d1;
}

.footer-copy a {
  color: #0d6efd;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}
