@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Open+Sans:wght@400;600&family=Magra:wght@400;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    background: #fdf8f5;
}

header {
    background: linear-gradient(135deg, 
    #b0c4ff 0%, 
    #9ab0ff 40%, 
    #8899ff 70%, 
    #a0b0ff 100%
);
    text-align: center;
    padding: 1rem 1rem;
}

h1 {
    font-size: 3rem; 
    color: white;
    font-family: 'Magra', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
h2 {
    font-family: 'Staatliches', sans-serif;
    font-size: 3.8rem;
    color: #a6423e;
    margin: 0 0 1rem;
    line-height: 1.2;
}
h3 {
    font-family: 'Magra', sans-serif;
    font-size: 2rem;
    color: #a6423e;
    position: relative;
    display: inline-block;
}
h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #b0c4ff, #9ab0ff, #8899ff);
    border-radius: 3px;
    opacity: 0.8;
}
p {
    margin: 0.8rem 0 1.8rem 0;
    font-size: 1.1rem;
}

.intro {
    background: #ffffff;
    padding: 3rem 1rem 4.4rem 1rem;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.badges-title {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.badge {
    color: white;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(226, 114, 91, 0.3);
}

.badge-new { background: #e2725b; }
.badge-gift { background: #c74a4a; }

.mobile-br-1 { display: none; }
.mobile-br-2 { display: none; }

.intro h2 small {
    font-size: 1.2rem;
    display: block;
    margin-top: 0.6rem;
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e2725b;
    margin: 1.8rem 0 0 0;
}

.hero {
    max-width: 1100px;
    margin: -2rem auto 2rem auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.content {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.content h2 {
    margin-bottom: 3rem;
}

.text-lead {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e2725b;
    margin: 1.2rem 0 1rem 0;
}

.highlight-name {
    color: #a6423e;
    font-weight: bold;
}

.section {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.section-media {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.section-about {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    text-align: left;
}

.buy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.8rem 0 1.2rem 0;
}

.buy-links a {
    background: #a6423e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    white-space: nowrap;
    flex: 0 0 auto;
    transition: background .3s;
}

.buy-links a:hover { background: #8a3530; }

.note {
    color: #666666;
    margin: 1.2rem 0 1rem 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.2rem 0 1rem 0;
}

.media-item {
    background: #fdf8f5;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s;
}

.media-item+.hidden {
    display: none;
}

.media-item:hover {
    transform: translateY(-8px);
}

.media-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.media-title a {
    text-decoration: none;
    color: #a6423e;
    font-weight: bold;
    display: block;
}

.media-title a:hover {
    text-decoration: underline;
}

.media-source {
    font-size: 1rem;
    color: #e2725b;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.media-teaser {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 314px;
    gap: 4rem;
    align-items: center;
}

.about-text {
    margin: 1rem 0 0 0;
}

.about-text p {
    font-size: 1rem;
    color: #555;
}

.about-photo img {
    width: 100%;
    max-width: 360px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.gallery {
    max-width: 1400px;
    margin: 4rem auto 4rem auto;
    padding: 0 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: all 0.4s;
}


.gallery-grid img:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


footer {
    text-align: center;
    padding: 3rem;
    background: #3f302a;
    color: #dddddd;
}

footer a {
    color: #dddddd;
    text-decoration: underline;
}


@media (max-width: 876px) {
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    .content { text-align: center; }
    .section-about { border-radius: 0; text-align: center; }
    .section-media { border-radius: 0; padding: 2rem 1.5rem 2rem 1.5rem; }
    .section { border-radius: 0; }
    .hero img { border-radius: 0; }
}

@media (max-width: 640px) {
    
    .intro h2 { font-size: 3rem; }
    .intro h2 small { font-size: 1.0rem; }
    .buy-links {
        font-size: 1.1rem;
        margin: 1.8rem 0 1.1rem 0;
    }
    .about-photo img { max-width: 280px; }
    .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {

    .mobile-br-1 { display: inline; }
}

@media (max-width: 530px) {

    .mobile-br-2 { display: inline; }
}

@media (max-width: 480px) {

    .gallery { margin-top: 3rem 0 3rem 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img { border-radius: 12px; }
    h1 { font-size: 2.4rem; }
    h3 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    .buy-links {
        font-size: 1.0rem; 
        margin: 1.8rem 0 1.0rem 0;
    }
    .media-title { font-size: 1.0rem; }
    .media-source { font-size: 1.0rem; }
    .media-teaser { font-size: 0.9rem; }
    .text-lead { font-size: 1.2rem; }
    footer { padding: 2.5rem 1rem; }
}

#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #a6423e;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

#toTop.visible { opacity: 0.85; }



/* Lightbox modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    user-select: none;
    transform: translateY(-50%);
}

.lightbox-next { right: 30px; }
.lightbox-prev { left: 30px; }

.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover {
    color: #e2725b;
}

/* Na mobilu větší šipky */
@media (max-width: 640px) {
    .lightbox-prev, .lightbox-next { font-size: 30px; padding: 10px; }
}
