/* Custom premium minimal styles for Brandafix - Elite Agency Design */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  background-color: #080808;
}

/* Base Body Styles */
body {
  background-color: #080808;
  color: #e5e2e1;
}

/* Tonal Dark Cards (Redefining Glassmorphism for Luxury Branding) */
.glass-panel, .glass-card {
  background-color: #121212 !important;
  backdrop-filter: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.glass-panel:hover, .glass-card:hover {
  background-color: #161616 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Solid Premium Buttons (Clean & Solid vs. Glowing Gradients) */
.btn-gradient, .bg-gradient-primary {
  background: #ff2b2b !important;
  color: #ffffff !important;
  transition: all 0.25s ease-out;
  border: 1px solid #ff2b2b;
}
.btn-gradient:hover, .bg-gradient-primary:hover {
  background: #e11d48 !important;
  border-color: #e11d48;
  transform: translateY(-1px);
}

/* Remove Text Gradients (Solid White is more authoritative and premium) */
.text-gradient {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  -webkit-background-clip: initial !important;
  color: #ffffff !important;
}

/* Subtle Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #080808;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff2b2b;
}

/* Input Fields - Clean & Sharp */
.input-dark {
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.input-dark:focus {
  border-color: #ff2b2b;
  outline: none;
}

/* WhatsApp Floating Button - Sleek & Flat */
.whatsapp-btn {
  background: #f6f6f6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reveal Transitions - Soft and Professional */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Premium Tech Background Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 43, 43, 0.012) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 43, 43, 0.012) 1px, transparent 1px);
  background-size: 100px 100px;
  background-position: center center;
  pointer-events: none;
  z-index: 1;
}

/* Custom Interactive Cursor for Premium Marketing Agency Vibe */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  left: 0;
  top: 0;
  border-radius: 50%;
  opacity: 0;
  display: block !important;
  transition: opacity 0.3s ease, transform 0.05s ease-out;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #ff2b2b !important;
  box-shadow: 0 0 10px #ff2b2b, 0 0 20px #ff2b2b;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 43, 43, 0.4) !important;
  box-shadow: 0 0 15px rgba(255, 43, 43, 0.1);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s, background-color 0.3s, opacity 0.3s;
}
.cursor-ring.is-active {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 43, 43, 0.9) !important;
  background-color: rgba(255, 43, 43, 0.05) !important;
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.2);
}

.site-loader {
  display: none !important;
}

/* Enhancing Hover Borders for Bento & Case Cards */
.glass-panel:hover, .glass-card:hover {
  background-color: #161616 !important;
  border-color: rgba(255, 43, 43, 0.35) !important;
  box-shadow: 0 15px 45px rgba(255, 43, 43, 0.05) !important;
}
