
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background: 
    linear-gradient(rgb(0, 0, 0), rgba(0,0,0,0.6)),
    url("gw.jpeg") no-repeat center center fixed;
    background-size: cover;
    background-position: center 75%;
    background-color: #000;
  color: #f1f1f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #aaa;
}


header {
  background: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 1.5rem;
  letter-spacing: 2px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}


.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 90vh;
  padding: 2rem;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #aaa;
}


section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 0.5rem;
}


.about p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card p {
  color: #bbb;
  font-size: 0.9rem;
}


footer {
  text-align: center;
  padding: 1.5rem;
  background: #000;
  color: #777;
  margin-top: 3rem;
}


@media(max-width: 600px) {
  .hero h2 {
    font-size: 2rem;
  }
}




