/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* NAV */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  color: white;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  padding: 8px 12px;
  border: 2px solid white;
  border-radius: 6px;
}

.logo img {
  max-height: 140px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #111, #333);
  color: white;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	margin-top: 60px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
}

/* PROJECT GRID */
.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 30%;
  text-align: center;
}

.card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.card figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
}

/* RESPONSIV */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

	@media (max-width: 768px) {

  .header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content {
    max-width: 90%;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .logo img {
    max-height: 90px;
  }
}
}