/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  scroll-behavior: smooth;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1E2A38;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  z-index: 1000;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav .nav-links li a:hover {
  color: #00ADB5;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 100px 50px;
  min-height: 100vh;
}

#home {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00ADB5;
  color: white;
  text-align: center;
}

#home h1 {
  font-size: 48px;
}

#about {
  background-color: #f4f4f4;
}

#portfolio {
  background-color: #e8e8e8;
}

.projects {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-card {
  background-color: white;
  padding: 20px;
  flex: 1 1 250px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#contact {
  background-color: #f4f4f4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px;
  background-color: #00ADB5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #008C9E;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1E2A38;
  color: white;
}