/**
 * Custom Style Overrides
 * Use this file to easily customize brand colors, fonts, buttons, and layout styles
 * without modifying minified Framer code chunks.
 */

:root {
  /* Brand Colors */
  --brand-primary: #ff5e3a;
  --brand-primary-hover: #ff7857;
  --brand-accent: #2563eb;
  --brand-dark: #0a0a0c;
  --brand-card-bg: #141417;
  
  /* Typography */
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Inter", sans-serif;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0d0d0f;
}
::-webkit-scrollbar-thumb {
  background: #2a2a32;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3e3e4a;
}

/* Custom button hover enhancements */
a[href*="contact"], button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hide 'USE FOR FREE' button and Framer Badge */
a[href*="framer.com/projects/new"],
a[href*="duplicate="],
#__framer-badge-container {
  display: none !important;
}

/* ------------------------------------------------------------------ */
/* Pricing & template-leftover safety net (kept out of the DOM in the  */
/* HTML itself; these rules cover any Framer runtime re-render).       */
/* ------------------------------------------------------------------ */
[data-framer-name="Price"],
a[href*="drive.google"],
section[data-framer-name="About"],
section[data-framer-name="Who Am I"],
.framer-1w03w70 {
  display: none !important;
}

/* ------------------------------------------------------------------ */
/* Floating back button (injected by custom.js on non-home pages)      */
/* ------------------------------------------------------------------ */
.titan-back-btn {
  position: fixed;
  left: 20px;
  top: 20px; /* custom.js nudges this below the header on pages that have one */
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.titan-back-btn svg {
  color: var(--brand-primary, #ff5e3a);
  flex: none;
}

.titan-back-btn:hover {
  background: rgba(255, 94, 58, 0.92);
  border-color: rgba(255, 94, 58, 0.9);
}

.titan-back-btn:hover svg {
  color: #ffffff;
}

.titan-back-btn:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  .titan-back-btn {
    left: 14px;
    padding: 8px 14px 8px 11px;
    font-size: 13px;
  }
}

/* Contact address: clickable Google Maps location */
[data-framer-name="Address"] a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
[data-framer-name="Address"] a:hover {
  color: var(--brand-primary, #ff5e3a);
  text-decoration: underline;
}

/* Quote form submission status (attached by custom.js right below the form) */
.titan-form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.titan-form-status.titan-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

.titan-form-status.titan-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
}

/* Optional custom badge or banner styling */
.custom-highlight {
  color: var(--brand-primary) !important;
}
