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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f8f8;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGACE
   ============================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 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%;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem 0.5rem 2rem;
}

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

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

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

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

.underline-hover {
    position: relative;
}

.underline-hover:hover a {
    color: #f5d6a1;
}

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

.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;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.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;
}

.dropdown-submenu:hover .submenu {
    display: block;
}

.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;
}

.dropdown-submenu > a {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '▸';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}


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

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

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

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

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

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

.info-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #b5a88f;
}

.btn-secondary {
  background-color: white;
  border: 2px solid #9b9a6b;
  color: #9b9a6b;
}

.btn-secondary:hover {
  background-color: #9b9a6b;
  color: white;
}


/* dorty */
        .dorty-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #ffffff;
        }

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

        .dorty-card-large:first-child {
            background: #ffffff;
        }

        .dorty-card-large:last-child {
            background: #f5efe8;
        }

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

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

        .dorty-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;
        }

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

        .dorty-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);
        }

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

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

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

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

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

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

/* druhy provedeni */
        .druhy-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #ffffff;
        }

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

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

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

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

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

        .druhy-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;
        }

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

        .druhy-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);
        }

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

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

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

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

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

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


        .cena h2{
            color: white;
            margin: 0;
            display: inline;
            background-color: #9b9a6b;
            padding: 5px 15px;       /* volitelné – přidá trochu prostoru kolem textu */
            border-radius: 5px;      /* volitelné – zaoblení rohů */
            font-size: 1.5rem;
            text-align: center;
        }

        /* Luxusní balení sekce */

/* Luxusní balení sekce */
.baleni-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    align-items: stretch;
}

.baleni-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
}

.baleni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.baleni-content {
    padding: 80px 70px;
    background: #f5efe8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.baleni-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #9d9078;
    margin-bottom: 25px;
}

.baleni-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
}

.baleni-price-box {
    background: #ebe6de;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #9b9a6b;
}

.baleni-price-box h3 {
    font-size: 1.5rem;
    color: #7d7565;
    margin-bottom: 10px;
    font-weight: 400;
}

.baleni-note {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.baleni-warning {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.baleni-warning p {
    color: #c0392b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.baleni-warning strong {
    font-weight: 600;
}

.baleni-footer {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #000000;
    color: #ffff;
    padding: 60px 40px 30px;
    width: 100%;
}

.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: #fff;
    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: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    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
   ============================================ */
.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);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* ============================================
   RESPONZIVNÍ STYLY
   ============================================ */

/* Tablet - 768px a níže */
@media (max-width: 768px) {
    
    /* Hero sekce */
    .hero-section {
        padding: 140px 20px 60px;
    }
    
    /* Info sekce - Naše dezerty */
    .info-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .info-text {
        padding: 60px 30px;
        order: 2;
    }
    
    .info-text h2 {
        font-size: 2rem;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    .info-image {
        order: 1;
        min-height: 550px;
    }
    
    .info-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Dorty sekce */
    .dorty-section {
        grid-template-columns: 1fr;
    }
    
    .dorty-card-large {
        padding: 50px 30px;
    }
    
    .dorty-image-header {
        height: 400px;
        margin-bottom: 25px;
    }
    
    .dorty-card-large h2 {
        font-size: 1.6rem;
        gap: 12px;
    }
    
    .dorty-card-large h2 i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .dorty-card-large p,
    .dorty-card-large ul li {
        font-size: 1rem;
    }
    
    .dorty-highlight {
        padding: 20px 25px;
    }
    
    /* Druhy provedeni sekce */
    .druhy-section {
        grid-template-columns: 1fr;
    }
    
    .druhy-card-large {
        padding: 50px 30px;
    }
    
    .druhy-card-large:first-child {
        order: 2;
    }
    
    .druhy-card-large:last-child {
        order: 1;
    }
    
    .druhy-image-header {
        height: 400px;
        margin-bottom: 25px;
    }
    
    .druhy-card-large h2 {
        font-size: 1.6rem;
        gap: 12px;
    }
    
    .druhy-card-large h2 i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .druhy-card-large p,
    .druhy-card-large ul li {
        font-size: 1rem;
    }
    
    .druhy-highlight {
        padding: 20px 25px;
    }
    
    /* Cena */
    .cena h2 {
        font-size: 1.3rem;
        padding: 4px 12px;
    }
    
    /* Balení sekce */
    .baleni-section {
        grid-template-columns: 1fr;
    }
    
    .baleni-image {
        min-height: 350px;
        order: 1;
    }
    
    .baleni-content {
        padding: 50px 30px;
        order: 2;
    }
    
    .baleni-content h2 {
        font-size: 2rem;
    }
    
    .baleni-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .baleni-price-box h3 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobilní telefony - 480px a níže */
@media (max-width: 480px) {
    
    /* Hero sekce */
    .hero-section {
        padding: 120px 15px 40px;
    }
    
    /* Info sekce */
    .info-text {
        padding: 40px 20px;
    }
    
    .info-text h2 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }
    
    .info-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .info-image {
        min-height: 500px;
    }
    
    /* Dorty sekce */
    .dorty-card-large {
        padding: 40px 20px;
    }
    
    .dorty-image-header {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .dorty-card-large h2 {
        font-size: 1.4rem;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dorty-card-large h2 i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .dorty-card-large p,
    .dorty-card-large ul li {
        font-size: 0.95rem;
    }
    
    .dorty-highlight {
        padding: 18px 20px;
        margin-top: 20px;
    }
    
    .dorty-highlight h3 {
        font-size: 1.05rem;
    }
    
    .dorty-highlight p {
        font-size: 0.9rem;
    }
    
    /* Druhy provedeni sekce */
    .druhy-card-large {
        padding: 40px 20px;
    }
    
    .druhy-image-header {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .druhy-card-large h2 {
        font-size: 1.4rem;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .druhy-card-large h2 i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .druhy-card-large p,
    .druhy-card-large ul li {
        font-size: 0.95rem;
    }
    
    .druhy-highlight {
        padding: 18px 20px;
        margin-top: 20px;
    }
    
    .druhy-highlight h3 {
        font-size: 1.05rem;
    }
    
    .druhy-highlight p {
        font-size: 0.9rem;
    }
    
    /* Cena */
    .cena h2 {
        font-size: 1.1rem;
        padding: 4px 10px;
    }
    
    /* Balení sekce */
    .baleni-image {
        min-height: 300px;
    }
    
    .baleni-content {
        padding: 40px 20px;
    }
    
    .baleni-content h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .baleni-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .baleni-price-box {
        padding: 20px 25px;
        margin-bottom: 25px;
    }
    
    .baleni-price-box h3 {
        font-size: 1.2rem;
    }
    
    .baleni-note {
        font-size: 0.9rem;
    }
    
    .baleni-warning {
        padding: 18px 20px;
        margin-bottom: 20px;
    }
    
    .baleni-warning p {
        font-size: 0.9rem;
    }
    
    .baleni-footer {
        font-size: 0.95rem;
    }
    
     /* Footer */
    footer {
        padding: 50px 20px 25px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Velmi malé telefony - 360px a níže */
@media (max-width: 360px) {
    
    .info-text h2,
    .baleni-content h2 {
        font-size: 1.5rem;
    }
    
    .dorty-card-large h2,
    .druhy-card-large h2 {
        font-size: 1.3rem;
    }
    
    .info-text,
    .baleni-content,
    .dorty-card-large,
    .druhy-card-large {
        padding: 30px 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}