/*
Theme Name: HytLabs Design
Theme URI: https://hytlabs.com
Author: HytLabs
Author URI: https://hytlabs.com
Description: Thème moderne pour HytLabs avec design v0.app - Version Performance
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hytlabs-design
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
  color: #ffffff;
  min-height: 100vh;
  antialiased: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Components */
.glass-card {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(39, 39, 42, 0.5);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.gradient-text {
  background: linear-gradient(to right, #06b6d4, #22d3ee, #06b6d4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-glow {
  background: linear-gradient(to right, #06b6d4, #22d3ee);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover {
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.6), 0 0 60px rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
}

.grid-bg {
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Gradient blobs pour effets de fond */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: blob 7s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrollbar personnalisé */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #06b6d4, #22d3ee);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #22d3ee, #06b6d4);
}

/* Selection */
::selection {
  background: rgba(6, 182, 212, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(6, 182, 212, 0.3);
  color: #ffffff;
}

/* SOFT UPDATE */
body { background: linear-gradient(135deg, #12121a 0%, #0f0f16 50%, #12121a 100%) !important; }
.glass-card, .card { transition: all 0.3s ease; }
.glass-card:hover, .card:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
button, .btn { transition: all 0.3s ease; }
button:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(6,182,212,0.2); }
@keyframes shimmer { to { background-position: 200% center; } }
.gradient-text { animation: shimmer 3s linear infinite; background-size: 200% auto; }
::selection { background: rgba(6,182,212,0.3); color: #fff; }

