* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.6;
}
header, footer {
  background-color: #111;
  color: #00ffc8;
  text-align: center;
  padding: 20px;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.team {
  margin-top: 40px;
  animation: fadein 1.5s ease;
}

/* Gallery Grid Styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  justify-content: center;
}

.profile {
  background: #1e1e1e;
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 12px;
  text-align: center;
  padding: 20px 15px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 255, 200, 0.2), 0 0 30px rgba(0, 255, 200, 0.1);
  border-color: #00ffc8;
}
.profile img {
  width: calc(100% + 30px);
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: -20px -15px 15px -15px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.profile:hover img {
    transform: scale(1.05);
}
.profile h3 {
    color: #00ffc8;
    font-size: 1.35em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}
.social-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 255, 200, 0.1);
}
.social-links a {
  color: #00ffc8;
  text-decoration: none;
  font-weight: normal;
  padding: 8px 15px;
  border: 1px solid #00ffc8;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 0.9em;
}
.social-links a:hover {
  background-color: #00ffc8;
  color: #1a1a1a;
  border-color: #00ffc8;
}

/* --- STYLING BARU UNTUK SECTION ABOUT ME --- */
#about {
  padding-top: 20px;
  padding-bottom: 40px;
}

.about-me-grid {
  display: grid;
  grid-template-columns: 1fr; /* Default to single column for mobile */
  gap: 40px;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 12px;
  padding: 40px;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.about-me-visual {
  text-align: center;
}

.about-me-profile-pic {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #00ffc8;
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-me-profile-pic:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 40px rgba(0, 255, 200, 0.6);
}

.about-me-text h3 {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-me-text p {
  text-align: left;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #d0d0d0;
  max-width: 100%; /* Ensure text doesn't overflow container */
}

.skills-container h4 {
  font-size: 1.3em;
  color: #00ffc8;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 255, 200, 0.2);
  padding-bottom: 10px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-item {
  background: #252525;
  color: #e0e0e0;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 500;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background-color: #00ffc8;
  color: #111;
  border-color: #00ffc8;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 255, 200, 0.2);
}

.about-me-cta {
  margin-top: 30px;
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
  .about-me-grid {
    /* Two columns on tablets and desktops */
    grid-template-columns: 1fr 2fr;
  }
}
/* --- AKHIR STYLING BARU --- */


/* Other sections and general styles */
.cta, .faq-item {
  background: #1e1e1e;
  border-left: 3px solid #00ffc8;
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 10px;
}
.cta a {
  background: #00ffc8;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.cta a:hover {
    background-color: #00e0b8;
}
@keyframes fadein {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.site-header {
  background-color: #111;
  padding: 20px;
  text-align: center;
  color: #00ffc8;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.nav-menu {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.nav-menu li a {
  color: #00ffc8;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}
.nav-menu li a:hover {
  border-bottom: 2px solid #00ffc8;
}
.hero-banner {
  background: linear-gradient(135deg, #00ffc8 0%, #0f0f0f 100%);
  color: #000;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.hero-banner h2 {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #000;
}
.hero-banner p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}
.cta-btn {
  background: #000;
  color: #00ffc8;
  padding: 15px 30px;
  border: 2px solid #00ffc8;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-btn:hover {
  background-color: #00ffc8;
  color: #000;
}

/* Section titles */
section h2 {
    font-size: 2.2em;
    color: #00ffc8;
    text-align: center;
    margin-bottom: 30px;
}
/* General paragraph styles */
section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Individual Project Detail Pages */
.project-detail-content {
    background: #1a1a1a;
    border: 1px solid #00ffc8;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.project-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 2px solid #00e0b8;
}
.project-detail-content h2 {
    font-size: 2.5em;
    color: #00ffc8;
    margin-bottom: 15px;
    text-align: left;
}
.project-detail-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: left;
}
.project-detail-content .social-links a {
    display: inline-block;
    background-color: #00ffc8;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    margin-right: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.project-detail-content .social-links a:hover {
    background-color: #00e0b8;
}
