/* Template 40 - Copper Bronze Industrial */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@300;400;700&display=swap");

:root {
  --primary: #d97706;
  --primary-dark: #b45309;
  --primary-light: #f59e0b;
  --accent: #ea580c;
  --bg-primary: #1c1917;
  --bg-secondary: #292524;
  --glass-bg: rgba(217, 119, 6, 0.05);
  --glass-border: rgba(217, 119, 6, 0.2);
  --text-primary: #fef3c7;
  --text-secondary: #fde68a;
  --text-muted: #fbbf24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(217, 119, 6, 0.03) 49%,
      rgba(217, 119, 6, 0.03) 51%,
      transparent 52%
    ),
    linear-gradient(-45deg, transparent 48%, rgba(217, 119, 6, 0.03) 49%, rgba(217, 119, 6, 0.03) 51%, transparent 52%);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--primary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.site-logo a:hover {
  color: var(--primary-light);
  text-shadow: 0 0 20px rgba(217, 119, 6, 0.6);
  transform: skewX(-2deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: inset 0 0 10px rgba(217, 119, 6, 0.2);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  animation: metalShine 3s ease-in-out infinite;
}

@keyframes metalShine {
  0%,
  100% {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 0 0 30px rgba(217, 119, 6, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.7);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--primary);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
