/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;

  /* Gradasi dua warna dengan arah diagonal */
  background: linear-gradient(135deg, #ff7b54 0%, #1e1f3a 70%);
  
  /* Tambahan efek agar terlihat lebih "deep" */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 123, 84, 0.25), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(30, 31, 58, 0.6), transparent 70%);
  z-index: -1;
}

main#main {
  background: none !important;
  padding: 0 !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  min-height: 90vh;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #d0d0d0;
  margin-bottom: 30px;
}

.btn-talk {
  display: inline-block;
  background: #ff7b54;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-talk:hover {
  background: #ff5722;
}

.hero-image img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(255, 100, 100, 0.4);
}

/* ===== ABOUT SECTION (FINAL) ===== */
.about-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: none; /* Hilangkan latar belakang putih */
  color: #fff;
  text-align: center;
  padding: 100px 10%;
}

/* Container utama */
.about-container {
  display: flex;
  flex-direction: column; /* Susun vertikal */
  align-items: center;
  gap: 40px;
  max-width: 900px;
  width: 90%;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Gambar profil */
.about-container img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

/* Teks dan judul */
.about-text {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Hapus gaya putih dari richtext atau body bawaan Wagtail */
.about-container .richtext,
.about-container .body {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: #ccc !important;
}

/* Tombol Download CV */
.btn-download {
  display: inline-block;
  background: #ff7b54;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-download:hover {
  background: #ff5722;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  text-align: center;
  padding: 100px 10%;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, #ff7b54, #ff9472);
  border-radius: 20px;
  padding: 30px 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(255, 87, 34, 0.3);
}

.service-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: 14px;
  color: #fff;
}

main#main {
  background: none !important;
  padding: 0 !important;
}



