/*
Theme Name: Tire Center
Author: You
Version: 1.0
Description: Minimal one-page WordPress theme for RNR Tire Express.
*/

:root{
  --rnr-red:#9b1217;
  --rnr-dark:#101010;
  --text:#1b1b1b;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  position:relative;
  z-index:10;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{height:28px;width:auto;display:block}
.phone{
  font-weight:700;
  letter-spacing:0.5px;
  color:#333;
  font-size:16px;
  white-space:nowrap;
}

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

.hero{
  position:relative;
  height:calc(100vh - 72px);
  min-height:520px;
  /* background applied via inline style in front-page.php */
}
.hero-inner{
  height:100%;
  display:flex;
  align-items:center;
}
.kicker{
  display:inline-block;
  background:transparent;
  color:var(--rnr-red);
  font-weight:800;
  letter-spacing:.02em;
  font-size:16px;
  margin-bottom:8px;
}
.hero h1{
  font-size:56px;
  line-height:1.05;
  margin:0 0 8px 0;
  color:#8e0f14;
  max-width:16ch;
  text-transform:uppercase;
}
.hero p{
  margin:8px 0 0 0;
  font-size:28px;
  font-weight:800;
  text-transform:uppercase;
  color:#222;
}

.band{
  background:var(--rnr-red);
  color:#fff;
  padding:32px 0;
}
.band .container{
  display:flex;
  align-items:center;
  justify-content:center;
}
.band h2{
  margin:0;
  font-size:40px;
  letter-spacing:0.5px;
  text-align:center;
  text-transform:uppercase;
}

.site-footer{height:1px}

@media (max-width: 900px){
  .hero h1{font-size:40px}
  .hero p{font-size:22px}
}
@media (max-width: 600px){
  .topbar{padding:14px 18px}
  .phone{font-size:15px}
  .hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%,
                            rgba(255,255,255,.75) 40%,
                            rgba(255,255,255,0) 75%),
      var(--hero-bg) center / cover no-repeat !important;
  }
  .hero h1{font-size:34px}
  .band h2{font-size:28px}
}
