/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* Navbar Styles */
.navbar {
    background-color: #1a1a1a; /* Dark background */
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:2rem;
  }
  
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    
  }
  
  .nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-links li a:hover {
    color: #ff6347;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px rgba(255, 99, 71, 0.5);
  }
 
  /* Mobile Responsiveness */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  /* Style for the logo */
.logo img {
    padding-top: 10%;
    display:block;
    margin: 0 auto;
    max-width: 100%;            /* Ensure the image is responsive */
    height: auto;               /* Maintain the aspect ratio */      
}

.hero {
    position: relative;
    height: 70vh;
    background-color: #000;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

li{
    list-style-type: none;
    padding: 5px;
}


.cta-button {
    background-color: #ff6347;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


.cta-button:hover {
    color: #ff6347;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 10px rgba(255, 99, 71, 0.5);
  }

.features {
    background-color: #222;
    padding: 50px 20px;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.feature {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
}

.feature h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1rem;
}

footer {
    background-color: #333; /* Use your camouflage branding colors */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
}

.contact-info a {
    color: #f0a500; /* Accent color for links */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.social-links img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #1a1a1a;
        width: 200px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 5px 5px;
      }
     
     .nav-links li{
        padding:10px;
     } 
    
      .nav-links.open {
        display: flex;
        padding: 20px;
        
      }
    
      .hamburger {
        display: flex;
      }

      .logo img {
        padding: 25%;
        display:block;
        margin: 0 auto;
        max-width: 100%;            /* Ensure the image is responsive */
        height: auto;               /* Maintain the aspect ratio */      
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 8px 16px;
        margin-bottom: 30%;
    }

    .feature-list {
        grid-template-columns: 1fr;
        
    }

    .feature h3 {
        font-size: 1.4rem;
    }

    .feature p {
        font-size: 1rem;
    }

}