/* styles.css for Boots & Gloves Services LLC (BGS) */
:root {
  --bgs-white: #fff;
  --bgs-bg: #181818;
  --bgs-yellow: #FFD700;
  --bgs-orange: #FF9900;
  --bgs-dark: #232323;
  --bgs-border: #FFD70044;
  --bgs-shadow: 0 4px 24px #0001, 0 1.5px 8px #FFD70022;
  --bgs-radius: 18px;
  --bgs-radius-sm: 12px;
  --bgs-radius-xs: 7px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bgs-bg);
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}
.hero-parallax {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
.hero-overlay {
  color: #fff;
  border-radius: var(--bgs-radius);
  padding: 3rem 2rem 2.5rem 2rem;
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 90vw;
  width: 100%;
  animation: fadeIn 1.2s;
  text-align: center;
}

/* Mantener el fondo oscuro solo en las secciones internas con parallax */
section#why .hero-overlay,
section#commitment .hero-overlay {
  background: rgba(24,24,24,0.88);
  box-shadow: var(--bgs-shadow);
}
  min-height: 50vh;
  padding: 0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: var(--bgs-radius);
  padding: 3rem 2rem 2.5rem 2rem;
  max-width: 900px;
  width: 100%;
}
.hero-logo {
    background: rgba(24,24,24,0.88);
  width: 220px;
  height: 220px;
  border-radius: var(--bgs-radius);
  margin-bottom: 1.2rem;
  object-fit: contain;
  border: 3px solid var(--bgs-yellow);
  transition: transform 0.3s;
}
.hero-logo:hover {
  transform: scale(1.07) rotate(-3deg);
}
.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--bgs-yellow);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.hero-sub {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.installers-main {
  font-size: 3rem;
  font-weight: 900;
  display: block;
}
.powered-ebyop {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFD700;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bgs-orange);
  margin-bottom: 1.1rem;
}
.hero-desc {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 2.2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.btn {
  background: var(--bgs-yellow);
  color: var(--bgs-dark);
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--bgs-radius-xs);
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 8px #FFD70022;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background: var(--bgs-orange);
  color: #fff;
  box-shadow: 0 4px 16px #FF990033;
  transform: translateY(-2px) scale(1.03);
}
section {
  padding: 4.5rem 0 3.5rem 0;
  position: relative;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bgs-yellow);
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}
.section-desc {
  text-align: center;
  font-size: 1.13rem;
  background: rgba(24,24,24,0.88);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0008;
  padding: 1.5rem 1.2rem;
  margin-bottom: 2.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.card {
  background: #232323;
  border-radius: var(--bgs-radius);
  box-shadow: var(--bgs-shadow);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.card:hover {
  box-shadow: 0 8px 32px #FFD70033, 0 2px 8px #FF990022;
  transform: translateY(-4px) scale(1.03);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  color: var(--bgs-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--bgs-radius-xs);
  background: #fffbe6;
  box-shadow: 0 2px 8px #FFD70022;
}
.card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--bgs-yellow);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.card-list {
  margin: 0.7rem 0 0 1.2rem;
  color: #fff;
  font-size: 1.01rem;
  padding-left: 0;
}
.card-list li {
  margin-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .cards {
    gap: 1.2rem;
  }
  .card {
    min-width: 220px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .hero-title { font-size: 1.5rem; }
  .installers-main { font-size: 2.1rem; }
  .powered-ebyop { font-size: 0.95rem; }
  .section-title { font-size: 1.3rem; }
  .hero-headline { font-size: 1.1rem; }
  .hero-logo { width: 70px; height: 70px; }
  section { padding: 2.5rem 0 1.5rem 0; }
  .card { padding: 1.2rem 0.7rem 1rem 0.7rem; }
}
footer {
  background: var(--bgs-white);
  color: #888;
  text-align: center;
  font-size: 1rem;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 2rem;
  border-top: 2px solid var(--bgs-yellow);
  box-shadow: 0 -2px 12px #FFD70011;
}
.divider {
  border: none;
  border-top: 2px solid var(--bgs-yellow);
  margin: 2.5rem auto;
  max-width: 400px;
  opacity: 0.5;
}
