/* Reset CSS */
@import url("https://fonts.googleapis.com/css?family=Raleway:400");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(27,27,62,1) 50%, rgba(0,0,0,1) 68%, rgba(0,0,0,1) 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.navbar {
  
  
  /* Disabled for now */
  /*
    box-shadow: 2px 14px 97px 12px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 14px 97px 12px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 14px 97px 12px rgba(0,0,0,0.75);
  
  */
    background: rgba(0, 0, 0, 1);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
  margin: inherit;
    display: flex;
    align-items: center;
}

.logo-text {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}






.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 300px 20px; /* Adjusted padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-background {
    filter: brightness(50%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust the blur amount as needed */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Additional styling for hero title and text */
.hero-title {
    text-shadow: 0px 0px 16px rgb(100 130 147);
    font-size: 3rem;
    color: azure;
    margin-bottom: 20px;
}

.hero-text {
    text-shadow: 0px 0px 5px rgb(116 141 255);
    font-size: 1.2rem;
    margin-bottom: 30px; 
}

/* Disabled for now */
/* 
.nav-links {
    list-style: none;
    display: flex;
    align-items: center; /* Align the nav links vertically on smaller screens */
}
/*

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
  opacity: 1;
transition: opacity 1s linear 0s;
    color: #fff;
    text-decoration: none;
}  

.nav-links li a:hover {
  opacity: 0.6;
    color: #c3d5db;
    text-decoration: none;
} */


.btn {
    display: inline-block;
    background-color: #63636380;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #53535380;
}

.btn-primary {
  box-shadow: -1px 1px 57px -1px rgba(0,0,0,0.75);
-webkit-box-shadow: -1px 1px 57px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -1px 1px 57px -1px rgba(0,0,0,0.75);}

footer {
    margin: auto;
  
  /* Diabled for now */
  /*
    background: rgba(0, 0, 0, 0.5);
  */
  
    color: #fff;
    text-align: center;
    padding: 18px 0;
    flex-grow: 1;
}

/* Disabled for now */
/*
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
}
*/