body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: url('background.gif') no-repeat center center fixed;
  background-size: cover;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 20px;
  text-align: center;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
  margin-top: 40px;
}

.profile-img {
  width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

h1, h2 {
  margin: 5px 0;
}

.about {
  font-weight: bold;
  margin-top: 10px;
}

.quote {
  font-style: italic;
  margin-bottom: 25px;
}

.btn {
  display: block;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 15px;
  margin: 10px 0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.arrow {
  font-size: 24px;
  margin: 20px 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.store-section {
  border-top: 1px solid white;
  margin-top: 20px;
  padding-top: 10px;
}

.store-title {
  font-size: 18px;
  font-weight: bold;
}

.section {
  margin-top: 20px;
}

header {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  display: inline-block;
  font-size: 24px;
}

header nav {
  float: right;
}

header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background-image: url('https://source.unsplash.com/1600x400/?fashion');
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: #fff;
  text-align: center;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.produk-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  background-color: #fafafa;
  padding-bottom: 20px;
}

.produk-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.produk-card h3 {
  margin: 15px 0 5px;
}

.harga {
  color: #e91e63;
  font-weight: bold;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: white;
}

.product-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.harga {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 15px;
}

.price {
  margin: 15px 0;
}

.price span {
  color: #0f0;
  font-weight: bold;
}

.contact {
  font-size: 14px;
  color: #aaa;
  margin: 4px 0;
}

.buttons button {
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:hover {
  background-color: #555;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
}

/* Profile */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.profile h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.role {
  font-size: 1rem;
  color: #94a3b8;
}

/* Card Layout */
.card {
  background-color: #1e293b;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.card h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card p {
  line-height: 1.7;
  font-size: 1rem;
}

.skill-list, .exp-list {
  list-style: none;
  padding-left: 0;
}

.skill-list li,
.exp-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.skill-list li::before,
.exp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.exp-list span {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* === Animations === */

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 1s;
}
.delay-3 {
  animation-delay: 1.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background-color: #0d1117;
  color: white;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
}

.contact-section h2 {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.contact-section p {
  margin: 5px 0;
  color: #b3b3b3;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.icon img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.icon img:hover {
  transform: scale(1.2);
}

footer {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 10px;
  font-size: 14px;
  color: #888;
}

.about-section {
  background-color: #0d1117;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  animation: fadeInUp 1s ease-in-out;
}

.about-section h2 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 30px;
  border-left: 4px solid #9333ea;
  padding-left: 10px;
}

.about-section p, .about-section li {
  color: #d1d5db;
  margin: 10px 0;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-section li strong {
  color: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  background-color: #0d1117;
  color: white;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.8;
  animation: fadeInUp 1s ease-in-out;
}

.about-section h2 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 30px;
  border-left: 4px solid #9333ea;
  padding-left: 10px;
}

.about-section p, .about-section li {
  color: #d1d5db;
  margin: 10px 0;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.about-section li strong {
  color: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.container {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

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

.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: fadeIn 1s ease forwards;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.info {
  padding: 16px;
}

.info h2 {
  margin-bottom: 10px;
}

.info button {
  background-color: #f00;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info button:hover {
  background-color: #fff;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  color: black;
  padding: 24px;
  border-radius: 12px;
  width: 320px;
  position: relative;
  animation: zoomIn 0.4s ease-out;
}

.modal-content .close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: red;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}