/* Global */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: radial-gradient(circle at top left, #ffeb80 0%, #f9d34d 60%);
  height: 100vh;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 40PX;
  background: white;
  border: 2px solid black;
  border-radius: 40px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 4px 4px 0 black;
  z-index: 100;
}


/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.nav-logo i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Menu Tengah */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #f3c93f;
}

/* Search icon kanan */
.nav-search i {
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
}

.nav-search i:hover {
  color: #f3c93f;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  
 /* cover HERO IMAGE SECTION */
.hero {
  height: 100vh;
  background-image: url("img/Cover-01.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* biar efeknya elegan saat scroll */
}

.about-me-intro {
  background-color: #231f20;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10px; 
}

.section-divider {
   display: flex;
   align-items: center;
   gap: 50px; /* Jarak antara garis dan teks */
}

.divider-line {
  border: none; /* Hilangkan border default */
  border-top: 10px solid white; /* Garis putih dengan ketebalan 3px */
  width: 400px; /* Panjang garis */
}


.anton-regular {
  font-family: "Anton", sans-serif;
  font-style: normal;
  font-size: 70px ; /* Ukuran teks */
  font-weight: 800; /* Tebalnya teks */
  color: #000000; /* Warna kuning untuk teks */
  letter-spacing: 6px; /* Jarak antar huruf */
  /* Untuk membuat efek outline seperti di gambar, kita bisa gunakan text-stroke atau text-shadow */
  -webkit-text-stroke: 1px  #f3c93f; /* Outline hitam untuk teks */
  text-shadow: 0px 0px 0   #f3c93f; /* Shadow untuk efek timbul */
}

/* === CV / Resume Section === */
.cv-section {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fef5d7 100%);
  color: #222;
  padding-bottom: 80px;
}

/* ===== HEADER isi aboutme ===== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  

}

.profile-photo img {
  width: 400px; /* boleh disesuaikan */
  height: auto; /* biar proporsional */
  border: none; /* hilangin garis hitam tebal */
  object-fit: contain; /* gambar ditampilkan utuh */
  margin-right: 70px;
  margin-left: -100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo img:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 #f3c93f;
}

.hero-text h1 {
  font-size: 7rem;           /* KEZIA jadi lebih gede */
  margin: 0;
  font-weight: 800;
  font-family: 'Anton', sans-serif;  /* Pakai font Anton */
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #000000;
  color: #f3c93f;
  text-shadow: 1px 3px 0 #000;
}

.hero-text h1 span {
  display: block;
  font-size: 3.5rem;         /* CHRISTINA KARSONO juga gede */
  color: #fef5d7;
  text-shadow: 1px 3px 0 #000;
  font-family: 'Anton', sans-serif;  /* Sama, pakai Anton */
  letter-spacing: 2px;
  margin-top: -30px;         /* Biar lebih rapat ke atas */
}

.hero-text .desc {
  max-width: 600px;
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== INFO SECTION ===== */
.info-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px 10%;
  margin-top: -60px ;
}

.card {
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  width: 300px;
  padding: 25px;
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 #f3c93f;
}

.card h2 {
  background: #000;
  color: #ffb84c;
  display: inline-block;
  padding: 6px 40px;
  border-radius: 20px;
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-style: italic
}

.card h3 {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
}

.card p, .card li {
  font-size: 0.9rem;
  line-height: 1.5;
}

.card ul {
  list-style-type: disc;
  padding-left: 20px;
}

.software-icons img {
  width: 65px;
  margin-right: 8px;
  margin-top: 5px;
}

/* ===== TABLE OF CONTENT SECTION ===== */
.info-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px 10%;
  margin-bottom: 120px; /* <— tambahkan ini */
  
}

.table-of-content {
  background-color: #231f20;
  padding: 50px 0;
  text-align: center;
}

.toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 70px;
  justify-content: center;
  letter-spacing: ;
}

.toc-title .table,
.toc-title .content {
  font-family: 'Anton', sans-serif;
  color: white;
  font-size: larger;
  
}

.toc-title .of {
  font-family: 'Poppins', sans-serif;
  color: #F7941D;
  font-weight: 600;
  font-size: 90px;
  margin: 0 10px;
  font-style: italic;
  letter-spacing: -5px;
  margin-right: 20px;
}

.table-of-content .toc-content ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.table-of-content .toc-content li {
  margin: 15px 0;
}

.table-of-content .toc-content a {
  color: #f3c93f;
  font-size: 1.3rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.table-of-content .toc-content a:hover {
  color: white;
  text-shadow: 2px 2px 0 #f3c93f;
}

/* ===== Selected Project ===== */
.selected-project .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 120px; /* jarak atas antar section */
}

/* CARD */
.selected-project .card {
  flex: 1 1 30%;
  max-width: 420px;      /* sedikit lebih besar */
  min-width: 300px;
  border: 2px solid #000;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 550px;         /* ⬅️ bikin card lebih tinggi */
  display: flex;
  flex-direction: column;
}

/* Gambar di atas */
.selected-project .card img {
  width: 100%;
  height: 400px;         /* ⬅️ gambar lebih besar */
  object-fit: cover;
  border-bottom: 3px solid #000;
  border-radius: 12px;
}

/* Isi teks di bawah */
.selected-project .card-body {
  flex: 1; /* isi teks ngisi sisa ruang card */
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Judul dan teks */
.selected-project .card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.selected-project .card-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* Hover effect */
.selected-project .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 8px 8px 0 #ffb84c;
}

/* ===== HEADER project ===== */
.PROJECT-intro {
  background-color: #231f20;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 200px; 
}

html {
  scroll-behavior: smooth;
}

/* ===== Project Detail (Hampers) ===== */
.project-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 50px;
  margin-top: 200px;
}

/* Bagian teks */
.project-text {
  flex: 1;
  max-width: 450px;
}

.project-text h1 {
  font-family: 'Anton', sans-serif;
  font-size: 6rem;
  color: #000;
  margin-bottom: 1px;
  margin-left: -50px;
  letter-spacing: 2px;
}

.project-text h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  font-style: italic;
  color: #F7941D;
  margin-bottom: 1px;
  margin-top: -20px;
  margin-left: -50px;
}

.project-tags {
  display: flex;
  gap: 20px;               /* jarak antar tag */
  margin-bottom: 20px;
  justify-content: flex-start; /* biar rata kiri */
  margin-left: -50px;          /* reset dorongan ke kanan */
  padding-left: 0;         /* pastiin gak ada padding */
}

.project-tags span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: #F7941D;
}


.project-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: #333;
  line-height: 1.2;
  font-weight: 500;
  margin-left: -50px;
}

/* Bagian gambar */
.project-gallery {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 5px 0 #000;
  transition: transform 0.3s ease;
   margin-left: 100px;
}

.project-gallery img:hover {
  transform: scale(1.05);
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link .card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-link .card:hover {
  transform: translateY(-10px) scale(1.03);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* sesuaikan angka ini */
}

/* personal project */

.personal-artwork-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 50%;              /* KECILIN DI SINI SUPAYA RAPI */
  margin: 80px auto;
}

.personal-artwork-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #000;
  object-fit: cover;
}

/* Ukuran acak */
.personal-artwork-grid img.tall {
  grid-row: span 2;
}

.personal-artwork-grid img.wide {
  grid-column: span 2;
}

/* Biar nggak rusak di HP */
@media (max-width: 768px) {
  .personal-artwork-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
}

@media (max-width: 500px) {
  .personal-artwork-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #ffffff;
  padding: 60px 60px 20px;
  margin-top: 100px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  gap: 10px;
}

.footer-logo i {
  font-size: 1.4rem;
}

.footer-column h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #F7941D;
}

.footer-column i {
  font-size: 1rem;
  color: #000;
}


.footer-column input:focus {
  border-bottom: 2px solid #F7941D;
}

.footer hr {
  margin-top: 40px;
  border: none;
  border-top: 1px solid #e5e5e5;
}

.footer-copy {
  font-size: 0.85rem;
  color: #333;
  margin-top: 15px;
}

