/*
Theme Name: TDI Custom Theme
Theme URI: https://ejajahamed.dev
Author: Your Name
Description: Custom Tailwind WordPress Theme
Version: 1.0
*/

:root {
  --primary-orange: #ff6b35;
  --dark-orange: #e55a2b;
  --light-orange: #ff8e53;
}

* {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
