html,body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: black;
  opacity: 0;
  animation: fadeIn 1s forwards; 	
}
 @keyframes fadeIn {
    to {
        opacity: 1;
    }
} 

/* =====================
   Header Styles
   ===================== */
.logo-container{
  display: flex ;
   text-align: center;
   background: #fff;
   padding: 1em 0 0.5em 0;
   justify-content: center;
}

.logo{
  width: 250px;
  max-width: 90vw;
  height: auto;
  display: block;
}
.desktop-navigation-container{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #20371e;
  gap: 2em;
  padding: 0.7em 0;
}
.nav-item{
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
}
.nav-item:hover{
  background-color: #152414;
}
.nav-link{
  text-decoration: none;
  color: white;
  box-sizing: content-box;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  display: block;
}
.info-container {
  background-color: #191919;
  color: white;
  padding: 1em;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 1.1em;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.info-container:hover {
  text-decoration: underline solid;
  cursor: pointer;
}

/* Mobile Header/Nav Styles */
.mobile-navigation-container{
  justify-content: center;
  align-items: center;
  background-color: #20371e;
}
.mobile-nav-item{
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em;
  text-align: center;
}
.mobile-image-container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu-container{
  display: none;
}
.mobile-menu-icon{
  display: none;
  width: 5em;
  height: 5em;
  cursor: pointer;
  border-radius: 10px;
}
.mobile-menu-icon:hover{
  background-color: #152414;
}
.mobile-nav-item:hover{
  background-color: #152414;
}
.mobile-nav-link{
  text-decoration: none;
  color: white;
  box-sizing: content-box;
}

/* End Header Styles */

/* Category Section */
.category-header{
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-size: 4em;
  text-transform: uppercase;
  margin-top: 1em;
  margin-bottom: 1em;
}

.category-section{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #191919;
  padding: 2em;
  margin-top: 0px;
  margin-bottom: 4em;
  flex-wrap: wrap;
  gap: 2em;
}

.category-item{
  width: 400px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.category-item:hover{
  border: 1px solid #8dcbffe5;
  transform: scale(1.02);
}

.catagory-title{
  color: white;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #7c5227;
  padding: 1em;
}

.category-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.category-link{
  text-decoration: none;
  color: white;
}

.site-title {
  color: white;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: clamp(0.5px, 1vw, 2px);
  line-height: 1.2;
  margin: 0;
  padding: 0 1rem;
}

.site-subtitle {
  color: white;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: clamp(0.5px, 0.5vw, 1px);
  margin-top: 1rem;
  padding: 0 1rem;
}

/* Banner Image */
.banner-image {
  background-image: url('../assets/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) to control darkness */
  z-index: 2;
}

/* Make sure content inside banner is above the overlay */
.banner-image > * {
  position: relative;
  z-index: 3;
}

/* Media Queries for Banner */
@media screen and (max-width: 1024px) {
  .banner-image {
    height: 70vh;
  }
}

@media screen and (max-width: 768px) {
  .banner-image {
    height: 60vh;
  }
  .desktop-navigation-container{
    display: none;
  }
  .mobile-menu-icon{
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .banner-image {
    height: 50vh;
  }
}


/* Footer Styles */
.site-footer {
  display: flex;
  margin: auto;
  background-color: #191919;
  color: white;
  font-family: Montserrat, sans-serif;
  padding: 20px;
  justify-content: space-evenly;
}

.footer-item {
  text-decoration: none;
  color: white;
  padding: 1em;
}

.footer-item:hover {
  text-decoration: none;
  color: rgb(163, 163, 163);
}

.copyright-container {
  background-color: #191919; 
  color: white;
  font-family: Montserrat, sans-serif;
  padding: 20px;
  text-align: center;
}

.menu-footer-item {
  padding: 10px;
  list-style: none;
}

.item-hover {
  color: #fff;
}

.item-hover:hover {
  color: rgb(163, 163, 163);
  cursor: pointer;
}

.bottom-footer-site {
  background-color: #191919;
  text-align: center;
  padding: 10px;
}

.bottom-footer-item {
  color: white;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.bottom-footer-item:hover {
  color: rgb(163, 163, 163);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding-inline-start: 2em;
  background-color: #191919;
}

.payment-icons-items {
  padding-inline-start: 2em;
}

/* Footer Media Queries */
@media screen and (max-width:800px) {
  .site-footer {
    display: block;
  }
}

/* Media Queries for Category Section */
@media screen and (max-width: 1200px) {
  .category-header {
    font-size: 3.5em;
  }
  
  .category-item {
    width: 350px;
  }
}

@media screen and (max-width: 900px) {
  .category-header {
    font-size: 3em;
  }
  
  .category-section {
    padding: 1.5em;
    gap: 1.5em;
  }
  
  .category-item {
    width: 300px;
  }
  
  .catagory-title {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 600px) {
  .category-header {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  
  .category-section {
    padding: 1em;
    gap: 1em;
  }
  
  .category-item {
    width: 100%;
    max-width: 300px;
  }
  
  .catagory-title {
    font-size: 1.2em;
    padding: 0.8em;
  }
}

@media screen and (max-width: 400px) {
  .category-header{
    font-size: 1.5em;
  }
}

/* Sponsor Brands Section */
.sponsor-section {
  background-color: #191919;
  padding: 4em 2em;
  margin-top: 2em;
}

.sponsor-header {
  text-align: center;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.sponsor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3em;
  max-width: 1400px;
  margin: 0 auto;
}

.sponsor-item {
  background-color: white;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Media Queries for Sponsor Section */
@media screen and (max-width: 1200px) {
  .sponsor-header {
    font-size: 2.2em;
  }
  
  .sponsor-container {
    gap: 2.5em;
  }
  
  .sponsor-item {
    width: 180px;
    height: 110px;
  }
}

@media screen and (max-width: 900px) {
  .sponsor-section {
    padding: 3em 1.5em;
  }
  
  .sponsor-header {
    font-size: 2em;
    margin-bottom: 1.2em;
  }
  
  .sponsor-container {
    gap: 2em;
  }
  
  .sponsor-item {
    width: 160px;
    height: 100px;
  }
}

@media screen and (max-width: 600px) {
  .sponsor-section {
    padding: 2em 1em;
  }
  
  .sponsor-header {
    font-size: 1.8em;
    margin-bottom: 1em;
  }
  
  .sponsor-container {
    gap: 1.5em;
  }
  
  .sponsor-item {
    width: 140px;
    height: 90px;
    padding: 1em;
  }
}
