/* ═══════════════════════════════════════════
   MK Studio USA — style.css
   Global styles shared across all pages
   ═══════════════════════════════════════════ */

:root {
  --primary:      #2563eb;
  --primary-dark: #1d4ed8;
  --secondary:    #1e293b;
  --accent:       #f59e0b;
  --light:        #f8fafc;
  --dark:         #0f172a;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; }

/* ── SERVICE ICON (used in style.css-dependent pages) ── */
.service-icon {
  background-color: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

/* ── UTILITY ── */
.transition-all {
  transition: all 0.3s ease;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shadow-soft {
  box-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
}

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.floating { animation: float 6s ease-in-out infinite; }

@keyframes pulse-cta {
  0%   { box-shadow: 0 0 0 0   rgba(245,158,11,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245,158,11,0);   }
  100% { box-shadow: 0 0 0 0   rgba(245,158,11,0);    }
}
.pulse { animation: pulse-cta 2s infinite; }

/* ── PORTFOLIO (filter + items) ── */
.portfolio-item {
  transition: all 0.3s ease;
}
.portfolio-item img {
  transition: transform 0.5s ease;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  transition: all 0.3s ease;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ── TEAM PHOTO ── */
.team-photo {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* ── LOAD MORE BUTTON ── */
.load-more {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.load-more:hover { transform: translateY(-2px); }
.load-more::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.load-more:hover::after { left: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-heading    { font-size: 2.25rem; }
  .hero-subheading { font-size: 1.15rem; }
  .filter-buttons  { flex-wrap: wrap; justify-content: center; }
  .filter-btn      { margin-bottom: 0.5rem; }
}