#specific-section-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(50px, 7vw, 70px);
  text-align: center;
  color: #4a0e0e;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
}

/* ========================================
   Font Face
   ======================================== */
@font-face {
  font-family: "Edwardian Script ITC";
  src: url("../assets/fonts/edwardianscriptitc.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Barvy */
  --accent-color: #3a0505;
  --text-dark: #333;
  --text-light: #333;
  --white: #fff;
  --border-color: #ddd;

  /* Fonty */
  --font-heading-fancy: "Edwardian Script ITC", cursive;
  --font-heading: "EB Garamond", serif;
  --font-body: "EB Garamond", serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading-fancy);
  font-weight: 400;
}

h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ========================================
   Navigace
   ======================================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 1000;
  padding: 20px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #d4a574;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4a574;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: #f0d4a8;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #d4a574;
  transition: var(--transition);
  display: block;
}

/* ========================================
   Hero sekce
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

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

.hero-title {
  font-family: var(--font-heading-fancy);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 400;
  color: #d4a574;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  color: #d4a574;
  margin-bottom: 30px;
  font-weight: 400;
}

.primary-text {
  color: #f0d4a8;
  font-weight: 700;
}

.hero-description {
  font-family: "Indie Flower", cursive;
  font-size: clamp(16px, 2vw, 20px);
  color: #d4a574;
  margin-bottom: 40px;
  max-width: 600px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 40px;
  color: #d4a574;
  display: block;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #d4a574;
  color: #4a0e0e;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: var(--section-padding);
}

.section-title {
  font-family: var(--font-heading-fancy);
  font-size: clamp(50px, 7vw, 70px);
  text-align: center;
  color: #4a0e0e;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 400;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* ========================================
   O nás sekce
   ======================================== */
.about {
  background-color: var(--white);
  padding: 80px 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  width: 250px;
  height: 250px;
  background-image: url("../assets/images/ruze1.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  display: flex;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-text {
  color: var(--text-dark);
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 18px;
}

.about-text strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* ========================================
   Služby sekce
   ======================================== */
.services {
  background-color: var(--white);
  padding: 0;
}

.services-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.services-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slide.active {
  transform: translateX(0);
}

.service-slide.prev {
  transform: translateX(-100%);
}

.service-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: brightness(0.4);
}

.service-slide-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.service-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 40px;
}

.service-slide-content h3 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 400;
  color: #d4a574;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.service-slide-content p {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: #fff;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  padding: 20px;
}

.carousel-btn span {
  font-size: 80px;
  font-weight: 300;
  color: #d4a574;
  line-height: 1;
  transition: var(--transition);
}

.carousel-btn:hover span {
  color: #f0d4a8;
  transform: scale(1.2);
}

.carousel-btn-prev {
  left: 40px;
}

.carousel-btn-next {
  right: 40px;
}

/* ========================================
   Solárium sekce
   ======================================== */
.solarium {
  background: #1a1a1a;
  padding: 80px 0;
}

.solarium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title-left {
  font-family: var(--font-heading-fancy);
  font-size: clamp(50px, 7vw, 70px);
  color: #d4a574;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 400;
}

.solarium-text {
  color: #d4a574;
}

.solarium-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #d4a574;
}

.solarium-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #d4a574;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.solarium-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solarium-video video {
  width: 100%;
  max-width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Ceník sekce
   ======================================== */
.pricing {
  background-color: #f5f0e8;
  padding: 80px 0;
}

.pricing-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-accordion-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.pricing-accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-accordion-header {
  width: 100%;
  background-color: var(--white);
  border: none;
  padding: 25px 30px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  text-align: left;
}

.pricing-accordion-header:hover {
  background-color: #fafafa;
}

.pricing-accordion-header span:first-child {
  flex: 1;
}

.pricing-accordion-icon {
  font-size: 32px;
  font-weight: 300;
  color: #c28447;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.pricing-accordion-item.active .pricing-accordion-icon {
  transform: rotate(45deg);
}

.pricing-accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.pricing-accordion-item.active .pricing-accordion-content {
  max-height: 5000px;
  padding: 0 0 20px 0;
  opacity: 1;
}

.pricing-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 20px 30px;
}

.pricing-column {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Petra Bučková - široký accordion bez gridu */
.pricing-accordion-item:not(:has(.pricing-grid-two)).active
  .pricing-accordion-content {
  padding: 20px 30px 30px 30px;
}

.pricing-accordion-item:not(:has(.pricing-grid-two)) .pricing-column {
  padding: 0;
}

.pricing-column-title {
  font-family: var(--font-heading-fancy);
  font-size: clamp(32px, 5vw, 42px);
  color: var(--accent-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.pricing-category {
  margin-bottom: 35px;
}

.pricing-category:last-child {
  margin-bottom: 0;
}

.pricing-category-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-subtitle {
  font-size: 17px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

.pricing-features {
  list-style: disc;
  margin: 15px 0 15px 25px;
  padding: 0;
}

.pricing-features li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-features-note {
  font-size: 13px;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 10px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 15px;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item-name {
  flex: 1;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light);
}

.pricing-item-price,
.price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  white-space: nowrap;
}

.pricing-item-price del,
.price del {
  color: var(--text-light);
  opacity: 0.5;
  margin-right: 8px;
  font-weight: 400;
  font-size: 14px;
}

.pricing-note {
  background-color: #fff9f0;
  border-left: 4px solid #d4a574;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 5px;
}

.pricing-note p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note strong {
  color: var(--accent-color);
  font-weight: 600;
}

.pricing-note em {
  color: #c28447;
  font-style: italic;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.pricing-footer p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

.pricing-footer strong {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 18px;
}

/* Tabulka ceníku solárií */
.solarium-pricing-table {
  overflow-x: auto;
  margin: 20px 0;
}

.solarium-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.solarium-table thead {
  background-color: var(--accent-color);
  color: var(--white);
}

.solarium-table th {
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.solarium-table th:last-child {
  border-right: none;
}

.solarium-table td {
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  color: var(--text-light);
}

.solarium-table td:last-child {
  border-right: none;
}

.solarium-table tbody tr:last-child td {
  border-bottom: none;
}

.solarium-table tbody tr:hover {
  background-color: #fafafa;
}

.solarium-table .highlight-row {
  background-color: #fff9f0;
}

.solarium-table .highlight-row:hover {
  background-color: #fff5e6;
}

.solarium-table .gift-value {
  color: #c28447;
  font-weight: 600;
  font-size: 12px;
}

/* Responzivní tabulka pro mobilní zařízení */
@media (max-width: 768px) {
  .solarium-table {
    font-size: 13px;
  }

  .solarium-table th,
  .solarium-table td {
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 900;
  }

  .solarium-table th {
    font-size: 12px;
    font-weight: 900;
  }

  .solarium-table .gift-value {
    font-size: 12px;
    font-weight: 900;
  }
}

@media (max-width: 480px) {
  .solarium-table {
    font-size: 11px;
  }

  .solarium-table th,
  .solarium-table td {
    padding: 10px 5px;
    font-size: 11px;
    font-weight: 900;
  }

  .solarium-table th {
    font-size: 10px;
    font-weight: 900;
  }

  .solarium-table .gift-value {
    font-size: 11px;
    font-weight: 900;
  }
}

/* ========================================
   Objednat sekce
   ======================================== */
.booking {
  background-color: #f5f0e8;
  padding: 80px 0;
}

.booking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.booking-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  min-height: 100px;
  height: auto;
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.booking-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.booking-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, #5a1515 100%);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  margin-top: 10px;
}

.booking-btn:hover {
  background: linear-gradient(135deg, #5a1515 0%, var(--accent-color) 100%);
  transform: scale(1.05);
}

.booking-phone {
  display: block;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

.booking-phone:hover {
  color: #c28447;
}

.booking-phone.hidden {
  display: none;
}

.booking-note {
  display: none; /* Skrytý na desktopu */
  text-align: center;
  font-size: 15px;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 25px;
  padding: 12px 20px;
  background-color: #fff9f0;
  border-radius: 8px;
  border-left: 4px solid #c28447;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responzivní booking pro mobily */
@media (max-width: 768px) {
  .booking-grid {
    gap: 15px;
  }

  .booking-box {
    max-width: 100%;
  }

  .booking-title {
    font-size: 15px;
  }

  .booking-note {
    display: block; /* Zobrazit pouze na mobilech, kde funguje auto-call */
  }
}

/* ========================================
   Kontakt sekce
   ======================================== */
.contact {
  background-color: var(--white);
  padding: 80px 0;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 60px;
  width: 220px;
  height: 220px;
  background-image: url("../assets/images/ruze1.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-15deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info {
  color: var(--text-dark);
}

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-detail p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.contact-detail p a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail p a:hover {
  color: #c28447;
  text-decoration: underline;
}

.contact-detail em {
  color: var(--text-light);
  opacity: 0.7;
}

.social-links-simple {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.social-links-simple a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.social-links-simple a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

.contact-map {
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Více informací sekce (Accordion)
   ======================================== */
.more-info {
  background-color: #f5f0e8;
  padding: 80px 0;
  position: relative;
}

.more-info::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 30px;
  width: 200px;
  height: 200px;
  background-image: url("../assets/images/ruze1.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.more-info::after {
  content: "";
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 180px;
  height: 180px;
  background-image: url("../assets/images/ruze1.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  background-color: var(--white);
  border: none;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-color);
  text-align: left;
}

.accordion-header:hover {
  background-color: #fafafa;
}

.accordion-header span:first-child {
  flex: 1;
}

.accordion-icon {
  font-size: 28px;
  font-weight: 300;
  color: #c28447;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding: 20px 30px 30px;
}

.accordion-intro {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.accordion-intro h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.accordion-intro .accent-text {
  font-style: italic;
  color: #c28447;
  font-size: 16px;
  margin-bottom: 0;
}

.accordion-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.accordion-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.accordion-content ul {
  margin: 15px 0 15px 25px;
  padding: 0;
}

.accordion-content ul li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 8px;
  position: relative;
}

.accordion-content ul li::marker {
  color: #c28447;
}

.accordion-content strong {
  color: var(--accent-color);
  font-weight: 600;
}

.accordion-content em {
  color: var(--text-light);
  opacity: 0.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
}

.footer p {
  font-size: 14px;
  opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: rgba(212, 165, 116, 0.3);
    padding: 20px;
    padding-bottom: 30px;
    transition: var(--transition);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
  }

  .logo img {
    height: 50px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Hero - text na střed */
  .hero-content {
    text-align: center;
  }

  /* O nás - skrýt obrázek */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  /* Ostatní gridy */
  .solarium-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services carousel - menší šipky, aby nepřekrývaly text */
  .services-carousel {
    height: 80vh;
    min-height: 500px;
  }

  .service-slide-content {
    padding: 20px 80px;
  }

  .service-slide-content h3 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .service-slide-content p {
    font-size: 16px;
  }

  .carousel-btn {
    padding: 10px;
  }

  .carousel-btn span {
    font-size: 40px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  /* Hero video responzivita */
  .hero-video {
    min-width: 100%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

  /* Obrázky neklikatelné */
  img,
  video {
    pointer-events: none;
    user-select: none;
  }

  section {
    padding: 60px 0;
  }

  .solarium-video video {
    max-width: 100%;
    max-height: 500px;
    height: 500px;
  }

  .contact-map iframe {
    height: 350px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .social-links {
    flex-direction: column;
  }

  .social-link {
    justify-content: center;
  }

  /* Accordion responsive */
  .accordion-header {
    padding: 20px 20px;
    font-size: 18px;
  }

  .accordion-icon {
    font-size: 24px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 15px 20px 25px;
  }

  .accordion-intro h4 {
    font-size: 18px;
  }

  .accordion-content h4 {
    font-size: 16px;
  }

  .accordion-content p,
  .accordion-content ul li {
    font-size: 16px;
  }

  /* Růže - zmenšení na mobilech */
  .about::before {
    width: 120px;
    height: 120px;
    top: 20px;
    right: 20px;
    opacity: 0.25;
  }

  .more-info::before {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 15px;
    opacity: 0.2;
  }

  .more-info::after {
    width: 90px;
    height: 90px;
    bottom: 40px;
    right: 15px;
    opacity: 0.2;
  }

  .contact::before {
    width: 110px;
    height: 110px;
    bottom: 30px;
    left: 20px;
    opacity: 0.25;
  }

  /* Pricing responsive */
  .pricing-accordion-header {
    padding: 20px 20px;
    font-size: 18px;
  }

  .pricing-accordion-icon {
    font-size: 28px;
  }

  .pricing-grid-two {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 15px 20px;
  }

  .pricing-column {
    padding: 0;
  }

  .pricing-column-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .pricing-category-title {
    font-size: 18px;
  }

  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 0;
  }

  .pricing-item-name {
    font-size: 16px;
  }

  .pricing-item-price {
    font-size: 15px;
  }

  .pricing-note {
    padding: 12px 15px;
  }

  .pricing-note p {
    font-size: 16px;
  }

  .pricing-footer {
    padding: 20px;
    margin-top: 30px;
  }

  .pricing-footer p {
    font-size: 14px;
  }

  .pricing-footer strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-video {
    min-width: 100%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

  .service-slide-content {
    padding: 20px 60px;
  }

  .service-slide-content h3 {
    font-size: 40px;
  }

  .service-slide-content p {
    font-size: 14px;
  }

  .carousel-btn span {
    font-size: 30px;
  }

  .carousel-btn-prev {
    left: 5px;
  }

  .carousel-btn-next {
    right: 5px;
  }
}

/* ========================================
   Novinka badge
   ======================================== */
.novinka-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c28447 0%, #d4a574 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(194, 132, 71, 0.4);
  animation: pulse-novinka 2s ease-in-out infinite;
  font-family: var(--font-heading);
}

@keyframes pulse-novinka {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(194, 132, 71, 0.4);
  }
  50% {
    box-shadow: 0 2px 12px rgba(194, 132, 71, 0.7);
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

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

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