* {
            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-content {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 50%;
    padding: 2rem;
    border-radius: 15px;
    z-index: 15;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3e4233;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button:hover {
    background-color: #86855e;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-content .cta-button2 {
    display: inline-block;
    margin-left: 10px;
    padding: 15px 45px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-content .cta-button2:hover {
    background-color: #d8baa5;
    color: white;
    transform: translateY(-2px);
}

/* Slider */
.slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 80px;
}


.slide.active {
  opacity: 1;
  z-index: 1;
}


/* Tečky */
.dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #86855e6b;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #86855e;
}

        /* Úvodní sekce - jako na obrázku 1 */
        .intro-section {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 0;
            min-height: 100vh;
            background: #ffffff;
        }

        .intro-text {
            padding: 100px 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #f5efe8;
        }

        .intro-text h2 {
            font-size: 2.8rem;
            font-weight: 300;
            color: #9d9078;
            margin-bottom: 2.5rem;
            line-height: 1.4;
            letter-spacing: -0.5px;
        }

        .intro-text p {
            font-size: 1.05rem;
            color: #5a5a5a;
            margin-bottom: 1.8rem;
            line-height: 1.9;
            font-weight: 300;
        }

        .intro-text p strong {
            font-weight: 600;
            color: #3a3a3a;
        }

        .intro-text .highlight-box {
            background: #ebe6de;
            padding: 30px 35px;
            border-radius: 12px;
            margin: 35px 0 20px;
            border-left: 4px solid #b5a88f;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .intro-text .highlight-box h3 {
            font-size: 1.15rem;
            color: #7d7565;
            margin-bottom: 12px;
            font-weight: 400;
            line-height: 1.5;
        }

        .intro-text .highlight-box p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.7;
        }

        .intro-image {
            background-size: cover;
            background-position: center;
            min-height: 500px;
        }

        /* Výhody - 3 boxy jako na obrázku 2 */
        .benefits-section {
            padding: 100px 20px;
            background: #ffffff;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .benefit-card {
            background: #ffffff;
            padding: 50px 35px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e8e4db;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: #b5a88f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            font-weight: 400;
            color: #3a3a3a;
            margin-bottom: 18px;
        }

        .benefit-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            font-weight: 300;
        }

/* Naše dezerty sekce */
.desserts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: #f5efe8;
    overflow: hidden;
}

/* Textová část */
.desserts-text {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5efe8;
}

.desserts-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #9d9078;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.desserts-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
}

.desserts-list {
    list-style: none;
    margin-bottom: 20px;
}

.desserts-list li {
    padding: 14px 0;
    color: #5a5a5a;
    font-size: 1.05rem;
    position: relative;
    padding-left: 30px;
    font-weight: 300;
}

.desserts-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #c4a882;
    font-size: 0.8rem;
}

/* Slider část */
.desserts-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background-color: #f5efe8; /* stejné jako zbytek sekce */
}

.desserts-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.desserts-slider .slide.active {
    opacity: 1;
}

        /* Slaný talíř sekce - jako obrázek 3 */
        .savory-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 85vh;
            background: #ffffff;
        }

        .savory-image {
            background-size: cover;
            background-position: center;
            min-height: 500px;
        }

        .savory-text {
            padding: 100px 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #f5efe8;
        }

        .badge {
            display: inline-block;
            background: #9d9078;
            color: white;
            padding: 8px 22px;
            border-radius: 25px;
            font-size: 0.85rem;
            margin-bottom: 25px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
        }

        .savory-text h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #9d9078;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        .savory-text p {
            font-size: 1.05rem;
            color: #5a5a5a;
            margin-bottom: 1.8rem;
            line-height: 1.9;
            font-weight: 300;
        }

        .savory-text ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .savory-text ul li {
            padding: 12px 0;
            color: #5a5a5a;
            font-size: 1.05rem;
            position: relative;
            padding-left: 30px;
            font-weight: 300;
        }

        .savory-text ul li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #c4a882;
            font-size: 0.8rem;
        }

        .savory-text .note {
            font-style: italic;
            color: #888;
            font-size: 0.95rem;
            margin-top: 20px;
            font-weight: 300;
        }

        /* Dárkový poukaz & Eventy - jako obrázek 4 */
        .services-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #ffffff;
        }

        .service-card-large {
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .service-card-large:first-child {
            background: #f5efe8;
        }

        .service-card-large:last-child {
            background: #ffffff;
        }

        .service-image-header {
            width: 100%;
            height: 600px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 35px;
            background-position: center 1%;
        }

        .service-card-large h2 {
            font-size: 2rem;
            font-weight: 300;
            color: #9d9078;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .service-card-large h2 i {
            width: 55px;
            height: 55px;
            background: #b5a88f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: white;
            flex-shrink: 0;
        }

        .service-card-large p {
            font-size: 1.05rem;
            color: #5a5a5a;
            line-height: 1.9;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .service-highlight {
            background: #ebe6de;
            padding: 25px 30px;
            border-radius: 12px;
            margin-top: 25px;
            border-left: 4px solid #b5a88f;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .service-highlight h3 {
            font-size: 1.15rem;
            color: #7d7565;
            margin-bottom: 12px;
            font-weight: 400;
        }

        .service-highlight p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .service-card-large ul {
            list-style: none;
            margin: 25px 0;
        }

        .service-card-large ul li {
            padding: 12px 0;
            color: #5a5a5a;
            font-size: 1.05rem;
            position: relative;
            padding-left: 30px;
            font-weight: 300;
        }

        .service-card-large ul li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #b5a88f;
            font-size: 0.8rem;
        }

        .service-card-large .note {
            font-style: italic;
            color: #888;
            font-size: 0.95rem;
            margin-top: 20px;
            font-weight: 300;
        }

        /* Workshop sekce - jako obrázek 5 */
        .workshop-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 90vh;
            background: #ffffff;
        }

        .workshop-image {
            background-size: cover;
            background-position: center;
            min-height: 500px;
        }

        .workshop-text {
            padding: 100px 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #f5efe8;
        }

        .workshop-text .badge {
            background: #c4a882;
        }

        .workshop-text h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #9d9078;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        .workshop-text p {
            font-size: 1.05rem;
            color: #5a5a5a;
            margin-bottom: 1.8rem;
            line-height: 1.9;
            font-weight: 300;
        }

        .workshop-box {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            margin-top: 35px;
            border-left: 4px solid #b5a88f;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .workshop-box h3 {
            font-size: 1.3rem;
            color: #9d9078;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 400;
        }

        .workshop-box h3 i {
            color: #b5a88f;
            font-size: 1.2rem;
        }

        .workshop-box p {
            margin: 8px 0;
            font-size: 1.05rem;
            color: #3a3a3a;
        }

        .workshop-box .subtitle {
            color: #888;
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .workshop-box p strong {
            color: #5a5a5a;
            font-weight: 400;
        }

        .workshop-details {
            margin-top: 30px;
        }

        .workshop-details h4 {
            font-size: 1rem;
            color: #7d7565;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .workshop-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px 25px;
        }

        .workshop-items div {
            font-size: 0.95rem;
            color: #5a5a5a;
            padding-left: 20px;
            position: relative;
            font-weight: 300;
        }

        .workshop-items div::before {
            content: '●';
            position: absolute;
            left: 0;
            color: #c4a882;
            font-size: 0.7rem;
            top: 6px;
        }

.btn-workshop {
    display: inline-block;
    background: #c4a882;
    color: white;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-workshop:hover {
    background-color: #d7bb94;
    transform: translateY(-2px);
}


        /* sekce oteviraci doba */
.oteviraci-doba {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.oteviraci-doba h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #000;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.day-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    border: solid 2px #b5a88f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    transition: transform 0.3s;
}

.day-box span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

.day-box.special {
    color: #d10f0f !important;
    font-weight: 600;
    text-align: center;
    grid-column: 1 / -1;
    margin: 1rem auto;
    max-width: 500px;
    font-size: 1.4rem;
}

.day-box:hover {
    transform: translateY(-5px);
}

.special-box {
    background: #ffffff;
    color: #333;
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 400;
    border: solid 2px #b5a88f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.special-box:hover {
    transform: translateY(-5px);
}

.special-box span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
}

          /* 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;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #86855e;
    color: #ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* 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;
}

/* ========================================
   RESPONZIVNÍ MEDIA QUERIES
   ======================================== */

/* Tablet landscape a menší desktop (do 1200px) */
@media (max-width: 1200px) {
    .hero-content {
        left: 30px;
        max-width: 45%;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .intro-text,
    .savory-text,
    .workshop-text,
    .desserts-text {
        padding: 80px 50px;
    }

    .intro-text h2,
    .desserts-text h2 {
        font-size: 2.3rem;
    }

    .service-card-large {
        padding: 60px 40px;
    }

    .service-image-header {
        height: 450px;
    }
}

/* Tablet portrait (do 992px) */
@media (max-width: 992px) {
    .hero-content {
        left: 20px;
        max-width: 55%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .cta-button,
    .hero-content .cta-button2 {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Dvousloupcové sekce na jeden sloupec */
    .intro-section,
    .savory-section,
    .workshop-section,
    .services-section,
    .desserts-section {
        grid-template-columns: 1fr;
    }

    .intro-text,
    .savory-text,
    .workshop-text,
    .desserts-text {
        padding: 60px 40px;
    }

    .intro-image,
    .savory-image,
    .workshop-image {
        min-height: 400px;
        order: -1; /* Obrázek nahoře */
    }

    .desserts-slider {
        min-height: 400px;
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-large {
        padding: 50px 40px;
    }

    .service-image-header {
        height: 350px;
    }

    .workshop-items {
        grid-template-columns: 1fr;
    }

    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }

    .grid {
        gap: 20px;
    }
}

/* Mobile landscape a menší tablety (do 768px) */
@media (max-width: 768px) {
    .hero-content {
        position: relative;
        left: 0;
        top: auto;
        transform: none;
        max-width: 100%;
        margin-top: 60vh;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        white-space: normal;
    }

    .hero-content .cta-button2 {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
        font-size: 1rem;
        width: 200px;
    }

    .intro-text,
    .savory-text,
    .workshop-text,
    .desserts-text {
        padding: 50px 30px;
    }

    .intro-text h2,
    .desserts-text h2,
    .savory-text h2,
    .workshop-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .intro-text p,
    .desserts-text p,
    .savory-text p,
    .workshop-text p {
        font-size: 1rem;
    }

    .intro-text .highlight-box,
    .service-highlight {
        padding: 20px 25px;
        margin: 25px 0 15px;
    }

    .benefits-section {
        padding: 60px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 40px 30px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-card-large {
        padding: 40px 30px;
    }

    .service-card-large h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-card-large h2 i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .service-image-header {
        height: 300px;
        margin-bottom: 25px;
    }

    .workshop-box {
        padding: 30px 25px;
        margin-top: 25px;
    }

    .workshop-box h3 {
        font-size: 1.2rem;
    }

    .oteviraci-doba {
        padding: 60px 20px;
    }

    .oteviraci-doba h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .day-box,
    .special-box {
        padding: 20px 15px;
        font-size: 1.1rem;
    }

    .day-box span,
    .special-box span {
        font-size: 1rem;
    }

    /* FAQ */
    .wrapper {
        max-width: 90%;
    }
    
    .wrapper h1 {
        font-size: 1.7rem;
    }
    
    .faq-dotazy {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
}


/* Mobile portrait (do 576px) */
@media (max-width: 576px) {
    .slider,
    .slide {
        height: 100vh;
    }

    .hero-content {
        padding: 1.5rem;
        margin-top: 50vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .cta-button,
    .hero-content .cta-button2 {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .intro-text,
    .savory-text,
    .workshop-text,
    .desserts-text {
        padding: 40px 20px;
    }

    .intro-text h2,
    .desserts-text h2,
    .savory-text h2,
    .workshop-text h2 {
        font-size: 1.8rem;
    }

    .intro-text .highlight-box h3,
    .service-highlight h3 {
        font-size: 1.05rem;
    }

    .intro-text .highlight-box p,
    .service-highlight p {
        font-size: 0.9rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .btn-workshop {
        font-size: 0.8rem;
        padding: 6px 18px;
    }

    .intro-image,
    .savory-image,
    .workshop-image,
    .desserts-slider {
        min-height: 300px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    .service-card-large {
        padding: 30px 20px;
    }

    .service-card-large h2 {
        font-size: 1.6rem;
        gap: 12px;
    }

    .service-card-large h2 i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-image-header {
        height: 250px;
        margin-bottom: 20px;
    }

    .workshop-box {
        padding: 25px 20px;
    }

    .workshop-box h3 {
        font-size: 1.1rem;
        gap: 8px;
    }

    .workshop-box p {
        font-size: 0.95rem;
    }

    .workshop-details h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .workshop-items div {
        font-size: 0.9rem;
    }

    .oteviraci-doba {
        padding: 50px 15px;
    }

    .oteviraci-doba h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .grid {
        gap: 15px;
        max-width: 100%;
    }

    .day-box,
    .special-box {
        padding: 18px 15px;
        font-size: 1rem;
    }

    .day-box span,
    .special-box span {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    /* 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;
    }
}

/* Extra malé mobily (do 400px) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .intro-text h2,
    .desserts-text h2,
    .savory-text h2,
    .workshop-text h2 {
        font-size: 1.6rem;
    }

    .oteviraci-doba h2 {
        font-size: 1.6rem;
    }

    .service-card-large h2 {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-dotazy {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
    }
    
}

/* Landscape mode pro mobily */
@media (max-height: 600px) and (orientation: landscape) {
    .slider,
    .slide {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        margin-top: 0;
        position: relative;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .dots {
        bottom: 15px;
    }
}


/* Navigace - Tablety a menší - do 1024px */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 18px;
    }
}

/* Navigace - Tablety a menší - do 768px */
@media screen and (max-width: 768px) {
    /* Navigace */
    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .logo img {
        width: 100px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #535848;
        width: 100%;
        padding: 2rem;
        height: calc(100vh - 70px);
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 20px;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(255,255,255,0.1);
        box-shadow: none;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-submenu .submenu {
        position: static;
        margin-left: 20px;
        margin-top: 10px;
    }

    /* Animace burger menu */
    .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(7px, -6px);
    }
}

/* Navigace - Mobilní telefony - do 480px */
@media screen and (max-width: 480px) {
    .logo img {
        width: 80px;
    }
    
    .nav-links a {
        font-size: 18px;
    }
}