/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0a1a3f 0%, #0a1a3f 100%);
  color: white;
  min-height: 100vh;
}

/* Navigation */
#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 2vw;
  color: white;
  background-image: linear-gradient(rgba(255, 255, 255, 0.283));
  width: 100vw;
}



/* Hide scrollbar for all browsers */
body {
    overflow: hidden; /* This will completely remove scrolling */
}


#navbar-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 60vw;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover {
  text-decoration: underline;
}


/* Features Section */
.features {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Search Container */
.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  max-width: 400px;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.search-button {
  margin-left: -40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.8rem;
}

/* Feature Tags */
.feature-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}


.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the box properly */
}


.tag {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background-color: #1a4db3;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.tag:hover {
  background-color: #2c5fc9;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-tags {
    flex-direction: column;
    align-items: center;
  }

  .tag {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
