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

        body {
            font-family: 'Montserrat', sans-serif;
            background: #f8f8f8;
            color: #333;
            line-height: 1.6;
        }

         /* Navigace */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0rem 0;
            transition: all 0.3s ease;
            background: #535848;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            width: 130px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .nav {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-left: 2rem;
            padding-right: 3rem;
        }

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

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 23px;
            transition: color 0.3s ease;
            cursor: pointer;
            position: relative;
        }

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

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }

        .underline-hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px; /* mírně dolů */
            height: 3px;
            width: 0;
            background-color: #f5d6a1; /* jemná světlejší barva */
            border-radius: 2px;
            transition: width 0.3s ease, background-color 0.3s ease;
        }


        .underline-hover:hover a {
            color: #f5d6a1; /* text se jemně zbarví */
            transform: translateY(-3px); /* mírný posun nahoru */
        }


        /* Dropdown styly */
        .dropdown {
            position: relative;
        }

        /* Hlavní obsah dropdownu */
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #535848;
            min-width: 200px;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            z-index: 1000;
            list-style: none;
        }

        /* Zobrazit hlavní dropdown při hoveru */
        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Submenu (vedle doprava) */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu .submenu {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #535848;
            min-width: 180px;
            border-radius: 8px;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            list-style: none;
        }

        /* Zobrazit submenu při hoveru */
        .dropdown-submenu:hover .submenu {
            display: block;
        }

        /* Styly položek dropdownu */
        .dropdown-content > li > a,
        .submenu > li > a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .dropdown-content > li > a:hover,
        .submenu > li > a:hover {
            background-color: #6e7360;
            transform: none;
        }

        /* Speciální styling pro submenu trigger */
        .dropdown-submenu > a {
            position: relative;
        }

        .dropdown-submenu > a::after {
            content: '▸';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-section {
            padding: 180px 0 80px;
            background: #fff;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: #86855f;
            color: white;
        }

        .btn-primary:hover {
            background: #9b9a6b;
        }

        .btn-outline {
            background: transparent;
            color: #86855f;
            border: 1px solid #86855f;
        }

        .btn-outline:hover {
            background: #86855f;
            color: white;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-position: 0 55%;
            object-fit: cover;
            border-radius: 10px;
        }

        .main-content {
            padding: 4rem 0;
        }

        .content-section {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .section-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .section-text {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .consultation-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .consultation-list li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 1.5rem;
        }

        .consultation-list li::before {
            content: "•";
            color: #86855f;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .warning-box {
            background: #f8f4f0;
            border-left: 4px solid #86855f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
            color: #666;
        }

        .price-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .price-box {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }

        .price-category {
            font-weight: 600;
            color: #86855f;
            margin-bottom: 0.5rem;
        }

        .price-range {
            font-size: 1.2rem;
            color: #333;
            font-weight: 500;
        }

        .price-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
            font-style: italic;
        }

        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .contact-box {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .box-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .box-title i {
            color: #86855f;
            font-size: 1.2rem;
        }

        .box-title h3 {
            color: #333;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .contact-item {
            background: #f8f8f8;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 5px;
        }

        .contact-item strong {
            color: #86855f;
        }

        .info-note {
            background: #fffbeb;
            border-left: 3px solid #f59e0b;
            padding: 1rem;
            margin-top: 1.5rem;
            border-radius: 0 5px 5px 0;
            font-size: 0.9rem;
            color: #92400e;
        }

        .info-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e5e5e5;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-item h4 {
            color: #86855f;
            margin-bottom: 0.5rem;
        }

        .info-item p {
            color: #666;
            font-size: 0.95rem;
        }

        .flavors-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }

        .flavor-box {
            background: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .flavor-box h3 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .flavor-category {
            margin-bottom: 2rem;
        }

        .flavor-category h4 {
            color: #86855f;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .flavor-category p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            font-style: italic;
        }

        .flavor-category ul {
            list-style: none;
            padding: 0;
        }

        .flavor-category ul li {
            padding: 0.4rem 0;
            color: #666;
            position: relative;
            padding-left: 1.2rem;
            font-size: 0.95rem;
        }

        .flavor-category ul li::before {
            content: "•";
            color: #86855f;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .vegan-category {
            background: #f0fdf4;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #86efac;
        }

        .vegan-category h4 {
            color: #16a34a;
        }

        .flavor-note {
            font-size: 0.85rem;
            color: #666;
            font-style: italic;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e5e5;
        }

        .decorator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .decorator-content h4 {
            color: #86855f;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .decorator-list {
            list-style: none;
        }

        .decorator-list li {
            padding: 0.3rem 0;
            color: #666;
            position: relative;
            padding-left: 1.2rem;
        }

        .decorator-list li::before {
            content: "•";
            color: #86855f;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .allergen-section {
            background: #fff5f5;
            border: 1px solid #fecaca;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .allergen-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .allergen-header i {
            color: #dc2626;
        }

        .allergen-header h4 {
            color: #dc2626;
        }

        .allergen-warning {
            background: #fee2e2;
            padding: 1rem;
            border-radius: 5px;
            color: #991b1b;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .toppings-section {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .toppings-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .topping-btn {
            padding: 0.5rem 1rem;
            background: #f3f4f6;
            border: 1px solid #d1d5db;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .topping-btn.active {
            background: #86855f;
            color: white;
            border-color: #86855f;
        }

        .final-cta {
            background: #86855f;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 3rem 0;
        }

        .final-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .final-cta p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: #86855f;
        }

        .btn-white:hover {
            background: #f8f8f8;
        }

           /* sekce FAQ */
.faq {
  background-color: #86855e;
  padding: 3rem 0;
}

.wrapper {
  max-width: 50%;
  margin: auto;
}

.wrapper h1 {
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  color: #ffffff;
  font-weight: 400;
}

.faq-container {
  margin-bottom: 25px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-dotazy {
  background-color: #fff;
  color: #111;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: background 0.3s;
  
}

.faq-dotazy:hover {
  background-color: #f9f9f9;
}

.faq-dotazy i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-dotazy.active i {
  transform: rotate(180deg);
}

.pannel {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.pannel.open {
  padding: 1rem 2rem;
}

.pannel p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 1rem 0;
  margin-bottom: 2rem;
}

/* Galerie ukázek */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding-bottom: 64px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 500px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(134, 133, 95, 0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

         /* Footer */
    footer {
      background-color: #000000;
      color: #ffff;
      padding: 60px 40px 30px;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #ffff;
    }
    
    .footer-text {
      font-size: 0.95rem;
      opacity: 0.8;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .instagram-icon {
        width: 37px;
        height: auto;
        vertical-align: middle;
        transition: opacity 0.3s ease;
    }

    .instagram-icon:hover {
        opacity: 0.8;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 1.2rem;
      transition: all 0.4s ease;
    }
    
    .social-icon:hover {
        background-color: #ffffff;
        color: #222;
        transform: translateY(-5px);
    }
    
    .footer-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffff;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: var(--text-light);
      opacity: 0.8;
      text-decoration: none;
      font-size: 0.95rem;
    }
    
    .footer-links a:hover {
      opacity: 1;
      color: var(--secondary-color);
      padding-left: 5px;
    }
    
    .footer-bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    
    .copyright {
      font-size: 0.9rem;
      opacity: 0.7;
    }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #86855f;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 50;
            box-shadow: 0 4px 20px rgba(134, 133, 95, 0.3);
        }

        .back-to-top:hover {
            background: #9b9a6b;
            transform: translateY(-5px);
        }

        /* ============================================
   RESPONZIVNÍ ÚPRAVY - DORTY NA ZAKÁZKU
   Přidejte tento kód na konec vašeho <style> tagu
   ============================================ */

/* Tablety - do 1024px */
@media screen and (max-width: 1024px) {
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .decorator-content,
    .flavors-section,
    .contact-section {
        gap: 2rem;
    }
    
    .wrapper {
        max-width: 70%;
    }
}

/* Tablety - do 768px */
@media screen and (max-width: 768px) {

    
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero sekce */
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        height: 320px;
    }
    
    /* Main content */
    .main-content {
        padding: 3rem 0;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    /* Price grid */
    .price-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact section */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Flavors section */
    .flavors-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flavor-box {
        padding: 1.5rem;
    }
    
    /* Decorator content */
    .decorator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* FAQ */
    .wrapper {
        max-width: 90%;
    }
    
    .wrapper h1 {
        font-size: 1.7rem;
    }
    
    .faq-dotazy {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Galerie */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding-bottom: 50px;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    /* Footer */
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobilní telefony - do 480px */
@media screen and (max-width: 480px) {

    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero sekce */
    .hero-section {
        padding: 90px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }
    
    .hero-image img {
        height: 280px;
    }
    
    /* Main content */
    .main-content {
        padding: 2.5rem 0;
    }
    
    .content-section {
        padding: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .section-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Lists */
    .consultation-list li {
        font-size: 0.95rem;
    }
    
    /* Warning box */
    .warning-box {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Price grid */
    .price-box {
        padding: 1.2rem;
    }
    
    .price-category {
        font-size: 0.95rem;
    }
    
    .price-range {
        font-size: 1.1rem;
    }
    
    .price-note {
        font-size: 0.85rem;
    }
    
    /* Contact boxes */
    .contact-box {
        padding: 1.5rem;
    }
    
    .box-title h3 {
        font-size: 1.15rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .info-note {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Info items */
    .info-item {
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    /* Flavor boxes */
    .flavor-box {
        padding: 1.3rem;
    }
    
    .flavor-box h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .flavor-category {
        margin-bottom: 1.5rem;
    }
    
    .flavor-category h4 {
        font-size: 1rem;
    }
    
    .flavor-category p {
        font-size: 0.85rem;
    }
    
    .flavor-category ul li {
        font-size: 0.9rem;
    }
    
    .vegan-category {
        padding: 0.8rem;
    }
    
    .flavor-note {
        font-size: 0.8rem;
    }
    
    /* Decorator content */
    .decorator-content h4 {
        font-size: 1.05rem;
    }
    
    .decorator-list li {
        font-size: 0.9rem;
    }
    
    /* Allergen section */
    .allergen-section {
        padding: 1.2rem;
    }
    
    .allergen-header h4 {
        font-size: 1rem;
    }
    
    .allergen-warning {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Toppings section */
    .toppings-section {
        padding: 1.5rem;
    }
    
    .topping-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 2rem 1.5rem;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .final-cta p {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .wrapper {
        max-width: 95%;
    }
    
    .wrapper h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-container {
        margin-bottom: 18px;
    }
    
    .faq-dotazy {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-dotazy i {
        font-size: 1rem;
    }
    
    .pannel p {
        font-size: 0.9rem;
        margin: 0.8rem 0;
        margin-bottom: 1.5rem;
    }
    
    /* Galerie */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-bottom: 40px;
    }
    
    .gallery-item {
        height: 320px;
    }
    
    /* Footer */
    footer {
        padding: 40px 15px 25px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.15rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra malé mobily - do 360px */
@media screen and (max-width: 360px) {
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .wrapper h1 {
        font-size: 1.35rem;
    }
    
    .faq-dotazy {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .footer-logo {
        font-size: 1.35rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}