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


  h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
  }
  body {
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
     width: 100%;   
  }
  .logo img {
    height: 50px; /* uprav podle potřeby */
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }

  /* Updated: Nav Links - Subtle underline effect */
  .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    position: relative; /* Needed for the ::after pseudo-element */
    transition: color 0.3s ease-out; /* Smooth color transition */
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px; /* Adjust distance from text */
    left: 0;
    background-color: #cb6ce6; /* Purple underline */
    transition: width 0.3s ease-out; /* Smooth width transition for underline */
  }

  .nav-links a:hover {
    color: #cb6ce6; /* Change text color to purple on hover */
  }

  .nav-links a:hover::after {
    width: 100%; /* Expand underline on hover */
  }

  .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
    z-index: 3000;
  }

  /* Barva hamburgeru při aktivním menu */
  .menu-toggle.active {
    color: #cb6ce6;
  }

  /* MOBILNÍ MENU */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        padding-top: 4rem;
        gap: 1.5rem;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
        z-index: 2000;

        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;

        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
      }

      /* Styl tlačítek - odkazů */
      .nav-links a {
        display: block;
        width: 80%;
        margin: 0 auto;
        padding: 0.8rem 1rem;
        border-radius: 25px;
        background: #f3f3f3;
        color: #000000;
        font-weight: 600;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
      }

      .nav-links a:hover,
      .nav-links a:focus {
        background-color: #a955d1; /* tmavší fialová při hoveru */
        box-shadow: 0 6px 12px rgba(169, 85, 209, 0.5);
        transform: translateY(-3px);
        color: #fff;
        outline: none;
      }
      .nav-links a::after {
        content: none; /* Hide underline on mobile menu links */
      }
    }
  }

  header {
    padding-top: 80px;
    text-align: center;
    margin-bottom: 5rem;
  }
  header h1 {
    font-size: 3rem;
    font-weight: 600;
  }
  header p {
    font-size: 1.2rem;
    color: #666;
  }
  /* Updated: CTA Button - Scale and Shadow */
  .cta {

    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #cb6ce6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(203, 108, 230, 0.3);
    border: none;
  }
  .cta:hover {
    background: #a955d1;
    transform: translateY(-3px) scale(1.02); /* Slight lift and scale */
    box-shadow: 0 6px 12px rgba(169, 85, 209, 0.4);
  }

  .services,
  .gallery,
  .contact {
    max-width: 900px;
    margin: 0 auto 5rem auto;
  }
  .services h2,
  .gallery h2,
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
    .service-list {
  display: grid;
  gap: 1.5rem; /* Zvětšena mezera pro lepší vizuál */
  /* Default na PC: 2 sloupce */
  grid-template-columns: repeat(2, 1fr); /* Toto zajistí 2 sloupce na větších obrazovkách */
  max-width: 900px; /* Omezí šířku mřížky, aby se vycentrovala */
  margin: 0 auto; /* Vycentruje samotnou mřížku služeb */
}
.services .service h3 i {
  font-size: 1.5rem;
  color: #cb6ce6; /* Ponecháme fialovou nebo změníme na #111 */
  transition: color 0.3s ease; /* Přidáme přechod pro barvu ikony */
  
}
.service:hover h3,
.service:hover h3 i { /* Když najedeme na kartu, změní se barva nadpisu a ikony */
  color: #ffffff; /* Změní barvu textu a ikony na bílou */
}

@media (max-width: 768px) { /* Od tohoto breakpointu níže se změní rozložení */
  .service-list {
    /* Tablet / Menší obrazovky: 1 sloupec */
    grid-template-columns: 1fr;
    padding: 0 1rem; /* Může přidat malé odsazení na okrajích */
  }
  
}

/* Starší @media (max-width: 600px) už není potřeba pro service-list,
   protože 768px to už přepíná na 1 sloupec. */
  /* Updated: Service Card - Background color, border and slight lift */
  .service {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid transparent; /* Add a transparent border initially */
    transition: background-color 0.3s, color 0.3s, transform 0.2s ease, border-color 0.3s ease;
    cursor: pointer;
    color: #111;
    user-select: none;
  }

  .service:hover {
    background-color: #cb6ce6; /* fialová */
    color: #fff;
    transform: translateY(-5px); /* Lift the card */
    border-color: #a955d1; /* Add a subtle border color */
  }

  /* Gallery Grid Styling */
  .gallery-grid {
    display: grid;
    gap: 1rem;
    /* Default for PC: 3 columns */
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid img {
    width: 100%; /* Ensures images fill their grid cell */
    height: 180px; /* Set a fixed height for smaller display */
    object-fit: cover; /* Crops the image to fill the 4x3 ratio without distortion */
    aspect-ratio: 4 / 3; /* Explicitly sets the 4x3 aspect ratio */
    border-radius: 10px;
  }

  @media (max-width: 992px) { /* Adjust breakpoint for tablets */
    .gallery-grid {
      /* Tablet: 2 columns */
      grid-template-columns: repeat(2, 1fr);
    }
    /* Hide the 3rd image on tablets if there are more than 2 */
    .gallery-grid img:nth-child(3n) { /* This targets every 3rd image */
      display: none;
    }
    /* Make sure images after the 2nd one are displayed correctly if there are more than 2 total but less than 3 in the hidden condition above */
    .gallery-grid img:nth-child(-n + 2) {
      display: block;
    }
  }

  @media (max-width: 600px) { /* Adjust breakpoint for phones */
    .gallery-grid {
      /* Phone: 1 column */
      grid-template-columns: 1fr;
    }
    /* Ensure all images are displayed on phones */
    .gallery-grid img {
      display: block;
    }
  }


  /* Contact Section Styling */
.contact p a {
  color: #cb6ce6; /* Your brand purple */
  text-decoration: none; /* Remove underline by default */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.contact p a:hover {
  color: #a955d1; /* Darker purple on hover */
  text-decoration: underline; /* Add underline on hover for clarity */
}

/* You might already have a general <a> tag style,
   ensure this specific rule for .contact p a is more specific
   or placed after any general link styles. */
  .contact p {
    margin-bottom: 0.5rem;
  }
  iframe {
  width: 90%; /* Ensures it takes full available width */
  height: 300px;
  margin-top: 1rem;
  border-radius: 10px;
  /* --- NEW STYLES BELOW --- */
  max-width: 1000px; /* Matches the max-width of your contact form */
  display: block; /* Important: iframes are inline by default, change to block to apply margin:auto */
  margin-left: auto; /* Centers the iframe */
  margin-right: auto; /* Centers the iframe */
}
  footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #aaa;
  }
  @media (max-width: 600px) {
    header h1 {
      font-size: 2rem;
    }
    .cta {
      font-size: 0.9rem;
    }
  }


.btn-pricing {
  width: 90%;
  display: block; /* Změněno z inline-block na block, aby se mohlo centrovat marginem */
  margin: 2rem auto 0 auto; /* Vycentruje tlačítko a přidá horní okraj */
  padding: 0.75rem 2rem;
  background-color: #cb6ce6;
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(203, 108, 230, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  /* Přidáme max-width, aby se na velkých obrazovkách neroztahovalo moc */
  max-width: 400px; /* Nastavte podle potřeby, aby nebylo moc široké */
}

.btn-pricing:hover,
.btn-pricing:focus {
  background-color: #a955d1;
  box-shadow: 0 6px 12px rgba(169, 85, 209, 0.5);
  transform: translateY(-3px);
  outline: none;
}

  html {
    scroll-padding-top: 80px; /* něco nad výšku navbaru, aby to odskočilo */
  }

  html {
    scroll-behavior: smooth;
  }
  .about-section {
    width: 90%;
    padding: 4rem 2rem 2.5rem 2rem;
    background: #f0f0f0; /* jemně fialové pozadí */
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(203, 108, 230, 0.15);
    padding: 2.5rem 2rem;
    font-size: 1.15rem;
    color: #4b3e72; /* tmavší fialová */
    line-height: 1.7;
    font-weight: 400;
    text-align: left; /* změněno z center na left */
    max-width: 900px;
    margin: 0 auto 5rem auto;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Add transition for transform */
  }

  .about-section h2 {
    font-size: 1.75rem; /* menší nadpis */
    font-weight: 700;
    color: #000000; /* černý nadpis */
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    text-shadow: none; /* odstraněný stín */
    padding-left: 10px;
    padding-top: 10px;
  }


  /* New: Hover effect for about section */
  .about-section:hover {
    box-shadow: 0 12px 30px rgba(203, 108, 230, 0.25); /* More prominent shadow */
    transform: translateY(-5px); /* Slight lift */
  }

  .package.interior {
    background-color: #f5f5ff;
    border-color: #aaaaff;
    color: #444488;
  }
/* In your style.css, find these rules and update them */

/* In your style.css, find these rules and update them */

/* Initially hide the images with this class */
.hidden-gallery-item {
  display: none; /* Start completely hidden, removed from flow */
  opacity: 0;
  max-height: 0; /* Ensures no height is taken up */
  overflow: hidden;
  pointer-events: none;
  transform: translateY(10px); /* Initial state for animation */
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease; /* Transition for collapse/expand */
}

/* When the "show" class is added (by JavaScript), make them visible */
.hidden-gallery-item.show-item {
  display: block; /* Make them part of the flow for animation */
  opacity: 1;
  max-height: 500px; /* Sufficient height to show content; adjust if your images are taller */
  pointer-events: auto;
  transform: translateY(0);
}


/* IMPORTANT: Review your media queries for gallery-grid img */

@media (max-width: 720px) { /* Adjust breakpoint for tablets */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    /* --- ADD THESE LINES TO CENTER THE ENTIRE GALLERY-GRID --- */
    margin-left: auto;
    margin-right: auto;
    /* You can also use the shorthand: margin: 0 auto; */
  }
  .gallery-grid img:nth-child(3) { /* Changed from 3n to 3 to target specifically the 3rd child */
    display: none; /* Hide the 3rd image on tablets */
  }
  /* Ensure other images remain visible on tablet */
  .gallery-grid img:nth-child(-n + 2), /* Ensure first two are always visible if not hidden-gallery-item */
  .gallery-grid .hidden-gallery-item.show-item { /* Ensure shown items are block */
      display: block;
  }
}

/* For phones, ensure it's still 1 column */
@media (max-width: 600px) { /* Adjust breakpoint for phones */
  .gallery-grid {
    grid-template-columns: 1fr;
    /* The margin: 0 auto; from the 720px media query will naturally apply here too
       unless you explicitly override it. So, often no need to re-declare. */
  }
  /* Ensure all images display on phones, overriding any tablet-specific hides */
  .gallery-grid img {
    display: block !important; /* Use !important to override tablet display: none for 3rd image */
  }
}
















/* Contact Form Styling - More Prominent */
.contact-form-container {
  width: 90%;
  background: #ffffff; /* Keep the background white as requested */
  padding: 2.8rem;
  border-radius: 16px;
  margin-top: 3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); /* Adjusted box-shadow to be more uniform */
  border: 1px solid #dcdcdc;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-container h3 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #cb6ce6; /* CHANGE: Make the heading purple */
  text-align: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1.8rem;
}

/* Base styling for all inputs and textarea */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #333;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Focus state for all inputs and textarea - ALREADY PURPLE, GOOD! */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #cb6ce6; /* Your brand purple border */
  box-shadow: 0 0 0 5px rgba(203, 108, 230, 0.3);
  background-color: #ffffff;
  outline: none;
}

/* Specific styling for the SELECT dropdown */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* CHANGE: Make the custom dropdown arrow purple */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23cb6ce6"><polygon points="0,0 12,0 6,12"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 0.9em auto;
  cursor: pointer;
}

/* Style for the default/disabled option in select (placeholder effect) */
.form-group select option[disabled]:first-child {
  color: #a0a0a0;
}
/* Ensure chosen option is not grey */
.form-group select:valid {
  color: #333;
}


/* Placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8a8a8;
  opacity: 1;
}


.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button Styling - ALREADY PURPLE, GOOD! */
.contact-form .cta {
  width: 90%;
  max-width: 350px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 1.1rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 35px;
  background-color: #cb6ce6; /* Your brand purple */
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(203, 108, 230, 0.45);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-form .cta:hover {
  background: #a955d1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(169, 85, 209, 0.5);
}

/* Media Queries for form responsiveness */
@media (max-width: 600px) {
  .contact-form-container {
    padding: 1.8rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  .contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #cb6ce6; /* CHANGE: Ensure heading is purple on mobile too */
  }

  .form-group {
    margin-bottom: 1.3rem;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group textarea,
  .form-group select {
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .form-group select {
    /* CHANGE: Ensure custom dropdown arrow is purple on mobile */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23cb6ce6"><polygon points="0,0 12,0 6,12"/></svg>');
    background-position: right 1.1rem center;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .contact-form .cta {
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    max-width: 100%;
    border-radius: 30px;
  }
}

/* Styling for the designer link in the footer */
.footer-designer-link {
  color: #cb6ce6; /* Your brand's purple color */
  text-decoration: none; /* Remove underline by default */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-designer-link:hover {
  color: #a955d1; /* A slightly darker purple on hover */
  text-decoration: underline; /* Add underline on hover */
}



/* --- PACKAGES CONTAINER & CARDS (Further Adjusted for consistency) --- */
.packages-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.package {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  transition: color 0.35s ease;
  font-size: 1.5rem;
}

.package ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style: disc;
  flex-grow: 1;
}

.package li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Individual colors for each package card - NOW EVEN SOFTER FOR BETTER HARMONY */
.package.silver {
  background-color: #fcfcfc; /* Very light grey, almost white */
  border-color: #e6e6e6; /* Soft grey border */
  color: #555;
}

.package.gold {
  background-color: #fefdf5; /* Softer, creamier yellow */
  border-color: #ffe08a; /* Lighter gold border */
  color: #c09000; /* Softer gold text */
}

.package.diamond {
  background-color: #f5fafd; /* Very subtle blue */
  border-color: #aed9f9; /* Lighter blue border */
  color: #2e83b8; /* Softer blue text */
}

.package.interior {
  background-color: #f8f8ff; /* Slightly refined light purple for interior */
  border-color: #d8d8ff; /* Matching border */
  color: #5d5db8; /* Matching text color */
}


/* Package Card Hover effect */
.package:hover {
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: #cb6ce6;
}
.package.silver:hover { color: #111; }
.package.gold:hover { color: #111; }
.package.diamond:hover { color: #111; }
.package.interior:hover { color: #111; }


/* --- PRICING TABLE STYLING (Refined Colors and Style) --- */
.price-table-section {
  padding: 0 1rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.price-table-container {
  max-width: 904px; /* Matches total width of 3 package cards + gaps */
  margin: 0 auto;
  background-color: #fff; /* Keep base white for container */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Consistent with package card default shadow */
  border: 1px solid #e0e0e0; /* Consistent with package card default border */
}

.price-table-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.price-table-container th,
.price-table-container td {
  padding: 1.2rem 1rem;
  border: none; /* Removed all cell borders for a cleaner look */
  font-size: 1rem;
  color: #333;
  /* Add subtle horizontal borders only */
  border-bottom: 1px solid #f0f0f0;
}
/* No bottom border on the last row of the body */
.price-table-container tbody tr:last-child td {
  border-bottom: none;
}


/* Header row styling - More prominent, but sleek */
.price-table-container thead th {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  background-color: #cb6ce6; /* Your brand purple */
  position: sticky; /* Makes header stick when scrolling if table is long */
  top: 0;
  z-index: 1; /* Ensures header stays above content */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow for sticky header */
}

/* Specific header border-radius (corners of the table top) */
.price-table-container thead tr {
    background-color: #cb6ce6;
}
.price-table-container .header-balicek {
  border-top-left-radius: 12px;
}
.price-table-container .header-velky-vuz {
  border-top-right-radius: 12px;
}


/* Row colors - MATCHING THE PACKAGE CARDS EXACTLY with softer shades */
.price-table-container .row-silver td {
  background-color: #fcfcfc;
  color: #555;
}

.price-table-container .row-gold td {
  background-color: #fefdf5;
  color: #c09000;
}

.price-table-container .row-diamond td {
  background-color: #f5fafd;
  color: #2e83b8;
}

/* Package name column styling in table */
.price-table-container .package-name {
  font-weight: 600;
  text-align: left;
  padding-left: 2rem;
  font-size: 1rem; /* Consistent with other cell content */
  color: #111; /* Stronger color for emphasis */
}

/* Hover effect for data rows - More subtle */
.price-table-container tbody tr {
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.price-table-container tbody tr:hover {
  transform: translateY(-3px); /* Slightly more lift for impact */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* More visible shadow on hover */
  /* Remove individual cell background change on hover, let the row background handle it */
}
/* Ensure row colors are respected on hover by changing the TR background */
.price-table-container tbody tr.row-silver:hover { background-color: #f2f2f2; }
.price-table-container tbody tr.row-gold:hover { background-color: #fff5cc; }
.price-table-container tbody tr.row-diamond:hover { background-color: #dff0f9; }


/* Specific border-radius for bottom corners of the table */
.price-table-container tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.price-table-container tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}



/* --- RESPONSIVE TABLE FOR SMALLER SCREENS --- */
@media (max-width: 600px) {
  /* Packages container adjustments */
  .packages-container {
    display: block; /* Stays as block for easier centering of children */
    margin-bottom: 2rem;
    padding: 0; /* Remove padding here to directly control package margins */
    width: 100%;
  }

  .package {
    /* New styling for smaller appearance on phone */
    width: calc(100% - 2rem); /* Takes 100% of parent minus 2rem on each side */
    max-width: 460px; /* Even smaller max-width for the cards themselves */
    padding: 1.5rem; /* Slightly reduced internal padding */
    margin: 0 auto 1.5rem auto; /* Center the package card itself and add bottom margin */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Slightly softer shadow for smaller cards */
  }

  /* ... rest of your mobile pricing table styles ... */
  /* (all the .price-table-container rules for mobile should remain as they were) */
  


  /* Price table container adjustments for mobile */
  .price-table-container {
    border-radius: 10px;
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .price-table-container table {
    display: block;
  }

  .price-table-container thead {
    display: none;
  }

  .price-table-container tbody {
    display: block;
    width: 100%;
  }

  .price-table-container tr {
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0f0f0;
  }

  .price-table-container tr:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  /* Specific row colors on mobile - ENSURE CONSISTENCY with softer shades */
  .price-table-container .row-silver {
    background-color: #fcfcfc;
  }
  .price-table-container .row-gold {
    background-color: #fefdf5;
  }
  .price-table-container .row-diamond {
    background-color: #f5fafd;
  }
  /* Interior specific mobile row colors */
  .price-table-container .row-clean {
    background-color: #f8f8ff;
  }
  .price-table-container .row-average {
    background-color: #fefdf5;
  }
  .price-table-container .row-heavily-contaminated {
    background-color: #f5fafd;
  }


  /* Ensure background changes on hover/tap for each card */
  .price-table-container .row-silver:hover { background-color: #f2f2f2; }
  .price-table-container .row-gold:hover { background-color: #fff5cc; }
  .price-table-container .row-diamond:hover { background-color: #dff0f9; }
  /* Interior specific mobile hover colors */
  .price-table-container .row-clean:hover { background-color: #e0e0ff; }
  .price-table-container .row-average:hover { background-color: #fff5cc; }
  .price-table-container .row-heavily-contaminated:hover { background-color: #dff0f9; }


  .price-table-container td {
    display: block;
    border: none; /* No vertical borders */
    border-bottom: 1px solid #f8f8f8; /* Very subtle horizontal separator */
    position: relative; /* Keep for pseudo-elements */
    padding: 0.8rem 1.5rem; /* Consistent padding for content */
    text-align: right; /* Align value to the right */
    font-size: 1rem;
    color: #333;
    padding-left: 50%; /* Make space for the label on the left */
  }
  /* Remove border for the last cell in a mobile card */
  .price-table-container tr td:last-child {
    border-bottom: none;
  }


  /* Data labels using pseudo-elements - REFINED POSITIONING & STYLING */
  .price-table-container td:not(:first-child):before { /* Target only data cells, not the package name */
    content: attr(data-label); /* THIS IS THE KEY: pulls content from the data-label attribute */
    position: absolute;
    left: 1.5rem; /* Align left with cell padding */
    width: calc(50% - 2.5rem); /* Adjust width to make space for right-aligned value */
    white-space: nowrap;
    font-weight: 600; /* Make labels bolder */
    text-align: left; /* Align label to the left */
    color: #666; /* Darker grey for labels */
    font-size: 0.9rem; /* Slightly smaller font for labels */
    top: 50%; /* Vertically center the label */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
}


  /* Special styling for the first cell (Package Name) - Adjusted colors */
  .price-table-container td:first-child {
    background-color: #fefefe; /* Even lighter background for the title part */
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.4rem;
    color: #111;
    border-bottom: 1px solid #ededed; /* Softer separator */
  }

  .price-table-container td:first-child:before {
    display: none; /* Hide the generic data-label for the package name cell */
  }
  } 


  /* --- Obecné styly pro sekce a text --- */
.section-description {
  font-size: 1.15rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto 3rem auto;
  line-height: 1.6;
}

/* --- Hero sekce vylepšení --- */
#hero {
  z-index: 1;
  padding-top: 80px; /* Aby se nepřekrýval s navbarem */
  text-align: center;
  margin-bottom: 5rem;
  position: relative; /* Pro umístění hero obrázku, pokud ho dáte jako pozadí */
  min-height: 550px; /* Zajistí dostatek místa, i když není obrázek */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Pro případné přesahy obrázku */
      width: 100%; /* Explicitly ensure it's 100% of its parent (body/html) */

  
}
.hero-content {
    z-index: 1; /* Ensures content is above bubbles */
    text-align: center;
}

#hero h1 {
  font-size: 4.5rem; /* Větší a výraznější */
  font-weight: 700;
  color: #111; /* Může být i vaše fialová, pokud chcete více brandu hned nahoře */
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
   margin-top: 60px
}

#hero .subtitle {
  font-size: 1.4rem; /* Větší podnadpis */
  color: #666;
  margin-bottom: 2.5rem; /* Více místa před CTA */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem; /* Mezera mezi tlačítky */
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem; /* Více místa pod tlačítky */
  flex-wrap: wrap; /* Pro responzivitu */
}

/* Primary CTA Button (hlavní výzva k akci) */
.primary-cta {
  background: #cb6ce6; /* Vaše fialová */
  color: white;
  padding: 1rem 2.5rem; /* Větší polstrování */
  font-size: 1.3rem; /* Větší písmo */
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(203, 108, 230, 0.45);
  border: none;
  cursor: pointer;
}

.primary-cta:hover {
  background: #a955d1;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(169, 85, 209, 0.5);
}

/* Secondary CTA Button (sekundární výzva k akci) */
.secondary-cta {
  background: transparent; /* Průhledné pozadí */
  color: #cb6ce6; /* Fialový text */
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid #cb6ce6; /* Fialový rámeček */
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.secondary-cta:hover {
  background: #cb6ce6; /* Fialové pozadí */
  color: white; /* Bílý text */
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(203, 108, 230, 0.3);
}

.main-hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    margin-top: 3rem; /* Mezera mezi textem a obrázkem */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



/* --- Sekce Reference --- */
.reviews-section {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 sloupce na větších obrazovkách, responzivní */
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  width: 90%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.review-card .stars {
  color: #cb6ce6; /* Zlatá barva pro hvězdičky */
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.review-card .review-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-card .reviewer-name {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
  margin-top: auto; /* Přilepí jméno na spodek, pokud je text různě dlouhý */
}

/* --- Kontaktní informace v sekci Kontakt --- */
.contact-info-line {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.contact-info-line i {
    color: #cb6ce6; /* Fialová pro ikony */
    font-size: 1.3rem;
}

.contact-info-line a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-line a:hover {
    color: #a955d1;
    text-decoration: underline;
}

/* --- Responzivní úpravy --- */
@media (max-width: 992px) {
  #hero h1 {
    font-size: 2.8rem;
     margin-top: 60px;
  }
  #hero .subtitle {
    font-size: 1.2rem;
  }
  .primary-cta, .secondary-cta {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 450px;
    margin-bottom: 3rem;
  }
  #hero h1 {
    font-size: 2.2rem;
     margin-top: 60px
  }
  #hero .subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-ctas {
    flex-direction: column; /* Tlačítka pod sebou na mobilu */
    gap: 1rem;
  }
  .primary-cta, .secondary-cta {
    width: 90%; /* Více se roztáhnou */
    max-width: 300px;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Služby - ikony a text */
  /* Původní styl pro nadpisy služeb - změníme barvu na tmavší */
.services .service h3 {
  font-size: 1.3rem;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  color: #111; /* Změněno na tmavou barvu, nebude fialová defaultně */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease; /* Přidáme přechod pro barvu textu */
}

/* Barva ikony (můžeme nechat fialovou, nebo změnit s nadpisem) */
.services .service h3 i {
  font-size: 1.5rem;
  color: #cb6ce6; /* Ponecháme fialovou nebo změníme na #111 */
  transition: color 0.3s ease; /* Přidáme přechod pro barvu ikony */
}

/* Při HOVERU na CELOU KARTU .service */
.service:hover h3,
.service:hover h3 i { /* Když najedeme na kartu, změní se barva nadpisu a ikony */
  color: #ffffff; /* Změní barvu textu a ikony na bílou */
}
  .services .service p {
    font-size: 0.9rem;
  }

  .review-grid {
    grid-template-columns: 1fr; /* Jeden sloupec na mobilu */
    padding: 0 1rem;
  }

  .contact-info-line {
      flex-direction: column; /* Kontaktní info pod sebou na mobilu */
      align-items: center;
      gap: 0.5rem;
  }
  .contact-info-line i {
      margin-right: 0; /* Odebere mezeru, pokud je vedle textu */
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.8rem;
     margin-top: 60px
  }
  #hero .subtitle {
    font-size: 0.9rem;
  }
  .primary-cta, .secondary-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}


/* --- Centrování hlavních nadpisů sekcí --- */
.services h2,
.gallery h2,
.reviews-section h2,
.contact h2,
.about-section h2 { /* Přidání about-section h2 sem */
  text-align: center; /* Vycentrování textu nadpisu */
  max-width: 900px; /* Omezí šířku nadpisu pro lepší čitelnost */
  margin-left: auto; /* Vycentrování samotného blokového prvku h2 */
  margin-right: auto; /* Vycentrování samotného blokového prvku h2 */
}

/* --- Centrování popisků sekcí --- */
.section-description {
  width: 90%;
  text-align: center;
  max-width: 700px; /* Omezí šířku popisku pro lepší čitelnost */
  margin: 0.5rem auto 3rem auto; /* Vycentruje blokový prvek a přidá okraje */
}

/* --- Centrování nadpisu "O Nás" (již bylo v podstatě hotovo, ale zopakování pro jistotu) --- */
.about-section {
    text-align: center; /* Vycentruje veškerý text uvnitř sekce O nás */
}
/* Aby se nadpis 'O Nás' choval jako ostatní */
.about-section h2 {
    padding-left: 0; /* Odstraní původní odsazení */
    padding-top: 0; /* Odstraní původní odsazení */
    /* Všechny ostatní centrovací styly již definovány výše */
}
/* A text uvnitř 'O Nás' */
.about-section p {
    padding-left: 0; /* Odstraní původní odsazení */
    text-align: center; /* Zajistí centrování textu */
    max-width: 700px; /* Omezí šířku textu pro lepší čitelnost */
    margin: 0 auto 1rem auto; /* Vycentruje blokový prvek odstavce */
}

/* --- Centrování kontaktních informací v sekci Kontakt --- */
.contact-info-line {
    justify-content: center; /* Zajistí centrování obsahu uvnitř flexboxu */
}

/* --- Styly pro hlavičku stránky ceníku (page-header) --- */
.page-header {
  padding-top: 120px; /* Více místa nahoře, aby se nepřekrýval s navbarem */
  padding-bottom: 4rem; /* Více místa dole */
  text-align: center;
  background-color: #f8f8f8; /* Jemné pozadí */
  border-bottom: 1px solid #eee; /* Jemná linka dole */
  margin-bottom: 3rem; /* Mezera pod hlavičkou */
}

.page-header .header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem; /* Odsazení na okrajích */
}

.page-header h1 {
  font-size: 3.2rem; /* Větší a výraznější */
  font-weight: 700;
  color: #111;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.page-header .subtitle {
  font-size: 1.3rem; /* Větší podnadpis */
  color: #666;
  margin-bottom: 2rem; /* Více místa před odkazem */
}

.back-to-main-link {
  display: inline-block;
  color: #cb6ce6; /* Vaše fialová */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #cb6ce6;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.back-to-main-link:hover {
  background-color: #cb6ce6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(203, 108, 230, 0.3);
}

/* --- Styly pro nadpisy sekcí (section-heading) --- */
.section-heading {
  font-size: 2.5rem; /* Větší nadpis */
  font-weight: 700;
  color: #111; /* Tmavá barva */
  text-align: center;
  margin-bottom: 2.5rem; /* Více místa pod nadpisem */
  margin-top: 0; /* Zajistí, že nebude mít zbytečný horní okraj */
}

/* --- Konzistentní mezery pro sekce --- */
.section-spacing {
  padding: 3rem 2rem; /* Vertikální a horizontální odsazení pro každou sekci */
  max-width: 1100px; /* Omezí šířku obsahu sekce */
  margin: 0 auto; /* Vycentruje sekci */
}

/* Upravíme stávající .packages-container, aby byl konzistentní s novými mezerami */
.packages-container {
  /* Původní styly */
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* DŮLEŽITÉ: Odstraníme margin-bottom a padding, protože to řeší .section-spacing */
  margin-bottom: 0; /* Nastavíme na 0, aby se nekřížily mezery */
  padding: 0; /* Nastavíme na 0 */
  /* NOVÉ PRO CENTROVÁNÍ CELÉHO KONTEJNERU BALÍČKŮ */
  max-width: 1000px; /* Omezí maximální šířku kontejneru balíčků */
  margin-left: auto; /* Vycentruje kontejner */
  margin-right: auto; /* Vycentruje kontejner */
}

/* Upravíme stávající .price-table-section */
.price-table-section {
  /* Původní styly */
  margin-top: 0; /* Nastavíme na 0, protože to řeší .section-spacing */
  margin-bottom: 0; /* Nastavíme na 0 */
  padding: 0; /* Nastavíme na 0 */
}

/* Media Queries pro responzivitu nadpisů */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  .page-header .subtitle {
    font-size: 1.1rem;
  }
  .section-heading {
    font-size: 2rem;
  }
  .section-spacing {
    padding: 2rem 1.5rem; /* Menší odsazení na mobilu */
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header .subtitle {
    font-size: 1rem;
  }
  .section-heading {
    font-size: 1.8rem;
  }
}


/* --- Floating Bubbles CSS --- */

/* Ensure your existing #hero has these: */
#hero {
    position: relative;
    width: 100%;
    overflow: hidden !important; /* Critical for containing the bubbles */
    /* ... keep all your other existing #hero styles here */
}

.bubbles-container {
    position: absolute;
    width: 104vw; /* Wider than viewport to cover edges */
    left: -2vw;  /* Offset to center the wider container */

    height: 100%;
    top: 0;
    z-index: 0; /* Ensures bubbles are behind content */
    pointer-events: none; /* Allows clicks to pass through to content */
    overflow: hidden; /* Critical for containing the bubbles themselves */

    /* --- NEW: Gradient Mask for appearing effect --- */
    /* This creates a mask that is transparent at the bottom and gradually becomes opaque */
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
    /* You can adjust '15%' to control how high the fade-in zone is */
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0; /* Still starts with opacity 0 for the fade-in animation within the bubble itself */
    animation: bubble-float infinite ease-in-out; /* Base animation, JS adds specifics */

    /* --- Styles for Bubbly Look --- */
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.5), /* Inner highlight */
        0 0 10px rgba(0, 0, 0, 0.1); /* Subtle outer shadow for separation */

    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
                var(--bubble-bg-color, hsla(270, 70%, 70%, 0.4));

    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* --- Global Styles to Prevent Horizontal Overflow --- */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden !important;
    min-width: 0;
}

/* --- Keyframe Animation --- */
/* No changes needed here, as the mask handles the entry fade. */
/* The keyframe's opacity animation ensures they fade out at the top. */
@keyframes bubble-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0; /* Still starts invisible in case mask isn't supported, or for consistency */
    }
    10% {
        opacity: 1; /* Fade in during the first 10% of animation duration */
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x-end), var(--y-end)) scale(var(--scale-end));
        opacity: 0; /* Fade out at the end */
    }
}












.contact-info-line.social-icons {
  display: flex;
  flex-direction: row;         /* Make sure it's horizontal */
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 10px;
}

.contact-info-line.social-icons a {
  font-size: 2.2em;
  color: #c678dd; /* your purple color */
  text-decoration: none;
  flex-shrink: 0;
}

.contact-info-line.social-icons a:hover {
  color: #007bff;
}

.contact-info-line.social-icons {
  display: flex;
  flex-direction: row;         /* Make sure it's horizontal */
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 10px;
}

.contact-info-line.social-icons a {
  font-size: 2.2em;
  color: #c678dd; /* your purple color */
  text-decoration: none;
  flex-shrink: 0;
}

.contact-info-line.social-icons a:hover {
  color: #007bff;
}











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


/* --- Globální styly pro sekce a text (klíčové pro Ceník) --- */
.cenik {
    max-width: 1000px; /* Sjednocená maximální šířka pro obsah */
    margin: 0 auto 6rem auto; /* Sjednocené mezery mezi sekcemi */
    padding: 0 2rem; /* Sjednocené vnitřní polstrování */
}

/* Nadpisy v sekci Ceník */
.cenik .nadpis-sekce-hlavni {
    font-size: 2.8rem; /* Větší nadpisy sekcí */
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    font-weight: 700;
}
.cenik .nadpis-kategorie {
    font-size: 2.2rem; /* Větší podnadpisy sekcí */
    margin-bottom: 1.2rem;
    color: #cb6ce6; /* Změněno na fialovou */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Popisný text pod nadpisy sekcí */
.popis-sekce {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0.8rem auto 4rem auto; /* Větší mezery */
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Speciální zarovnání pro popisek kategorie */
.kategorie-popis {
    text-align: center; /* Vždy na střed na mobilu */
}
@media (min-width: 768px) {
    .kategorie-popis {
        text-align: left; /* Na desktopu vlevo */
    }
}

/* Kontejner pro max. šířku obsahu */
.kontejner-sirka-obsahu {
    max-width: 1000px; /* Stejná jako .cenik, pro konzistenci */
    margin-left: auto;
    margin-right: auto;
}


/* --- Sekce Ceník - Seznam balíčků (Grid) --- */
.seznam-balicku {
    display: grid;
    gap: 2.5rem; /* Větší mezera mezi kartami */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responzivní 2 sloupce */
    max-width: 900px; /* Omezí šířku mřížky, aby se vycentrovala */
    margin: 0 auto 4rem auto; /* Vycentruje mřížku služeb */
}

/* Základní styl pro každou kartu služby/balíčku */
.polozka-sluzby {
    background: #ffffff; /* Čistě bílé pozadí */
    padding: 2rem; /* Větší polstrování */
    border-radius: 12px; /* Zaoblenější rohy */
    border: 1px solid #e0e0e0; /* Jemný, světle šedý okraj */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    color: #333; /* Původní barva textu */
    user-select: none;
    display: flex; /* Použito pro flexbox uvnitř karty */
    flex-direction: column;
    justify-content: space-between; /* Obsah se roztáhne a tlačítko bude dole */
}

/* Hover efekt pro karty služeb/balíčků */
.polozka-sluzby:hover {
    /* background-color: #cb6ce6;  Tuto linku odstraňujeme, aby se zachovalo bílé pozadí */
    /* color: #fff;  Tuto linku odstraňujeme, aby se zachovala původní barva textu */
    transform: translateY(-8px); /* Výraznější zvednutí karty */
    box-shadow: 0 15px 30px rgba(203, 108, 230, 0.35); /* Výraznější purpurový stín */
    border-color: #a955d1; /* Tmavší purpurový okraj */
}

/* Nadpisy uvnitř karet balíčků */
.polozka-sluzby h3 {
    font-size: 1.7rem; /* Větší nadpis */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #cb6ce6; /* Změněno na fialovou */
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Speciální barva pro Vnitřek (Interior) balíček (karta) */
.balicek-karta.vnitrek {
    background-color: #f8f8ff; /* Velmi jemná, světle fialová */
    border-color: #d8d8ff; /* Odpovídající okraj */
    color: #5d5db8; /* Jemnější fialový text */
}

/* Hover efekt pro Vnitřek balíček (text v kartě) */

/* Styly pro text s cenou a dobou */
.informace-cena,
.informace-doba {
    font-size: 1.15rem; /* Mírně větší písmo */
    font-weight: 600;
    color: #cb6ce6; /* Purpurová barva pro ceny */
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.polozka-sluzby:hover .informace-cena,
.polozka-sluzby:hover .informace-doba {
    color: #cb6ce6; /* Původní barva */
}

/* Styly pro popisný text uvnitř karet */
.text-popisku {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1; /* Zajistí, že popisek zaplní dostupný prostor */
    font-family: 'Inter', sans-serif;
}

.polozka-sluzby:hover .text-popisku {
    color: #555; /* Původní barva */
}

/* Styly pro seznamy v kartách */
.polozka-sluzby ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem; /* Větší odsazení pro odrážky */
    list-style: disc;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.polozka-sluzby:hover ul {
    color: #555; /* Původní barva */
}

.polozka-sluzby ul li {
    margin-bottom: 0.4rem;
}

/* --- Tlačítko uvnitř karet (tlacitko-objednavka) --- */
.tlacitko-objednavka {
    width: 90%; /* Zůstává široké na kartě */
    display: block;
    margin: 1.5rem auto 0 auto; /* Vycentrování a horní okraj */
    padding: 0.8rem 2rem; /* Větší polstrování */
    background-color: #cb6ce6;
    color: white;
    text-align: center;
    font-weight: 600;
    border-radius: 30px; /* Kulatější */
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(203, 108, 230, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    font-size: 1.05rem; /* Trochu větší písmo */
    white-space: nowrap; /* Zabrání zalamování textu */
    font-family: 'Inter', sans-serif;
}

.tlacitko-objednavka:hover,
.tlacitko-objednavka:focus {
    background-color: #a955d1;
    box-shadow: 0 8px 20px rgba(169, 85, 209, 0.5);
    transform: translateY(-4px);
    outline: none;
}

/* --- Doplňkové služby k interiéru (doplnky-box) --- */
.doplnky-box {
    background-color: #ffffff; /* Čistě bílé pozadí */
    border-radius: 12px; /* Zaoblené rohy */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Jemný stín */
    padding: 2.5rem; /* Větší polstrování */
    margin-bottom: 4rem; /* Mezera pod boxem */
    text-align: center;
    border: 1px solid #e0e0e0; /* Jemný okraj */
}

.doplnky-box h4 {
    font-size: 2rem; /* Větší nadpis */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.doplnky-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.doplnky-box ul li {
    font-size: 1.15rem; /* Větší písmo */
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.doplnky-box ul li strong {
    font-weight: 700;
    color: #333; /* Tmavší pro důraz */
}

.doplnky-box ul li .hodnota-ceny {
    font-weight: 800; /* Extra tučnost pro cenu */
    color: #cb6ce6; /* Purpurová barva */
    font-size: 1.25rem; /* Větší písmo pro cenu */
}

/* --- Sekce Exteriér (sekce-vnejsku) --- */
.sekce-vnejsku {
    background-color: #ffffff; /* Čistě bílé pozadí */
    border-radius: 12px; /* Zaoblené rohy */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Jemný stín */
    padding: 2.5rem; /* Větší polstrování */
    display: flex;
    flex-direction: column; /* Mobile first: pod sebou */
    gap: 2.5rem; /* Větší mezera mezi obrázkem a textem */
    align-items: center; /* Centruje obsah vertikálně na mobilu */
    border: 1px solid #e0e0e0; /* Jemný okraj */
    margin-bottom: 6rem; /* Mezera pod sekcí */
}

@media (min-width: 768px) { /* Tablet a desktop */
    .sekce-vnejsku {
        flex-direction: row; /* Vedle sebe */
        text-align: left; /* Text se zarovná doleva */
    }
}

.sekce-vnejsku .obal-obrazku {
    width: 100%;
}

@media (min-width: 768px) {
    .sekce-vnejsku .obal-obrazku {
        width: 50%; /* Obrázek zabere polovinu šířky na desktopu */
    }
}

.sekce-vnejsku .obal-obrazku img {
    border-radius: 10px; /* Zaoblené rohy obrázku */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Jemný stín obrázku */
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sekce-vnejsku .obal-obsahu {
    width: 100%;
}

@media (min-width: 768px) {
    .sekce-vnejsku .obal-obsahu {
        width: 50%; /* Text zabere polovinu šířky na desktopu */
    }
}

/* --- Responzivní úpravy pro mobilní zobrazení v sekci Ceník --- */
@media (max-width: 600px) {
    /* Nadpisy v sekci Ceník na mobilu */
    .cenik .nadpis-sekce-hlavni {
        font-size: 2rem;
    }
    .cenik .nadpis-kategorie {
        font-size: 1.8rem;
    }
    .popis-sekce {
        font-size: 1rem;
        margin: 0.5rem auto 2.5rem auto;
    }

    /* Úpravy pro mobilní zobrazení karet balíčků */
    .seznam-balicku {
        display: block; /* Karty pod sebou */
        margin-bottom: 2rem;
        padding: 0;
        width: 100%;
    }
    .polozka-sluzby {
        width: calc(100% - 2rem); /* Šířka karty s odsazením */
        max-width: 400px; /* Maximální šířka karty na mobilu */
        padding: 1.5rem;
        margin: 0 auto 1.5rem auto; /* Vycentrování a mezera */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .polozka-sluzby h3 {
        font-size: 1.4rem;
    }
    .tlacitko-objednavka {
        width: 100%;
        max-width: 300px; /* Maximální šířka tlačítka na mobilu */
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }

    /* Úpravy pro mobilní zobrazení příplatků */
    .doplnky-box {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    .doplnky-box h4 {
        font-size: 1.6rem;
    }
    .doplnky-box ul li {
        font-size: 1rem;
    }
    .doplnky-box ul li .hodnota-ceny {
        font-size: 1.1rem;
    }

    /* Úpravy pro mobilní zobrazení sekce Exteriér */
    .sekce-vnejsku {
        padding: 1.8rem;
        margin-bottom: 4rem;
        gap: 1.8rem;
    }
}