/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== BASE ==== */
body {
  background: radial-gradient(circle at top, #1a1a1a 0%, #0d0d0d 100%);
  color: #e2e2e2;
  font-family: "Bebas Neue", Impact, "Arial Black", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==== HERO SECTION FINAL – LIGHT STEEL POLISH ==== */
.hero {
  position: relative;
  height: 85vh;
  background:
    linear-gradient(rgba(200, 200, 200, 0.1), rgba(0, 0, 0, 0.6)),
    url('../images/badasslogo.png') center center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: scroll; /* prevents iPhone dark scroll bug */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 240, 240, 0.08); /* slight steel tone, not black */
  backdrop-filter: brightness(1.3) contrast(1.05);
  box-shadow: inset 0 -50px 60px rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f7f7f7;
  max-width: 650px;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255,59,59,0.6))
          drop-shadow(0 0 10px rgba(255,255,255,0.25));
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ffffff, #d6d6d6, #b0b0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.4rem;
  color: #efefef;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tagline {
  margin-top: 8px;
  font-size: 1rem;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==== SECTIONS ==== */
section {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(145deg, #1e1e1e 0%, #121212 100%);
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
}

section h2 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #f0f0f0, #a0a0a0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
  letter-spacing: 3px;
  margin-bottom: 25px;
}

/* ==== ABOUT ==== */
.about p {
  max-width: 800px;
  margin: 15px auto;
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* ==== SERVICES ==== */
.services {
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  padding: 25px;
  border: 1px solid #555;
  border-radius: 6px;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.1), 0 0 12px rgba(255,50,50,0.25);
  transition: 0.3s;
  color: #ccc;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.service-card h3 {
  color: #ff3b3b;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==== GALLERY ==== */
.gallery {
  background: linear-gradient(180deg, #141414 0%, #0c0c0c 100%);
  color: #bbb;
  padding: 80px 10%;
  text-align: center;
}

.gallery h2 {
  font-size: 2.8rem;
  color: #ff3b3b;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #b30000;
}

/* image grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* image style */
.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid #222;
  box-shadow: 0 0 12px rgba(255, 59, 59, 0.15);
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.35);
}

/* featured first image (the badass logo shot) */
.gallery-img.featured {
  width: 60%;
  max-width: 500px;
  max-height: 300px;
  object-fit: cover;
  border: 1px solid #ff3b3b;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
  margin: 0 auto 30px auto;
  display: block;
  transition: all 0.3s ease;
}

.gallery-img.featured:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.5);
}
/* ==== CONTACT ==== */
.contact a {
  color: #ff3b3b;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.socials a {
  color: #bbb;
  margin: 0 10px;
}

.socials a:hover {
  color: #ff3b3b;
}

/* ==== FOOTER ==== */
.footer {
  background: #0a0a0a;
  color: #666;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

/* ==== ANIMATIONS ==== */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-in-out;
}

.service-card,
.about p,
.gallery,
.contact,
.footer {
  opacity: 1 !important;
  transform: none !important;
}

/* Logo pop */
.hero-logo.pop {
  animation: popIn 1s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==== BRUSHED STEEL TEXTURE LAYER ==== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/steel-bg.jpg') repeat center;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  filter: contrast(120%) brightness(110%);
}

section {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.8) 100%),
    url('../images/steel-bg.jpg');
  background-size: cover;
  background-blend-mode: overlay;
}
.price {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f4f4f4;
  background: linear-gradient(145deg, #3a3a3a, #1f1f1f);
  border: 1px solid #777;
  border-radius: 6px;
  box-shadow:
    inset 0 0 4px rgba(255,255,255,0.25),
    0 0 8px rgba(255,50,50,0.4),
    2px 2px 4px rgba(0,0,0,0.6);
  letter-spacing: 1px;
  position: relative;
}

/* Add fake rivets */
.price::before,
.price::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #aaa, #555);
  border: 1px solid #444;
  border-radius: 50%;
  transform: translateY(-50%);
}

.price::before {
  left: -12px;
}

.price::after {
  right: -12px;
}

/* ==== DISCOUNT BANNER FIX ==== */
.discount-banner {
  margin: 60px auto 0;
  text-align: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  padding: 25px 40px;
  border: 1px solid #ff3b3b;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.3);
  max-width: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-banner:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 59, 59, 0.6);
}

.discount-banner p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff3b3b;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1px;
}
/* ==== ADD-ON SERVICE STYLE ==== */
.service-card.addon {
  border: 1px solid #444;
  background: linear-gradient(180deg, #1a1a1a, #111);
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.25);
}

/* wrench icon look */
.service-card.addon h3 i {
  color: #ff3b3b;
  margin-right: 8px;
  filter: drop-shadow(0 0 6px rgba(255, 59, 59, 0.4));
  transition: transform 0.3s ease;
}

/* optional: subtle spin on hover */
.service-card.addon:hover h3 i {
  transform: rotate(180deg);
}