@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Open+Sans+Condensed:wght@300&family=Saira+Condensed:wght@100&display=swap');
@font-face {
  font-family: spartan;
  src: url(LeagueSpartan-Bold.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  background-color: #023157;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 143px;
  margin-left: 1em;
  padding-top: 0.5em;
}
.logo-container a {
  height: 91px;
}
.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav {
  height: 100%;
  background-color: #023157;
  margin-right: 1em;
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
}
nav ul a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  padding: 1em;
  position: relative;
}

nav ul a:hover::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #fff;
  margin-top: 0.5em;
  position: absolute;
  left: 15%;
  bottom: 0;
}
.ham-menu {
  display: none;
  margin-right: 1em;
  
}
.ham-menu img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.ham-menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #023157;
  z-index: 10;
  transform: translateX(200%);
  transition: transform 0.5s ease-in-out;
  text-align: center;
}
.ham-menu-container::after{
  content: "";
  /* display: block; */
  width: 100%;
  height: 100%;
  background-color: #1d1d1d9c;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  
  /* transition: transform 0.5s ease-in-out; */
}
.ham-menu-container ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 50%;
  font-size: 1.2em;
  margin-bottom: 2em;
  width: 80%;
  
}
.ham-menu-container li a {
  padding: 0;
}
.ham-menu-container.show {
  transform: translateX(0);
}
.main-section {
  background-color: #023157;
  width: 100%;
  height: auto;
  background-image: url("campShalomBG.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  position: relative;
  display: flex;

  align-items: center;
  flex-direction: column;
}
.main-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 45, 0.8);
}
.main-section h1 {
  font-size: 5.5em;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0;
  font-family: spartan;
  z-index: 1;
  text-align: center;
}
.main-section h2 {
  font-size: 3em;
  color: #fbe99e;
  font-weight: bold;
  margin-bottom: 0.2em;
  margin-top: 1.4em;
  z-index: 1;
  font-family: spartan;
  text-align: center;
}
.main-section p {
  margin-top: 2em;
  font-weight: bold;

  z-index: 1;
}
.main-p {
  color: #fbe99e;
  width: 60%;
  line-height: 1.7em;
  font-size: 1.3em;
  margin-bottom: 1.5em;
  max-width: 900px;
  text-align: justify;
}
.location-p {
  color: white;
  font-size: 1.4em;
  line-height: 2em;
  text-align: center;
}
.main-section .rocks {
  color: #fbe99e;
  font-size: 2.5em;
  font-family: spartan;
  margin-top: 1.5em;
  margin-bottom: 1em;
  text-align: center;
}
.sponsor-sec {
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  padding-top: 1em;
  padding-bottom: 3em;
}

.sponsor-sec p {
  color: #333;
  font-size: 1.3em;
  line-height: 1.5em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
}
.sponsor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  gap: 2em;
}
.sponsor-container img:first-child {
  width: 250px;
}
.sponsor-container img:last-child {
  width: 300px;
}
footer {
  background-color: #023157;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  padding-top: 1em;
  padding-bottom: 0.5em;
}
footer img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-family: 'Saira Condensed', sans-serif;
}

@media screen and (max-width: 1000px) {
  .menu {
    display: none;
  }
  .ham-menu {
    display: block;
  }
  nav ul a:hover::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .main-section h1 {
    font-size: 3em;
  }
  .main-section h2 {
    font-size: 2em;
  }
  .main-section p {
    font-size: 1.1em;
    text-align: center;
    
  }
  .main-p {
    font-size: 1.1em;
    line-height: 1.5em;
    width: 85%;
  }
  .location-p {
    font-size: 1em;
    margin: 1em;
  
  }

  .sponsor-container {
    flex-direction: column;
    
  }
  .sponsor-container img:last-child {
   margin-bottom: 2em;
    
  }
}
  
