/*
Theme Name: Verdexo
Theme URI: https://verdexo.com
Author: Antigravity
Author URI: https://antigravity.ai
Description: A native, premium WordPress theme structured specifically for absolute dynamic control from the WordPress Customizer dashboard. Powered by Tailwind CSS and dynamic PHP loops.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: verdexo
*/

/* Custom global styles & micro-interactions */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  background-color: #fdfcfe;
  color: #1a1523;
  -webkit-font-smoothing: antialiased;
}

/* Glassmorphism utility classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.glass-panel-dark {
  background: rgba(15, 10, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Noise overlay animation & grain textures */
.grainy-bg {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom transitions and animations */
.transition-all-500 {
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f3effa;
}
::-webkit-scrollbar-thumb {
  background: #c9b3e6;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9774c6;
}
