/* Hero Sekce */
.hero-luxury {
    position: relative; height: 85vh; min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1493606278519-11aa9f86e40a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-text-box { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero-subtitle { display: block; letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 1.5rem; text-transform: uppercase; font-weight: 600; opacity: 0.9; }
.hero-luxury h1 { font-size: 4.5rem; margin-bottom: 1.5rem; line-height: 1.1; color: white; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.hero-luxury p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 3rem; font-weight: 300; }

.marquee-bar { background: var(--primary); color: white; overflow: hidden; padding: 14px 0; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.marquee-content { display: inline-block; white-space: nowrap; animation: marquee 35s linear infinite; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- BENTO GRID (Mřížka kategorií) --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    height: 700px;
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.bento-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.item-small { height: 50%; }

.bento-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white; transform: translateY(10px); transition: 0.4s;
}
.bento-item:hover .bento-content { transform: translateY(0); padding-bottom: 3.5rem; }
.bento-content h3 { font-size: 2.5rem; margin-bottom: 0.5rem; color: white; }
.link-underline { font-size: 0.9rem; text-transform: uppercase; border-bottom: 1px solid white; padding-bottom: 3px; letter-spacing: 1.5px; }

/* Parallax */
.parallax-section {
    background-image: url('/static/img/POZADI.png');
    background-attachment: fixed; background-size: cover; background-position: center;
    padding: 10rem 1rem; text-align: center; color: white; position: relative; margin-top: 6rem;
}
.parallax-section::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); }
.parallax-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.parallax-content h2 { font-size: 2rem; font-style: italic; margin-bottom: 2rem; color: white; }

/* Animace */
.animate-slide-up { animation: slideUp 0.8s ease forwards; opacity: 0; transform: translateY(30px); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* --- GOOGLE REVIEWS (EDITORIAL BENTO) --- */
.reviews-section {
    padding: 10rem 0;
    background-color: #fafafa;
}

.reviews-header {
    margin-bottom: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
}

.reviews-header h2 {
    font-size: 3.5rem;
    margin: 0;
    max-width: 600px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.reviews-stats-pill {
    text-align: right;
}

.reviews-stats-pill .stars {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reviews-stats-pill span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.review-card {
    background: #fff;
    padding: 4rem;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.review-card:hover {
    transform: scale(1.02);
    box-shadow: 20px 20px 0 rgba(0,0,0,0.05);
}

.review-stars {
    color: #000;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-weight: 400;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.author-meta h4 {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.verified-tag {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.google-link-wrap {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.btn-editorial {
    display: inline-block;
    padding: 20px 40px;
    border: 2px solid #000;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-editorial:hover {
    background: #000;
    color: #fff;
}

/* --- MOBILNÍ VERZE --- */
@media (max-width: 900px) {
    /* Hero sekce */
    .hero-luxury {
        height: 75vh;
        min-height: 500px;
    }

    .hero-luxury h1 {
        font-size: 2.6rem;
    }

    .hero-text-box {
        padding: 1rem;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }

    .bento-column {
        gap: 15px;
    }

    .bento-grid > .bento-item, .bento-column .bento-item {
        height: 260px;
    }

    /* Reviews */
    .reviews-section {
        padding: 5rem 0;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .reviews-header h2 {
        font-size: 2.2rem;
    }

    .reviews-stats-pill {
        text-align: left;
    }

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

    .review-card {
        padding: 2.5rem;
    }

    .review-text {
        font-size: 1.1rem;
    }

    /* Skrytí sekcí */
    .parallax-section { display: none !important; }

    /* TOTO SKRYJE BESTSELLERY JEN NA MOBILU */
    .bestsellers-section { display: none !important; }
}