/*
Theme Name: Beer Moto v9
Theme URI: https://beermoto.cz
Author: Beer Moto Tábor
Description: Motorkářský servis - profesionální šablona
Version: 1.1
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #111; color: #fff; font-family: 'Barlow Condensed', sans-serif; }
a { color: #e07000; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ========== HEADER ========== */
.site-header {
  background: #1a1a1a;
  border-bottom: 3px solid #e07000;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.site-logo span { color: #e07000; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav ul li a {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: #ccc; transition: color .2s;
}
nav ul li a:hover { color: #e07000; }

/* ========== MAIN FLYER LAYOUT ========== */
.bmt-flyer {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #111;
  min-height: calc(100vh - 57px - 80px); /* 57px header, 80px footer */
}
@media (max-width: 750px) {
  .bmt-flyer { grid-template-columns: 1fr; min-height: auto; }
}

/* ========== LEFT COLUMN ========== */
.bmt-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 32px;
  gap: 10px;
  border-right: 1px solid #222;
}
.bmt-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.bmt-phone-row { display: flex; align-items: center; gap: 10px; }
.bmt-phone-icon {
  background: #e07000; border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bmt-phone-icon svg { width: 19px; height: 19px; fill: #fff; }
a.bmt-phone-w { font-size: 32px; font-weight: 700; color: #fff; text-decoration: none; transition: opacity .2s; }
a.bmt-phone-o { font-size: 32px; font-weight: 700; color: #e07000; text-decoration: none; transition: opacity .2s; }
a.bmt-phone-w:hover, a.bmt-phone-o:hover { opacity: .75; }

/* MASKOT - výrazně zvětšený */
.bmt-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #c95000;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(224,112,0,0.25);
}
.bmt-circle img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.bmt-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 3px 3px 0 #000;
  line-height: 1;
  margin-top: 6px;
}
.bmt-brand-city {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #e07000;
  letter-spacing: 8px;
  text-align: center;
}


/* ========== RIGHT COLUMN ========== */
.bmt-right {
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

/* HEADLINE */
.bmt-headline-wrap { line-height: 1; }
.bmt-headline-sm {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; color: #ccc;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}
.bmt-headline-lg {
  font-family: 'Oswald', sans-serif;
  font-size: 58px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #fff;
  display: block;
}
.bmt-headline-lg .accent { color: #e07000; }
.bmt-headline-line {
  width: 80px; height: 3px;
  background: #e07000;
  margin-top: 8px;
}

/* NABÍZÍME BADGE */
.bmt-nabizime-wrap { }
.bmt-badge {
  background: #e07000;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  padding: 7px 22px;
  display: inline-block;
}

/* ========== SERVICES GRID ========== */
.bmt-services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 1000px) { .bmt-services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 550px)  { .bmt-services { grid-template-columns: repeat(2, 1fr); } }

.bmt-scard {
  background: #1a1a1a;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 14px 8px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
.bmt-scard svg {
  color: #e07000;
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.bmt-scard-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}
.bmt-scard-desc {
  font-size: 11px;
  color: #bbb;
  line-height: 1.5;
}

/* ========== BOTTOM: CHECKLIST + PHOTOS ========== */
.bmt-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  flex: 1;
}
.bmt-checklist { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.bmt-check-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: #fff;
}
.bmt-check-item::before {
  content: '✓';
  color: #e07000; font-weight: 700; flex-shrink: 0;
}
.bmt-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bmt-photo-ph {
  background: #222;
  border: 1px dashed #444;
  border-radius: 4px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #555;
  overflow: hidden;
}
.bmt-photo-ph img { width: 100%; height: 100%; object-fit: cover; }

/* ========== FOOTER ========== */
.bmt-footer {
  background: #1a1a1a;
  border-top: 3px solid #e07000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 28px;
}
@media (max-width: 650px) {
  .bmt-footer { grid-template-columns: 1fr; gap: 14px; }
  .bmt-fcol { border-right: none !important; }
}
.bmt-fcol {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 0 16px;
  border-right: 1px solid #333;
}
.bmt-fcol:last-child { border-right: none; }
.bmt-ficon {
  background: #e07000; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bmt-ficon svg { width: 18px; height: 18px; fill: #fff; }
.bmt-ficon.fb { background: #e07000 !important; }
.bmt-ftitle {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  display: block;
}
.bmt-fsub { font-size: 11px; color: #aaa; line-height: 1.5; }
a.bmt-fnum    { font-size: 16px; font-weight: 700; color: #fff; display: block; text-decoration: none; transition: opacity .2s; }
a.bmt-fnum-o  { font-size: 16px; font-weight: 700; color: #e07000; display: block; text-decoration: none; transition: opacity .2s; }
a.bmt-fnum:hover, a.bmt-fnum-o:hover { opacity: .75; }
.bmt-flabel { font-size: 9px; color: #777; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

a.bmt-fb-link {
  color: #fff; font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; display: block; transition: color .2s;
}
a.bmt-fb-link:hover { color: #e07000; }

/* NAVIGOVAT */
a.bmt-navigate {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #e07000;
  border: 1px solid #e07000;
  border-radius: 3px;
  padding: 2px 8px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
a.bmt-navigate:hover { background: #e07000; color: #111; }

/* ========== SITE FOOTER ========== */
.site-footer-bottom {
  background: #0a0a0a;
  text-align: center;
  padding: 12px;
  font-size: 11px; color: #555;
  border-top: 1px solid #222;
}
