/* 
 * Iskaira - Main CSS
 * Imports all CSS files for the Ice Queen theme
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Pirata+One&family=Almendra:wght@400;700&family=MedievalSharp&display=swap');

/* Core Theme */
@import 'theme.css';

/* Layout */
@import 'layout.css';

/* Components */
@import 'components/buttons.css';
@import 'components/cards.css';
@import 'components/forms.css';
@import 'components/navigation.css';
@import 'components/icons.css';

/* Custom Cursor */
/* This creates an icy cursor effect */
body {
  cursor: url('./assets/particles/frost_effects/frost_effect_001.png') 15 15, auto;
}

/* Prevent transition animations when page loads */
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

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

::-webkit-scrollbar-track {
  background: var(--color-abyssal-black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    var(--color-glacial-blue),
    var(--color-bioluminescent-cyan)
  );
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-bioluminescent-cyan);
}

/* Text Selection */
::selection {
  background: rgba(0, 184, 204, 0.3);
  color: var(--color-spectral-white);
}

/* Font Rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Witchy Logo Font */
.nav-logo-text, .witchy-brand {
  font-family: 'Pirata One', 'Almendra', cursive !important;
  font-weight: normal !important;
  letter-spacing: 0.05em !important;
  text-shadow: 
    0 0 15px rgba(0, 184, 204, 0.6),
    0 0 30px rgba(0, 184, 204, 0.3) !important;
  position: relative;
}

.nav-logo-text::after, .witchy-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 184, 204, 0) 0%,
    rgba(0, 184, 204, 0.8) 50%,
    rgba(0, 184, 204, 0) 100%
  );
  opacity: 0.7;
}