/* Template 20 - Industrial Concrete */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&display=swap");

:root {
  --bg-primary: #2a2a2a;
  --bg-secondary: #3a3a3a;
  --bg-tertiary: #4a4a4a;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --text-muted: #888888;
  --accent-orange: #ff6b00;
  --accent-yellow: #ffb700;
  --border-color: #555555;
}

* {
  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-primary);
  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-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 10px,
      rgba(255, 107, 0, 0.03) 10px,
      rgba(255, 107, 0, 0.03) 11px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(255, 107, 0, 0.03) 10px,
      rgba(255, 107, 0, 0.03) 11px
    );
  pointer-events: none;
  z-index: 1;
}

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

/* Header with Industrial Style */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 4px solid var(--accent-orange);
  border-top: 2px solid var(--accent-yellow);
  padding: 1.2rem 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;
  border-left: 4px solid var(--accent-orange);
  padding-left: 1.5rem;
}

.site-logo a {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.site-logo a:hover {
  color: var(--accent-yellow);
  transform: skewX(-5deg);
  letter-spacing: 5px;
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.8rem 1.8rem;
  border-left: 2px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, transparent 50%, var(--accent-orange) 50%);
  background-size: 100% 200%;
  background-position: top;
}

.site-nav a:hover {
  color: var(--bg-primary);
  background-position: bottom;
}

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: left;
  position: relative;
  border-left: 6px solid var(--accent-orange);
  padding-left: 3rem;
}

.section.head h1 {
  font-family: "Oswald", sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
  animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 900px;
  border-top: 2px solid var(--accent-yellow);
  padding-top: 1rem;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  border-bottom: 2px dashed var(--border-color);
}

.section header {
  text-align: left;
  margin-bottom: 3rem;
  border-left: 6px solid var(--accent-yellow);
  padding-left: 2rem;
}

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

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--accent-orange);
  margin-top: 5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-yellow);
  padding-left: 2rem;
}

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

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.6rem 1.5rem;
  border-left: 2px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent-orange);
  background: rgba(255, 107, 0, 0.1);
}

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

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

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

.fade-in {
  opacity: 0;
  animation: slideUp 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: 2rem;
  color: var(--accent-orange);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
