/* ── MH CARS THEME — main.css ── */
/* Chceš zmeniť font? Stačí zmeniť hodnoty --font-display a --font-body nižšie */
/* Chceš zmeniť farby? Zmeň --red, --black, --dark atď. */

:root {
  --red: #E60012;           /* Hlavná červená farba */
  --red-dark: #B8000E;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --font-display: 'Barlow Condensed', sans-serif;   /* Font pre nadpisy */
  --font-body: 'Barlow', sans-serif;                 /* Font pre text */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230,0,18,0.25);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-logo-text span { color: var(--red); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0 1.1rem;
  color: var(--light-gray); text-decoration: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; line-height: 70px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 0 1.4rem !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #000 0%, #1a0000 40%, #0a0a0a 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(230,0,18,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,18,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px,60px); }
}
.hero-accent {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,0,18,0.12) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 2rem 4rem;
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--red); }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title .line2 { color: var(--red); display: block; }
.hero-subtitle {
  font-size: 1.15rem; color: var(--light-gray); max-width: 480px;
  line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 1rem 2rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 1rem 2rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(230,0,18,0.3);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
}
.hero-card-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.8rem;
}
.hero-card-phone {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; color: var(--white); margin-bottom: 0.5rem;
}
.hero-card-phone a { color: inherit; text-decoration: none; }
.hero-card-phone a:hover { color: var(--red); }
.hero-card-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
.hero-badge {
  display: inline-block; background: var(--red); color: var(--white);
  padding: 0.4rem 1rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--red); }
.hero-stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2; animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTIONS ── */
.site-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 2px; background: var(--red); }
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase;
  margin-bottom: 1.5rem; line-height: 1.1;
}
.section-title span { color: var(--red); }
.section-desc {
  color: var(--light-gray); max-width: 600px;
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 3rem; font-weight: 300;
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; background: rgba(230,0,18,0.15);
  border: 1.5px solid rgba(230,0,18,0.15);
}
.service-card {
  background: var(--dark2); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card:hover { background: var(--dark3); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--red); transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-icon { width: 52px; height: 52px; margin-bottom: 1.5rem; color: var(--red); }
.service-icon svg { width: 100%; height: 100%; }
.service-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.8rem;
}
.service-desc { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 1rem;
}
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; font-weight: 300; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--red);
  padding: 1rem 2.5rem; text-decoration: none;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ── CENNIK ── */
.cennik-note {
  background: rgba(230,0,18,0.08); border: 1px solid rgba(230,0,18,0.25);
  padding: 1.5rem 2rem; margin-bottom: 3rem; border-left: 4px solid var(--red);
  color: var(--light-gray); font-size: 0.95rem; line-height: 1.6;
}
.cennik-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.cennik-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem; transition: border-color 0.3s, transform 0.3s;
}
.cennik-card:hover { border-color: rgba(230,0,18,0.4); transform: translateY(-4px); }
.cennik-card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.cennik-card-price { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--red); margin-bottom: 0.3rem; }
.cennik-card-sub { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; }
.cennik-card-desc { color: var(--light-gray); font-size: 0.9rem; line-height: 1.6; }

/* ── PREPRAVNY PORIADOK ── */
.poriadok-wrapper {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 3rem;
}
.poriadok-article { margin-bottom: 2.5rem; }
.poriadok-article h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--red); margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(230,0,18,0.2);
}
.poriadok-article p, .poriadok-article li {
  color: var(--light-gray); font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.5rem;
}
.poriadok-article ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.poriadok-article ul li::marker { color: var(--red); }
.poriadok-date {
  color: var(--gray); font-size: 0.85rem; font-style: italic;
  margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── GALLERY ── */
.gallery-placeholder {
  background: var(--dark2); border: 2px dashed rgba(230,0,18,0.3);
  padding: 5rem 2rem; text-align: center; color: var(--gray);
}
.gallery-placeholder svg { width: 48px; height: 48px; margin-bottom: 1rem; color: rgba(230,0,18,0.4); display: block; margin: 0 auto 1rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.4rem;
}
.contact-info-value { color: var(--white); font-size: 1.05rem; }
.contact-info-value a { color: var(--white); text-decoration: none; }
.contact-info-value a:hover { color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.4rem 0; color: var(--light-gray); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--white); }
.contact-map {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
  min-height: 280px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: var(--gray); text-align: center; padding: 2rem;
}
.contact-map svg { width: 48px; height: 48px; margin-bottom: 1rem; color: var(--red); }
.contact-map a {
  margin-top: 1rem; color: var(--red); text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-form-section {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 2.5rem;
}
.form-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.3rem; text-transform: uppercase; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.85rem; color: var(--gray);
  margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark2); }
.form-success {
  display: none; background: rgba(0,200,100,0.1);
  border: 1px solid rgba(0,200,100,0.3);
  padding: 1rem; color: #00c864; margin-top: 1rem; font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid rgba(230,0,18,0.2);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; text-transform: uppercase;
}
.footer-brand-name span { color: var(--red); }
.footer-tagline { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-col-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 0.8rem; color: var(--gray); font-size: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--red); }
.footer-contact-item a { color: var(--gray); text-decoration: none; }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; color: var(--gray); font-size: 0.8rem;
}
.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ── PAGE HEADER (for inner WP pages) ── */
.page-header {
  padding: 120px 2rem 3rem; max-width: 1200px; margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); flex-direction: column;
    border-bottom: 1px solid rgba(230,0,18,0.2); padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { line-height: 1; padding: 0.9rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-cta { clip-path: none; margin: 0.5rem 2rem; text-align: center; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .site-section { padding: 3rem 1.5rem; }
  .poriadok-wrapper { padding: 1.5rem; }
}

/* Fix link underlines in CTA banner */
.cta-banner a, .cta-banner a:hover { text-decoration: none; }
.btn-white, .btn-white:hover { text-decoration: none; }
