/*
Theme Name: DevLuxx
Theme URI: https://devluxx.com
Author: Sakinur Sakib
Author URI: https://devluxx.com
Description: An indie SaaS / dev studio landing page theme. Modular template parts, dynamic blog loop, Customizer-ready. Built on Tailwind via CDN.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devluxx
Tags: business, portfolio, one-page, blog, full-width-template, custom-menu, threaded-comments, featured-images

DevLuxx WordPress Theme, (C) 2026 Sakinur Sakib.
DevLuxx is distributed under the terms of the GNU GPL v2 or later.
*/

/* Tailwind handles most styles via CDN (loaded in header.php). */
/* Anything that can't be done with utility classes lives here. */

body {
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
}

.dotted-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.gradient-text {
  background: linear-gradient(90deg, #c4b5fd 0%, #a78bfa 50%, #7a4dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow {
  box-shadow: 0 0 60px rgba(122, 77, 255, 0.35), 0 0 120px rgba(122, 77, 255, 0.15);
}

.pill {
  border: 1px solid rgba(0, 212, 120, 0.4);
  background: rgba(0, 212, 120, 0.06);
  color: #00d478;
}

.marquee {
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.card-hover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.card-hover:hover {
  transform: translateY(-4px);
}

details[open] summary svg {
  transform: rotate(180deg);
}

details summary svg {
  transition: transform 0.3s;
}

details summary::-webkit-details-marker {
  display: none;
}

.price-glow {
  background: radial-gradient(ellipse at top, rgba(122, 77, 255, 0.25), transparent 70%);
}

.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* WordPress core required classes */
.alignright { float: right; margin-left: 1.5em; }
.alignleft { float: left; margin-right: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: #6b7280; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* Admin bar fix */
.admin-bar nav.fixed { top: calc(1rem + 32px); }
@media (max-width: 782px) {
  .admin-bar nav.fixed { top: calc(1rem + 46px); }
}
