/* defining fonts used in the site */
@font-face {
  font-family: "GAMECUBEN";
  src: url("./public/font/GameCube.ttf");
}
@font-face {
  font-family: "Bebas_Neue";
  src: url("./public/font/BebasNeue-Regular.ttf");
}
/* genaric styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* use html tag just for scrolling */
html {
  scroll-behavior: smooth;
}
/* global listing styling */
ul {
  list-style: none;
}
li a {
  color: #fff;
}
/* hero section styling */
.hero {
  background-image: url("/public/images/hero.png");
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}
.shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  z-index: 9;
}
.slid-text {
  text-transform: uppercase;
  color: #fff;
  z-index: 99;
  position: absolute;
}
.heading {
  text-align: center;
  font-family: GAMECUBEN;
  font-size: 64px;
}
.heading-3 {
  font-size: 17px;
  font-weight: 500;
  font-family: Montserrat;
  line-height: 25px;
  color: #fff;
  margin-bottom: 10px;
}

.sub-heading {
  font-family: Montserrat;
  font-size: 2rem;
  text-align: center;
  text-transform: capitalize;
}
/* section heading text color white */
.section-heading {
  font-family: Bebas_Neue;
  font-size: 80px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: 1px;
  text-align: left;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: under;
  margin-bottom: 2rem;
}
.text {
  color: #fff;
  font-family: Montserrat;
  font-size: 1rem;
  line-height: 30px;
}
/* section heading text color dark */
.section-heading-dark {
  font-family: Bebas_Neue;
  font-size: 80px;
  font-weight: 400;
  line-height: 96px;
  letter-spacing: 1px;
  text-align: left;
  color: #222222;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: under;
  margin-bottom: 2rem;
}
.text-dark {
  color: #222222;
  font-family: Montserrat;
  font-size: 1rem;
  line-height: 30px;
}
/* sticky header */
.sticky {
  position: sticky;
  top: 0;
  background-color: #ffffff; /* Change this to your desired background color */
  z-index: 1000; /* Ensure it's above other elements */
}
.image-with-shadow {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.navbar-shadow {
  box-shadow: 0 13px 7px 3px rgba(0, 0, 0, 0.1);
}
.toggle-btn {
  border: 1px solid #fff !important;
}
.nav-item {
  border-bottom: 2px solid #070707;
}
.nav-item:hover {
  border-bottom: 2px solid #ffc107;
}
.link-style {
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #fff !important;
  text-transform: uppercase;
}
.list {
  list-style: disc;
}
.list li a {
  color: blue;
}
@media (max-width: 500px) {
  .heading {
    font-size: 2rem;
  }
  .sub-heading {
    font-size: 1rem;
    text-align: center;
  }
  .marginTop-1 {
    margin-top: 3rem !important;
  }
}
.nowrap {
  text-wrap: nowrap;
}
