@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@200;300;400;500;600;700&family=Yeseva+One&display=swap');

html, body {
    background-image: url('Dadssong.jpg'); /* Add your image as the background */
    background-size: cover; /* Cover the entire page */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the image */
    font-family: "Poppins", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh; /* Makes sure the body covers the full viewport height */
    width: 100vw; /* Ensures the body covers the full viewport width */
    overflow-x: hidden; /* Prevents horizontal scroll */
    background-color: #000000;
    font-size: 16px; /* Adjust base font size */
    line-height: 1.6; /* Adjust line height */
  }

/* ===== NEWS SECTION ===== */

.news-section {
  padding: 180px 20px 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.press-label {
  position: absolute;
  top: 120px;
  left: 40px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.press-container {
  text-align: center;
}

.press-item {
  margin-bottom: 80px;
}

.press-item h2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.press-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.8;
}

  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  

  header{
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}

section{
  padding: 100px 200px;
}

.home{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #000000;
  overflow: hidden; /* Ensure no overflow from the absolutely positioned GIF */
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.63);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}


.home .content{
  z-index: 888;
  color: #fff;
  width: 70%;
  margin-top: 50px;
  display: none;
}

.home .content.active {
  display: block;
  /* Corrected animation application */
  animation: mySlide 4s; /* Shorthand for 'name duration' */
  font-size: small;
}




.media-icons a {
  margin: 0 10px;
  color: #fff;
  transition: transform 0.3s ease;
}

.media-icons a:hover {
  transform: scale(1.3);
}

.fa-bars {
  position: fixed; /* Or absolute, depending on your layout needs */
  top: 90%; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  font-size: 30px; /* Adjust as needed */
  color: #fff; /* Adjust color as needed */
  z-index: 7000; /* Ensures it's above other content */
  cursor: pointer;
}



@media (max-width: 1040px){
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}

@media (max-width: 560px){
  .home .content h1{
    font-size: 3em;
    line-height: 60px;
  }
}









