/* Add your custom styles here */
/* nav bar */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

 body{
  font-family: "Poppins", system-ui;
  font-weight: 900;
  font-style: normal;    color:white;    overflow: hidden; /* Hide scrollbars */


}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#navbar {
   background-color: none;
    color: #fff;
    padding: 10px 0;
    
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.home-link {
    text-decoration: none;

    color: #000000;
    font-weight: bold;
}
.navbar-logo{
  display:flex;
  align-items:center;
  padding:7px;
  

}
.navbar-logo img {
    /* Add your logo styles here */
    /* Example: background-image: url('logo.png'); */
    width: 70px;
    height: 70px;
    margin-right: 5px;
}
.navbar-logo p{
  font-size:2rem;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap:10px;
}

.navbar-item {
    margin-right: 20px;
    font-size: 1.3rem; 
    font-weight:600;
}

.navbar-link {
    text-decoration: none;
    color: #F5DE7A;
    transition: color 0.3s;
}

.navbar-link:hover {
    color: #f0f0f0;
}

/* Hamburger icon styles */
.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

#navbar-toggle{
    display: none;
   }

   .navbar {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
  }  

  #page1 {
    min-height: 100vh;
    margin-top: 7px;
    /* background-color: aqua; */
    position: relative;
    width: 100%;
    padding: 0 1vw;
    color:white;
    padding-top: 20vh;
    text-align: center;
}

#page1 h1 {
    font-size: 10vw;
    text-transform: uppercase;
    font-family: futura;
    line-height: 7vw;
    letter-spacing: -5px;
}
.Home{
  display:flex;
  justify-content:center;
  align-item:center;
}
.Home button{
  background-color: #ffff;
  color:#8F250C;
  
  border-radius:400px;
  padding: 20px 20px;
  font-size:1.3rem;
  
}


  .form-container { 
    width: 400px; /* Increased width for desktop */ 
    margin: 50px auto; /* Centered horizontally and vertically */ 
    padding: 20px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
  } 
  .form-container h2 { 
    text-align: center; 
  } 
  .form-group { 
    margin-bottom: 15px; 
  } 
  .form-group label { 
    display: block; 
    margin-bottom: 5px; 
  } 
  .form-group input[type="text"], 
  .form-group input[type="email"], 
  .form-group input[type="password"] { 
    width: 100%; 
    padding: 8px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
  } 
  .form-group input[type="submit"] { 
    width: 100%; 
    padding: 10px; 
    border: none; 
    border-radius: 4px; 
    background-color: #4CAF50; 
    color: white; 
    cursor: pointer; 
  } 

/* Custom styles for subsection, parttwo, onepart, and h1 */

.subsection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; /* Add gap between items */
  margin-top: 30px; /* Add some space at the top */
}

.parttwo,
.onepart {
  flex-basis: calc(45% - 20px); /* Set the width to 50% with some margin */
  padding: 20px;
  color:black;
  background-color: #f5f5f5; /* Add a light background color */
  border-radius: 10px; /* Add rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  text-align: center; /* Center the content */
  font-size:1.7rem;
  text-align: left;
}

.parttwo img,
.onepart img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px; /* Add rounded corners to images */
}

.heading  {
  text-align: center;
  margin-bottom: 30px; /* Add some space at the bottom */
  font-size: 2.5rem; /* Increase font size */
  color: #333; /* Change font color */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 2px; /* Add letter spacing */
  font-weight: bold; /* Add font weight */
}


@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    .icon-bar {
        display: block;
    }
   #navbar-toggle{
    display: block;
   }
}
.show-menu {
    display: block;
}
#page1 h1 {
  font-size: 5vw; /* Adjusted font size for smaller screens */
  line-height: 1.2; /* Adjusted line height for smaller screens */
  letter-spacing: -1px; 
}
/* now for the sections  */

.section{
    min-height:100vh;
    display:none;
    overflow-y: scroll;


}


.Home{
    display:block;
    
}


#video-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the video behind all other elements */
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire area */
}