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

/* Navbar Styling */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #222;
  z-index: 1000;
}

#navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

#navbar li {
  margin: 0 15px;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

#navbar a:hover {
  color: #4facfe;
}

/* Welcome Section */
#welcome-section {
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

#welcome-section h1 {
  font-size: 3rem;
}

/* Projects Section */
#project-section {
  padding: 80px 20px; /* 80px to avoid overlap with navbar */
  background-color: #f0f0f0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.project-tile {
  display: inline-block;
  margin: 20px;
  border: 2px solid #4facfe;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.project-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-tile img {
  width: 300px;
  height: 200px;
  display: block;
}

.project-tile p {
  padding: 10px;
  background-color: #fff;
  margin: 0;
}

/* Profile link */
#profile-link {
  color: #ffcc00;
}

/* Media Query Example */
@media (max-width: 600px) {
  #welcome-section h1 {
    font-size: 2rem;
  }

  .project-tile img {
    width: 90vw;
    height: auto;
  }
}
