/* Universal styling */
*{
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Body styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(18, 21, 25);
}

/* HEADER STYLES */
header {
    background-color: rgba(18, 21, 25, 0.75);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

header nav div {
    color: #fff;
    text-decoration: none;
}

header nav div a {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

header nav div div {
    display: inline-block;
    margin-right: 20px;
}

header nav div a:hover {
    transform: scale(1.1);  /* Scales the anchor tags to 110% of their size */
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    header nav div {
        display: none;  /* Hide the navigation links on smaller screens */
    }
    header {
        background-color: rgba(18, 21, 25, 0);
    }
}

/* BANNER STYLES */
.banner {
    position: relative;
    /* background-image: url('assets/background.jpg'); Replace with your image source */
    background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.30)), url(assets/background.jpg);
    height: 900px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner svg {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.banner-text {
    text-align: center;
    color: #fff;
    transform: translateY(-40%);
}

.banner-text h1 {
    font-size: 4em;
    margin-bottom: 0.5em;
}

.banner-text p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.download-button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: rgb(217, 0, 78);
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.download-button:hover {
    background-color: rgb(177, 0, 65);
}

/* MAIN CONTENT STYLES */
hr {
    border: none;
    height: 1px;
    background-color: rgb(83, 83, 83);
}

a {
    color: lightgrey;
}

ul {
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 20px;
}

.list-container {
    width: 45%;
    float: left;
    margin-right: 5%;
}

@media (max-width: 768px) {
    .list-container {
      width: 100%;
      float: none;
      margin-right: 0;
      margin-bottom: 20px;
    }
}

.clear {
    clear: both;
}

table {
    border: solid 1px white;
    margin: 0 auto;
}

th {
    text-align: left;
    padding: 10px;
}

td {
    padding: 5px;
}

/* img {
    background-color: rgb(24, 27, 30);
} */

#bold {
    font-weight: bold;
    color: rgb(217, 0, 78);
}

#features {
    margin: auto;
    width: 100%;
    max-width: 1800px;
    background-color: rgb(18, 21, 25);
    padding: 50px 0;
    color:white;
}

#features h1 {
    font-size: 30px;
    text-align: center;
}

#features p {
    font-size: 16px;
    color:lightgray;
}

.featureDesc {
    text-align: center;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 5vw;
}

.flex-container > div {
    flex: 1 1 200px;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 20px; 
    background-color: rgb(24, 27, 30);
    color:lightgrey;
    transition: background-color 0.3s ease; /* smooth transition of color */
}

.flex-container > div:hover {
    background-color: rgb(217, 0, 78);
}

/* Override the hover effect for div with the 'no-hover' class */
.flex-container > div.no-hover:hover {
    /*background-color: inherit; /* remove the color change on hover */
    background-color: rgb(24, 27, 30);
}

#logo {
    width: auto;
    max-height: 10vh;
    overflow: hidden;
    text-align: center;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

#featureImg {
    width: auto;
    max-height: 25vh;
    overflow: hidden;
    text-align: center;
}

/* FOOTER STYLES */
footer {
    background-color: rgb(217, 0, 78);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateX(-3%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInFromLeft {
    0% {
      transform: translateX(-3%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
  
.animate {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
