body {
  font-family: 'Open Sans', sans-serif;
  color: #2C3E50;
  background-color: #ECF0F1;
  margin: 0;
  padding: 0;
}

header {
  background-color: #2C3E50;
  padding: 20px;
  text-align: center;
}

header nav a {
  color: #ECF0F1;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.coming-soon-nav {
  position: relative;
  color: #2C3E50;
  text-decoration: none;
  font-weight: bold;
  margin-left: 10px;
}

.coming-soon-indicator {
  background-color: #FF6347;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
  animation: pulse 1.5s infinite;
}

.portfolio-item {
  position: relative;
  margin-bottom: 20px;
}

.coming-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #FF6347;
  color: white;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
  opacity: 0.9;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #2C3E50, #4A90E2);
  color: #ECF0F1;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

#hero p {
  font-size: 1.5rem;
}

.coming-soon-section {
  text-align: center;
  margin-top: 50px;
}

.coming-soon-section p {
  font-size: 1.5rem;
  color: #FF6347;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}
