@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #a25641;
  --background-color: #f0f8ff;
  --white: #ffffff;
  --light-bg: #fafbfc;
  --shadow-light: rgba(162, 86, 65, 0.1);
  --shadow-medium: rgba(162, 86, 65, 0.15);
  --shadow-strong: rgba(162, 86, 65, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background-color: var(--background-color);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== TYPOGRAFIE ========== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.3;
}

h1 {
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 8vw, 6rem);
}

h2 {
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h3 {
  font-weight: 500;
  font-size: clamp(1.3rem, 4vw, 2rem);
}

h4 {
  font-weight: 500;
  font-size: 1.2rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #8b4936;
}

/* ========== NAVIGACE ========== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 20px var(--shadow-light);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px var(--shadow-medium);
  padding: 0.5rem 0;
}

.navbar-brand {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

#logo {
  max-height: 60px;
  transition: all 0.3s ease;
}

.navbar.scrolled #logo {
  max-height: 50px;
}

.navbar-toggler {
  border: none;
  background: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23a25641' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--white) !important;
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--background-color) 0%, rgba(162, 86, 65, 0.1) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(162, 86, 65, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(162, 86, 65, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 890px;
  padding: 2rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.nonstop-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px var(--shadow-medium);
  animation: fadeInUp 1s ease 0.4s both, pulse 2s infinite 2s;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--shadow-medium);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
}

.phone-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--shadow-strong);
}

.phone-btn i {
  font-size: 1.8rem;
}



/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  margin: 0 auto;
  border-radius: 2px;
}

/* ========== SECTIONS SPACING ========== */
section {
  margin-bottom: 6rem;
  scroll-margin-top: 100px;
}

/* ========== SERVICES SECTION ========== */
.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 8px 30px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 86, 65, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.service-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  text-align: center;
  color: rgba(162, 86, 65, 0.8);
  line-height: 1.7;
}

.emergency-card {
  position: relative;
}

.emergency-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4757;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

/* ========== GALLERY SECTION ========== */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(162, 86, 65, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* ========== PRICING SECTION ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pricing-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 86, 65, 0.1);
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricing-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-content p {
  color: rgba(162, 86, 65, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.emergency-pricing {
  border: 2px solid #ff4757;
}

.emergency-pricing .pricing-icon {
  background: linear-gradient(135deg, #ff4757, #ff3742);
}

/* ========== CONTACT SECTION ========== */
.contact-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-light);
  height: 100%;
}

.emergency-contact h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.emergency-contact p {
  color: rgba(162, 86, 65, 0.8);
  margin-bottom: 2rem;
}

.emergency-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.emergency-phone:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.emergency-phone i {
  font-size: 2rem;
}

.emergency-phone .label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.emergency-phone .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}

.availability {
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0 !important;
}

.business-info h4 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(162, 86, 65, 0.8);
}

.info-item i {
  width: 24px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.info-item div {
  display: flex;
  flex-direction: column;
}

/* ========== REVIEW SECTION ========== */
.review-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.review-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-light);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.form-control {
  border: 2px solid rgba(162, 86, 65, 0.2);
  border-radius: 10px;
  padding: 1rem;
  background-color: var(--white);
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(162, 86, 65, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-content strong {
  font-size: 1.2rem;
}

.footer-content span {
  opacity: 0.9;
}

/* ========== MAIN CONTENT ========== */
.main-content {
  padding: 4rem 0;
}

/* ========== ANIMACE ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========== RESPONZIVITA ========== */
@media (max-width: 768px) {
  .hero-content {
    padding: 1rem;
  }
  
  .main-content {
    padding: 2rem 0;
  }
  
  section {
    margin-bottom: 4rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .service-card,
  .contact-card,
  .review-form {
    padding: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .emergency-phone {
    flex-direction: column;
    text-align: center;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.6rem 1rem !important;
  }

  html {
    scroll-padding-top: 160px;
  }
  
  body,html {
    overflow-x: hidden;
  }
}

@media (max-width: 576px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-item {
    padding: 1.5rem;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* ========== SMOOTH SCROLLING ========== */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* ========== GOOGLE REVIEWS SLIDER ========== */
.reviews-wrapper {
  position: relative;
  max-width: 750px;
  margin: 0 auto 3rem;
  padding: 0 3rem;
}

.reviews-slider {
  overflow: hidden;
  border-radius: 20px;
}

.review-slide {
  display: none;
  animation: reviewFadeIn 0.5s ease;
}

.review-slide.active {
  display: block;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow-light);
  border: 1px solid rgba(162, 86, 65, 0.1);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 6rem;
  line-height: 1;
  color: rgba(162, 86, 65, 0.08);
  font-family: Georgia, serif;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info strong {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.review-stars {
  color: #f4b400;
  font-size: 0.95rem;
  margin-top: 2px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(162, 86, 65, 0.6);
  font-weight: 500;
  margin-left: auto;
}

.review-text {
  color: rgba(162, 86, 65, 0.85);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-date {
  font-size: 0.82rem;
  color: rgba(162, 86, 65, 0.5);
}

/* Šipky */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(162, 86, 65, 0.25);
  background: var(--white);
  color: var(--primary-color);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* Tečky */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(162, 86, 65, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Tlačítko napsat recenzi */
.write-review-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.write-review-text {
  color: rgba(162, 86, 65, 0.75);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid rgba(162, 86, 65, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--shadow-light);
  transition: all 0.3s ease;
}

.write-review-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), #8b4936);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow-medium);
}

.write-review-btn:hover .google-icon path {
  fill: #fff;
}

.google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .reviews-wrapper {
    padding: 0 2.5rem;
  }
  .review-card {
    padding: 1.8rem;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}
