/* Reset dan dasar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #eaeff1;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1em;
  opacity: 0.9;
}

/* Main */
main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Kartu Proyek */
.project-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gambar Proyek */
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Konten Proyek */
.project-content {
  padding: 20px;
}

.project-title {
  font-size: 1.25em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #2c3e50;
}

.project-description {
  font-size: 0.95em;
  color: #666;
}
        /* Footer */
        .footer {
            background-color: #2c3e50; /* Dark gray footer */
            color: #ecf0f1;
            text-align: center;
            padding: 20px 0;
        }

        .footer a {
            color: #f39c12; /* Gold accent for links */
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

/* Responsif Tambahan */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }

  .project-title {
    font-size: 1.1em;
  }

  .project-description {
    font-size: 0.9em;
  }

  main {
    padding: 20px 10px;
  }
}
