/* Template 40 - Silver Chrome & Deep Red */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;600;700&family=Saira:wght@400;600;700&display=swap");

:root {
  --chrome: #e0e0e0;
  --chrome-light: #f5f5f5;
  --chrome-dark: #bdbdbd;
  --red: #c62828;
  --red-dark: #8e0000;
  --red-light: #ff5f52;
  --black: #1c1c1c;
  --text-light: #ffffff;
  --text-gray: #757575;
}

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

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

body {
  font-family: "Saira", sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--chrome-light);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image: linear-gradient(135deg, var(--chrome-light) 0%, var(--chrome) 100%);
}

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

/* Header */
.site-header {
  background: var(--black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(198, 40, 40, 0.4);
  border-bottom: 4px solid var(--red);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 0 2rem;
  position: relative;
}

.site-logo::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}

.site-logo a {
  font-family: "Teko", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  letter-spacing: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 100%;
}

.site-nav li {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-nav a {
  color: var(--chrome);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav a:hover {
  background: var(--red);
  color: var(--text-light);
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, #2c2c2c 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(198, 40, 40, 0.1) 2px,
    rgba(198, 40, 40, 0.1) 4px
  );
  pointer-events: none;
}

.section.head h1 {
  font-family: "Teko", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--chrome-light);
  text-transform: uppercase;
  letter-spacing: 8px;
  position: relative;
  text-shadow: 3px 3px 0 var(--red), 6px 6px 0 var(--red-dark);
  animation: slideIn 1s ease;
}

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

.section.head p {
  font-size: 1.3rem;
  color: var(--chrome-dark);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Teko", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 6px;
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 50%, transparent 100%);
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* Footer */
.footer {
  background: var(--black);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--chrome);
  border-top: 4px solid var(--red);
}

.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-gray);
  line-height: 1.8;
}

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

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

.footer-links a:hover {
  color: var(--red-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
  transform-style: preserve-3d;
}

.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(--red);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Teko", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}
