/*
Theme Name: Deura Controls
Theme URI: https://www.deuracontrols.com/
Description: Deura Controls - Intelligent Monitoring & Control Solutions
Version: 2.0
Author: Deura Controls
Author URI: https://www.deuracontrols.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: business, corporate, responsive, dark
Text Domain: deura-controls
*/

/* Base resets - Tailwind handles the rest via CDN */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; }
img { max-width: 100%; }
a { text-decoration: none; }

/* Slide transition */
.slide { transition: opacity 1s ease-in-out; }

/* Fade up animation */
.fade-up { animation: fadeUp 1s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Glass panel */
.glass-panel {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Accent line */
.accent-line {
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, transparent 100%);
}

/* WordPress menu resets */
.main-menu ul, .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
