body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f7fa;
    margin: 0;
    color: #333;
}

.container { max-width: 500px; margin: 40px auto; background: #fff; border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 32px 24px; }
h1 { font-size: 2.2em; margin-bottom: 0.2em; }
.intro { font-size: 1.1em; margin-bottom: 1.5em; color: #555; }
.carousel { position: relative; margin-bottom: 2em; text-align: center; }
.carousel img { width: 100%; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.links { 
    display: flex; 
    flex-direction: column; 
    gap: 18px;
    align-items: center;
    margin-top: 2em;
}
.links a {
    display: inline-block;
    padding: 22px 48px;
    background: linear-gradient(135deg, #ffe0ef 60%, #f8faff 100%);
    color: #e75480;
    border: none;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    text-decoration: none;
    margin: 0 0.2em;
    min-width: 180px;
    position: relative;
    box-shadow: 0 6px 24px rgba(231,84,128,0.10), 0 1.5px 0 #fff inset;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    /* SVG cloud mask s více vlnkami nahoře i dole */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 40" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M5,20 Q7,7 18,12 Q22,2 32,10 Q38,0 50,8 Q62,0 68,10 Q78,2 82,12 Q93,7 95,20 Q93,33 82,28 Q78,38 68,30 Q62,40 50,32 Q38,40 32,30 Q22,38 18,28 Q7,33 5,20 Z" fill="white"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 40" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M5,20 Q7,7 18,12 Q22,2 32,10 Q38,0 50,8 Q62,0 68,10 Q78,2 82,12 Q93,7 95,20 Q93,33 82,28 Q78,38 68,30 Q62,40 50,32 Q38,40 32,30 Q22,38 18,28 Q7,33 5,20 Z" fill="white"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    border-radius: 0;
}

.links a:hover,
.links a:focus {
    background: linear-gradient(135deg, #f8faff 60%, #ffe0ef 100%);
    color: #d81b60;
    box-shadow: 0 10px 32px rgba(231,84,128,0.16), 0 1.5px 0 #fff inset;
    transform: translateY(-2px) scale(1.04);
}
.heart-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}
.heart-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 0.7em;
}
.heart-list li:before {
    content: "❤";
    color: #e75480;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-family: Arial, sans-serif;
}

/* --- Hlavní menu --- */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 0.7em 1.2em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    font-weight: 700;
    font-size: 1.3em;
    letter-spacing: 1px;
    color: #e75480;
}
.logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    /* případně zarovnat s textem: */
    vertical-align: middle;
}
.main-nav {
    display: flex;
    gap: 1.2em;
}
.main-nav a {
    color: #e75480;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s, background 0.2s;
    border-radius: 6px;
}
.main-nav a:hover,
.main-nav a:focus {
    color: #fff;
    background: #e75480;
    border-bottom: 2px solid #e75480;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 1em;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #e75480;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 700px) {
    .container { padding: 18px 6px; }
    .main-nav {
        position: absolute;
        top: 60px;
        right: 16px;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        border-radius: 12px;
        padding: 12px 0;
        min-width: 160px;
        display: none;
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        padding: 12px 24px;
        border-bottom: none;
    }
    .hamburger { display: flex; }
}
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #e75480;
    font-size: 2.2em;
    padding: 0.05em 0.25em;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    opacity: 0.13;
    box-shadow: none;
    transition: opacity 0.2s, color 0.2s;
    outline: none;
}
.carousel-btn.left { left: 4px; }
.carousel-btn.right { right: 4px; }
.carousel-btn:hover,
.carousel-btn:focus {
    opacity: 0.45;
    color: #d81b60;
    background: none;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}
.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0bfcf;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dots .dot.active {
    background: #e75480;
    transform: scale(1.2);
}