/*
Theme Name: AppWeft Custom Theme
Theme URI: https://appweft.com/
Author: AppWeft
Author URI: https://appweft.com/
Description: Custom one-page marketing theme for AppWeft (converted from an HTML Tailwind template). Tailwind is loaded via CDN.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: appweft
Tags: custom-logo, one-column, right-sidebar, custom-menu, sticky-post, threaded-comments
*/

/* The design is primarily driven by Tailwind classes.
   These are the few custom styles from the original template. */

body { box-sizing: border-box; }

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}
