/* ========== NOSIDE Corporate Site - Minimal Monochrome CSS ========== */

/* Base */
html { scroll-behavior: smooth; }

/* Hero Gradient - Black */
.hero-gradient {
  background: #111111;
}
.hero-pattern {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

/* Card Hover */
.card-hover {
  transition: all 0.3s ease;
  border: 1px solid #E5E5E5;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #111111;
}

/* Timeline */
.timeline-dot {
  width: 12px;
  height: 12px;
  background: #111111;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.15);
}

/* AOS custom easing */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Form focus */
input:focus, select:focus, textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
  outline: none;
}

/* Section divider */
.section-divider {
  border-top: 1px solid #E5E5E5;
}
