/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #E8711A;
  --orange-dark: #C45E10;
  --orange-light:#FDF0E6;
  --navy:        #1A2332;
  --navy-light:  #243245;
  --gray-50:     #F8F8F8;
  --gray-100:    #F0F0F0;
  --gray-300:    #D0D0D0;
  --gray-500:    #888;
  --gray-700:    #444;
  --text:        #1A1A1A;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 2px 16px rgba(0,0,0,.08);
  --shadow-md:   0 4px 32px rgba(0,0,0,.12);
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===========================
   LAYOUT
=========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-contact { background: var(--gray-50); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-light .section-eyebrow { color: var(--orange); }
.section-header-light h2 { color: #fff; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ===========================
   HEADER
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--orange); background: var(--orange-light); }

.header-cta { font-size: 14px; padding: 9px 18px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,113,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,113,26,.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/areal.webp');
  background-size: cover;
  background-position: center;
  opacity: .18;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-perex {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.badge svg { color: var(--orange); flex-shrink: 0; }

/* ===========================
   CARDS
=========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-highlight {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.card-highlight h3 { color: #fff; }
.card-highlight .card-icon { background: rgba(255,255,255,.2); color: #fff; }
.card-highlight .card-list li { color: rgba(255,255,255,.85); }
.card-highlight .card-list li::before { background: rgba(255,255,255,.6); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }

.card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-highlight p { color: rgba(255,255,255,.85); }

.card-list { padding: 0; }
.card-list li {
  font-size: 13px;
  color: var(--gray-700);
  padding: 4px 0 4px 16px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ===========================
   USP / DARK SECTION
=========================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.usp-item { padding: 16px; }

.usp-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-text {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

/* ===========================
   PRODEJNA
=========================== */
.prodejna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.prodejna-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prodejna-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prodejna-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.prodejna-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

.prodejna-info { display: flex; flex-direction: column; gap: 36px; }

.info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }

.info-block h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.info-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.info-block p a {
  color: var(--orange);
  font-weight: 500;
}
.info-block p a:hover { text-decoration: underline; }

.hours-table { border-collapse: collapse; }
.hours-table td {
  padding: 4px 16px 4px 0;
  font-size: 15px;
  color: var(--text);
}
.hours-table tr.closed td { color: var(--gray-500); }

.prodejna-map {
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===========================
   KONTAKT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--orange); }

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-icon svg { width: 24px; height: 24px; }

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.contact-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}
.contact-address svg { color: var(--orange); flex-shrink: 0; }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: auto;
}
.footer-brand .logo-main { color: #fff; font-size: 16px; }
.footer-tagline { font-size: 13px; }

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-copy { font-size: 13px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .prodejna-grid { grid-template-columns: 1fr; }
  .prodejna-map { height: 280px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .main-nav, .header-cta {
    display: none;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open a { padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }

  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .cards-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-number { font-size: 40px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-brand { margin-right: 0; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 10px; }
}
