html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background: url('images/bg.webp') no-repeat center center/cover;
  height: 60vh;
  background-attachment: fixed;
  position: relative;
  padding: 0 20px;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
}

.btn-grad {
  background-image: linear-gradient(to right, #fc00ff 0%, #00dbde 51%, #fc00ff 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.video-section video {
  border: 4px solid white;
  border-radius: 15px;
}

.gallery-section img {
  border: 3px solid #ccc;
  transition: transform 0.3s ease;
}
.gallery-section img:hover {
  transform: scale(1.05);
}

.image-process-section {
  background-color: #0d1117;
  padding: 60px 0;
}

.image-process-section h2 {
  font-weight: bold;
  font-size: 2rem;
}

.step-img {
  width: 100%;
  max-width: 100px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.step-img:hover {
  transform: scale(1.05);
}

.image-process-section p {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ====== Animations ====== */
.animate {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.animate.show {
  opacity: 1;
}
.fade-in.show { transform: translateY(0); }
.fade-in { transform: translateY(20px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-left.show { transform: translateX(0); }
.slide-in-right { transform: translateX(50px); }
.slide-in-right.show { transform: translateX(0); }
.slide-in-top { transform: translateY(-50px); }
.slide-in-top.show { transform: translateY(0); }
.slide-in-bottom { transform: translateY(50px); }
.slide-in-bottom.show { transform: translateY(0); }
.zoom-in { transform: scale(0.8); }
.zoom-in.show { transform: scale(1); }

.highlight-post-section {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  border-top: 5px solid #ffc107;
  border-bottom: 5px solid #ffc107;
}

.highlight-post-section a {
  color: #ffc107;
  transition: 0.3s;
}

.highlight-post-section a:hover {
  color: #fff;
  text-decoration: none;
}

.highlight-post-section ul {
  padding-left: 20px;
  list-style-type: '✔️ ';
}
