/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

header .logo h1 {
  margin: 0;
  font-size: 2.5rem;
}

header .logo p {
  margin: 0.5rem 0 0;
  font-style: italic;
  font-size: 1rem;
}

nav .menu {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav .menu li {
  display: inline;
}

nav .menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav .menu a:hover {
  color: #ffeb3b;
}

/* Section Styles */
.section {
  padding: 2rem;
  text-align: center;
}

.section:nth-child(even) {
  background: #f9f9f9;
}

.project-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.project-card {
  background: #ff9a9e;
  color: white;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 1rem auto;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background: #ff9a9e;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #ff6f91;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
