
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.hero {
  height: 100vh;
  background: url('homepage.png') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #f4f0e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.4);
}

.main-nav a {
  color: #f4f0e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-content {
  text-align: center;
  margin-top: auto;
  margin-bottom: 10vh;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.hero-content h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  border: 2px solid #f4f0e8;
  color: #f4f0e8;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

main section {
  padding: 4rem 2rem;
  background-color: #f4f0e8;
  color: #111;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 0.5rem;
}

form {
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background-color: #111;
  color: #f4f0e8;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: #aaa;
}



.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.project-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.project-gallery img:hover {
  transform: scale(1.03);
}
