@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Quicksand:wght@400;600;700&display=swap');

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f0f8ff, #ffe0f0); /* biru muda ke pink muda */
  color: #333;
  scroll-behavior: smooth;
}

.navbar {
  background: linear-gradient(90deg, #023e8a, #ffb6c1); /* biru ke pink lembut */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jumbotron {
  text-align: center;
  background: linear-gradient(135deg, #023e8a, #f48fb1); /* biru tua ke pink pastel */
  color: white;
  padding: 80px 20px;
  position: relative;
}

.jumbotron img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
}

.jumbotron h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
}

.section-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  background: linear-gradient(90deg, #0077b6, #ff69b4); /* biru ke pink terang */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deskripsi {
  max-width: 800px;         /* Menentukan lebar maksimum untuk teks */
  margin: 0 auto;           /* Meratakan konten di tengah */
}

.deskripsi p {
  text-align: justify;      /* Meratakan teks ke kiri dan kanan */
  font-size: 1.2rem;        /* Menentukan ukuran font untuk deskripsi */
  line-height: 1.6;         /* Memberikan jarak antar baris */
}
.card-text {
  text-align: justify;
}

.card {
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-5px);
}

footer {
  background: linear-gradient(135deg, #023e8a, #f48fb1); /* biru tua ke pink pastel */
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

a {
  color: #8c73bb;
}

a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .jumbotron h2 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .card-body {
    font-size: 0.95rem;
  }
}

#portofolio {
  background: linear-gradient(135deg, #a0c4ff, #ffc8dd); /* biru pastel ke pink pastel */
  padding: 60px 0;
}

#kontak {
  background: linear-gradient(135deg, #bde0fe, #fcbad3); /* biru muda ke pink manis */
  padding: 60px 0;
  color: #023e8a;
}

#kontak a {
  color: #0077b6;
}

#kontak a:hover {
  color: #023e8a;
  text-decoration: underline;
}