/* 
   Khiel Duazo Portfolio Website
   Combined Stylesheet
   Author: Cascade AI
   Date: 2025-09-17
*/

/* Import all style sections */
@import 'styles-base.css';
@import 'styles-portfolio.css';
@import 'styles-entertainment.css';

/* Any additional global overrides or custom styles */
.highlight-gradient {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-gradient {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* Animation classes */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Selection color */
::selection {
  background: var(--primary-light);
  color: var(--white);
}
