/* ============================================
   VINTAGE RETRO DESIGN - Světelná Dráha
   CSS Reset & Base Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #3d2817;
  background-color: #f5e6d3;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #8b4513;
  text-shadow: 2px 2px 0px rgba(245, 222, 179, 0.5);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #a0522d;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

a {
  color: #d2691e;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px dotted transparent;
}

a:hover {
  color: #8b4513;
  border-bottom: 2px dotted #8b4513;
}

ul, ol {
  margin-left: 32px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #8b4513;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   VINTAGE RETRO HEADER
   ============================================ */

header {
  background-color: #d2b48c;
  border-bottom: 4px solid #8b4513;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  filter: sepia(0.3) contrast(1.1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: #3d2817;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #f5deb3;
  border: 2px solid #8b4513;
  border-bottom: 2px solid #8b4513;
  transform: translateY(-2px);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MOBILE BURGER MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  background-color: #d2691e;
  border: 3px solid #8b4513;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8b4513;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #d2b48c;
  border-left: 4px solid #8b4513;
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #8b4513;
  border: 3px solid #3d2817;
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #3d2817;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 0;
}

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  color: #3d2817;
  padding: 16px;
  border-bottom: 2px dashed #8b4513;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5deb3;
  padding-left: 24px;
  border-bottom: 2px dashed #3d2817;
}

/* ============================================
   VINTAGE RETRO BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: 3px solid #8b4513;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.4);
}

.btn-primary {
  background-color: #d2691e;
  color: #fff;
}

.btn-primary:hover {
  background-color: #8b4513;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
  border-bottom: 3px solid #8b4513;
}

.btn-secondary {
  background-color: #f5deb3;
  color: #3d2817;
}

.btn-secondary:hover {
  background-color: #d2b48c;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
  border-bottom: 3px solid #3d2817;
}

/* ============================================
   VINTAGE RETRO HERO SECTION
   ============================================ */

.hero {
  background-color: #f5deb3;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(210, 105, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
  border: 4px double #8b4513;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: inset 0 0 20px rgba(139, 69, 19, 0.1);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: #8b4513;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(245, 222, 179, 0.6);
}

.hero-subheadline {
  font-size: 20px;
  color: #3d2817;
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px dashed #8b4513;
}

.trust-indicators span {
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: #8b4513;
  font-size: 16px;
  padding: 8px 16px;
  background-color: #fff;
  border: 2px solid #d2691e;
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   VINTAGE RETRO SECTIONS
   ============================================ */

.value-proposition,
.services-overview,
.process,
.testimonials,
.cta-section,
.story,
.mission-vision,
.statistics,
.showroom-info,
.product-categories,
.buying-guide,
.trust-elements,
.service-details,
.guarantees,
.inspiration-categories,
.style-inspiration,
.lighting-ideas,
.expert-tips,
.contact-methods,
.consultation-booking,
.service-areas,
.legal-page,
.confirmation-details,
.contact-alternatives,
.meanwhile-explore,
.back-navigation {
  background-color: #fff;
  border: 3px solid #d2b48c;
  border-radius: 8px;
  padding: 48px 32px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.2);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5d4037;
  margin-bottom: 40px;
  font-style: italic;
}

/* ============================================
   VINTAGE RETRO GRID LAYOUTS (FLEXBOX)
   ============================================ */

.features-grid,
.services-grid,
.categories-grid,
.styles-grid,
.trust-grid,
.stats-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature,
.service-card,
.category-card,
.style-card,
.trust-item,
.stat,
.method {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #f5deb3;
  border: 3px solid #d2691e;
  border-radius: 8px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.feature:hover,
.service-card:hover,
.category-card:hover,
.style-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  background-color: #fff;
}

.service-card h3,
.category-card h3,
.feature h3 {
  color: #8b4513;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.category-card p,
.feature p {
  color: #3d2817;
  margin-bottom: 16px;
}

.price {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 20px;
  color: #d2691e;
  margin: 16px 0;
  padding: 8px;
  background-color: #fff;
  border: 2px dashed #8b4513;
  border-radius: 4px;
  text-align: center;
}

/* ============================================
   VINTAGE RETRO PROCESS STEPS
   ============================================ */

.process-steps,
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}

.step,
.milestone {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #f5deb3;
  border: 3px solid #8b4513;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.milestone:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 8px rgba(139, 69, 19, 0.3);
}

.step h3,
.milestone h3 {
  font-size: 24px;
  color: #d2691e;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0px rgba(245, 222, 179, 0.5);
}

/* ============================================
   VINTAGE RETRO TESTIMONIALS
   ============================================ */

.testimonials {
  background-color: #f5deb3;
  border: 4px double #8b4513;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background-color: #fff;
  border: 3px solid #d2691e;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 72px;
  color: #d2691e;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-card p {
  color: #3d2817;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.author {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #8b4513;
  text-align: right;
  font-style: normal;
  border-top: 2px dotted #d2691e;
  padding-top: 12px;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #d2691e;
  padding: 16px;
  background-color: #fff;
  border: 3px solid #8b4513;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================
   VINTAGE RETRO CTA SECTION
   ============================================ */

.cta-section {
  background-color: #d2691e;
  color: #fff;
  text-align: center;
  border: 4px solid #8b4513;
  padding: 60px 32px;
}

.cta-section h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #f5deb3;
}

.cta-section .btn {
  margin: 8px;
}

.contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px dashed #f5deb3;
}

.contact-info p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

/* ============================================
   VINTAGE RETRO FOOTER
   ============================================ */

footer {
  background-color: #8b4513;
  color: #f5deb3;
  padding: 48px 20px 24px;
  border-top: 4px solid #3d2817;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-section h3 {
  color: #f5deb3;
  font-size: 20px;
  margin-bottom: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section p {
  color: #f5deb3;
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #f5deb3;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 16px;
  border-bottom: 2px dotted #f5deb3;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed #f5deb3;
  color: #f5deb3;
  font-size: 14px;
}

/* ============================================
   VINTAGE RETRO SERVICE DETAILS
   ============================================ */

.service-detail {
  background-color: #f5deb3;
  border: 3px solid #d2691e;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.service-detail h2 {
  color: #8b4513;
  margin-bottom: 16px;
}

.price-range {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #d2691e;
  margin: 16px 0;
  padding: 12px;
  background-color: #fff;
  border: 2px dashed #8b4513;
  border-radius: 4px;
}

/* ============================================
   VINTAGE RETRO CONTENT LAYOUTS
   ============================================ */

.content-wrapper,
.showroom-details,
.info-block {
  max-width: 800px;
  margin: 0 auto;
}

.ideas-list,
.guides-list,
.explore-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.idea,
.guides-list a,
.explore-links a {
  background-color: #f5deb3;
  border: 2px solid #d2691e;
  border-left: 6px solid #8b4513;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.idea:hover,
.guides-list a:hover,
.explore-links a:hover {
  background-color: #fff;
  border-left-width: 10px;
  padding-left: 24px;
  transform: translateX(4px);
}

/* ============================================
   VINTAGE RETRO LEGAL PAGES
   ============================================ */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #8b4513;
  border-bottom: 3px solid #d2691e;
  padding-bottom: 8px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #a0522d;
}

.legal-content ul {
  background-color: #f5deb3;
  border-left: 4px solid #d2691e;
  padding: 20px 20px 20px 48px;
  margin: 16px 0;
  border-radius: 4px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #8b4513;
  border-top: 4px solid #3d2817;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: #f5deb3;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(61, 40, 23, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background-color: #f5deb3;
  border: 4px solid #8b4513;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
}

.cookie-modal-content h2 {
  color: #8b4513;
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #fff;
  border: 2px solid #d2691e;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #8b4513;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #d2b48c;
  border: 2px solid #8b4513;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #d2691e;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid #8b4513;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 40px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Section adjustments */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Grid layouts */
  .feature,
  .service-card,
  .category-card,
  .style-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step,
  .milestone {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature,
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step,
  .milestone {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.value-proposition,
.services-overview {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}