/* ===== HERO ===== */

.hero-demo {
    position: relative;
    background: #dff1fb;
    overflow: hidden;
}

.hero-demo-container {
    position: relative;
    z-index: 2;
}

.hero-content-box {
    background: #ff8c5a;
    padding: 30px;
    border-radius: 20px;
    color: white;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
}

.hero-text {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-btn {
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
}

.hero-btn-primary {
    background: white;
    color: #ff8c5a;
}

.hero-btn-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
}

/* IMAGE SHAPE */
.hero-visual {
    position: relative;
}

.hero-image-shape {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    overflow: hidden;
    height: 350px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dekorace */
.hero-rainbow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff8c5a 20%, transparent 70%);
    top: -100px;
    left: -100px;
    opacity: 0.3;
}

.hero-bottom-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}


/* ===== WHY SECTION ===== */

.why-section {
    background: #f9fbfd;
}

.section-title {
    font-weight: 700;
}

.subtitle {
    color: #6c757d;
    font-size: 14px;
    max-width: 500px;
    margin: auto;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
}

.btn-card {
    margin-top: 10px;
    border-radius: 50px;
    font-size: 13px;
    background: #20c997;
    color: white;
}


/* ===== NEWS ===== */

.news-section {
    background: white;
}

.news-item {
    border-radius: 20px;
    transition: 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
}

.news-text {
    font-size: 14px;
    color: #555;
}

.news-read-more {
    font-size: 13px;
    color: #ff8c5a;
    text-decoration: none;
}

.btn-news-pink {
    background: #ff8c5a;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
}


/* ===== GALLERY ===== */

.gallery-section {
    background: #f9fbfd;
    padding: 60px 0;
}

.gallery-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-home-item {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-home-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-home-item img:hover {
    transform: scale(1.1);
}

.gallery-home-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.btn-gallery-pink {
    background: #ff8c5a;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

    .hero-content-box {
        max-width: 100%;
    }

    .hero-image-shape {
        height: 250px;
    }

    .gallery-home-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-home-item.big {
        grid-column: span 2;
        grid-row: span 1;
    }
}