
html {
  font-family: "Lucida Sans", sans-serif !important;
}
:root {
  --primary: #2d3436; /* Antracit */
  --accent: #ff9f43;  /* Signální oranžová */
  --text: #636e72;    /* Jemnější šedá pro text */
  --bg-light: #f5f6fa;/* Betonové pozadí */
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --font-header: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

img {
  max-width: 500px;
  height: auto;
  display: block;
}
h1 {
  font-family: var(--font-header);
  font-weight: 800;
  text-transform: uppercase; /* Vypadá to víc technicky */
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--bg-light);
}

h2 span {
  color: #FF9F43; /* Oranžové zvýraznění klíčového slova */
}

p, li, span {
  font-family: var(--font-body);
  line-height: 1.6;
}

.cta-button {
  font-family: var(--font-header);
  font-weight: 700;
  text-transform: uppercase;
}

header {
  background-color: var(--bg-light);
  box-shadow: var(--shadow);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(
    45deg,
    #2d3436 10%,
    #ff9f43 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--accent);
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('../vrat-v-garazi.jpg') no-repeat center center/cover;
  padding: 60px 0;
}

/* Skleněný efekt pro textový box */
.hero-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  color: white;
}
.badge-tech {
  background-color: var(--accent); /* Vaše oranžová */
  color: #fff;
  padding: 5px 15px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
  position: absolute;
  top: -15px;
  left: 140px;
}
.contact-tech {
  background-color: var(--accent); /* Vaše oranžová */
  color: #fff;
  padding: 5px 15px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
  position: absolute;
  top: -15px;
  left: 140px;
}
.hero-image-wrapper {
  position: relative;
}

.trust-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;/* Přesahuje přes fotku */
  width: 100px;
  height: 100px;
  background: var(--primary); /* Antracit */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--accent); /* Oranžový kroužek */
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite; /* Jemné pohupování */
  position: absolute;

}

.trust-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.trust-badge span {
  font-size: 10px;
  font-weight: bold;
}

/* Animace pohupování pro rok 2026 */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #FF9F43; /* Oranžové zvýraznění klíčového slova */
}
.hero-text {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  color: var(--text);
  font-size: 18px;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent);
}
.btn-primary {
  background-color: var(--accent);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255,159,67,0.3);
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  position: absolute;
  right: -40px;
  bottom: -30px;
}
footer {
  background-color: #1E272E;
  color: #DCDDE1;
  padding: 20px 0;
  text-align: center;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
footer .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  justify-content: center;
  gap: 15px;
  text-align: left;
}
footer a {
  color: #FF9F43;
  text-decoration: none;
}


.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent);
    outline: none;
}

.contact-list {
    list-style: none;
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.display-block {
  display: block !important;
}
.contact-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 15px;
  max-width: 1200px;
  color: var(--primary);
}
.btn{

  background-color: var(--accent);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255,159,67,0.3);
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.row-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row-inputs input {
    flex: 1; /* Obě pole budou stejně široká */
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 600px) {
    .row-inputs {
        flex-direction: column; /* Na mobilu pod sebou */
        gap: 10px;
    }
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
.about-hero {
    padding: 100px 0;
    background-color: var(--bg); /* Světle šedá */
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-main-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
}

.feature-icon {
    font-size: 1.5rem;
}

.about-cta p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray);
}

/* Obrázek s efektem */
.about-image .image-box {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-tag {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent); /* Vaše oranžová */
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
}

/* Responzivita */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image {
        order: -1; /* Obrázek bude na mobilu první */
    }
}

.why-us-section {
    padding: 80px 0;
    background-color: var(--bg); /* Světlá betonová šedá */
}

.why-us-content h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sloupce na PC */
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent); /* Oranžová linka */
}

.benefit-item:hover , .hero-text:hover {
    transform: translateY(-5px);
}

.benefit-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary); /* Antracit */
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.cta-area {
    text-align: center;
    margin-top: 50px;
}

/* Responzivita pro mobilní zařízení */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr; /* Na mobilu 1 sloupec */
    }
    
    .why-us-content h2 {
        text-align: center;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image img {
    width: 100%;
    height: 250px; /* Pevná výška náhledu */
    object-fit: cover; /* KLÍČOVÉ: Fotka se nezkroutí, ale ořízne jako v galerii */
    object-position: center; /* Zaměření na střed */
}  

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info { padding: 30px; }

.product-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.product-specs li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-specs li span {
    font-weight: 700;
    color: var(--primary);
    margin-right: 5px;
}

.btn-outline {
    border: 2px solid var(--dark);
    background: transparent;
    padding: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--dark);
    color: #fff;
}
.nav-menu  {
    display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

/* Responzivní režim (Mobile) */
@media (max-width: 900px) {
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%; /* Skryté mimo obrazovku */
    width: 80%;
    height: 100vh;
    background: var(--bg-light);
    box-shadow: -10px 0 30px rgba(0,0,0);
    transition: 0.4s ease;
    padding: 100px 50px;
    z-index: 1050;
  }

  .nav-menu.active {
    right: 0; /* Vysunutí menu */
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    list-style: none;
  }
  .nav-links a {
    padding: 15px 0;
    font-size: 18px;
    color: var(--primary);
  }

    .footer-about, .footer-locations, .main-nav { display: none !important; }
    .trust-badge{
      left:0px !important; 
      bottom: 250px !important;
    }
    .hero-text {
      right: 50px !important;
      bottom: -100px !important;
    }
}
.error-page {
    padding: 100px 0;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.error-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Grafika zaseknutých vrat */
.error-visual {
    position: relative;
    margin-bottom: 40px;
}

.gate-frame {
    width: 200px;
    height: 150px;
    border: 6px solid var(--primary);
    margin: 0 auto;
    position: relative;
    background: #eee;
}

.gate-panel {
    width: 100%;
    height: 60%; /* Vrata jsou zaseknutá v půlce */
    background: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 3px solid rgba(0,0,0,0.1);
    background-image: linear-gradient(to bottom, transparent 90%, rgba(0,0,0,0.1) 90%);
    background-size: 100% 15px; /* Pruhy jako na sekčních vratech */
    animation: jitter 2s infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    margin: 0;
}

.error-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-text p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animace "zaseknutí" */
@keyframes jitter {
    0%, 100% { transform: translateY(0); }
    10%, 30%, 50% { transform: translateY(-2px); }
    20%, 40%, 60% { transform: translateY(2px); }
}

@media (max-width: 600px) {
    .error-actions { flex-direction: column; }
    .error-code { font-size: 5rem; }
}
